Martijn Visser
Martijn Visser
HiGHS prints "dimension mismatch". @SouthEndMusic ran into this before. It comes from inside HiGHS: https://github.com/ERGO-Code/HiGHS/blob/13363c9f1252b015cf6527132eb9cf8f4b5bf020/src/qpsolver/factor.hpp#L181 But it doesn't seem to be a failure. @SouthEndMusic is this related to #1366?
If a user wants to continue a simulation at time t based on the results of a previous simulation that ended at time t, they need to use a `Basin...
Currently the logger is created in `Ribasim.main`, which is the CLI entrypoint. When using BMI this function is not used, so no logfile is created. Edit: will ScopedValues (1.11) make...
Currently if you have for instance an invalid TOML file, you get a nice stacktrace and error message in the terminal, but this is not written to ribasim.log. In Wflow...
When it is missing, we can set it to -Inf. Goes for both `UserDemand / static` and `UserDemand / time`.
When updating models in #1110 I noticed that I can run a model with a Terminal node with or without the 'Terminal / static' table. Then I realized, especially with...
Right now we are pinned to 1.10.0. Version 1.10.2 has this issue: https://github.com/Deltares/Ribasim/pull/1204#issuecomment-1978142751. Probably we should wait until 1.10.3, unless we can get 1.10.2 with CompilerSupportLibraries_jll v1.1.1. To verify that...
Preferably these node tables are kept None, such that it is clear that they are not present, e.g. in `_nodes()` from #1270. With #1279 we now work around this by...
Many modelers like to learn by example, and end up using https://deltares.github.io/Ribasim/python/examples.html without first reading much of the rest of the documentation. Right now that page is really just a...
Currently adding the same edge twice: ```python model.edge.add(model.basin[1], model.manning_resistance[2], "flow", name="a") model.edge.add(model.basin[1], model.manning_resistance[2], "flow", name="b") ``` will add a duplicate row to the Edge table. Not sure how to best...