Martijn Visser
Martijn Visser
This can be interesting for simplified usage with large timesteps where changes in storage don't matter, except for large reservoirs. Also it would be nice to use this as an...
I'm thinking about a configuration option like this: ```toml [solver] steady_state = true # optional, default false ``` When `starttime == endtime` this would just do a steady state run....
Yeah `steady_state="first"` or `steady_state="all"`. Is probably better. This issue should only implement `first`, but at least then we have an obvious way of specifying repeated steady states. In that scenario...
Idea 2 sounds the best to me. Besides non-negative storages, I cannot think of other constraints right now. Is that one not enough? Either S goes to 0 or Inf....
In QGIS layer properties under "Style" you can save styles as QGIS QML Style File, SLD Style File, or In Database (GeoPackage). Choosing the latter adds a `layer_styles` table with...
Here a QML style for 'Basin / area' styling by @DanielTollenaar, with graduated semi transparent blues. [basin_area.qml.txt](https://github.com/Deltares/Ribasim/files/14556959/basin_area.qml.txt)
> If you save the information in the package, they are stuck there. True, but we currently only support using the set of components together for the same Ribasim release....
In https://www.geopackage.org/extensions.html there is the [Styling and Symbology Extension](https://gitlab.com/imagemattersllc/ogc-tb-16-gpkg/-/blob/master/extensions/5-portrayal.adoc). Though the fact that that is an archived repository with a notice "This subsection is under discussion and may change radically."...
Closing this. It's not complete yet, but useful and sometimes being updated.
In #2137 our Parameters struct was manually split into ParametersNonDiff, DiffCache and ParametersMutable for DifferentiationInterface. ``` @kwdef struct Parameters{C1, C2, C3, C4, C5, T} p_non_diff::ParametersNonDiff{C1, C2, C3, C4, C5} diff_cache::DiffCache{T}...