Huite

Results 199 comments of Huite

In the original plugin, the dataset view has multiple columns (a checkbox, the steady-state input, another checkbox, transient input). These aren't relevant to Ribasim, so it can most likely be...

In a hobby project (another sibiling for the qgis-tim plugin...), I've removed these lines as well. I've had far, far less crashes: https://github.com/Huite/gflow-plugin/commit/a429dc2b35e7cb7510ff171c5d9bb25f66ad46a4 I should probably adjust the original code...

After mostly arguing with myself, here are some of my thoughts: * The current approach has essentially no syntax and is explicit. * The current approach is complete: if you...

In the theme of "types are your friend": You could even introduce a new type like a namedtuple to ensure the mapping is some condition => ternary value, or use...

Alright -- great, then no changes in the QGIS plugins are required.

`combine_first` might be useful here, or `merge`. I think they might be bit difficult to control though. I think the most straightforward option is this, in the add method: ```python...

Steady-state is related to time (starttime, endtime), but is really orthogonal from a model formulation point of view (it's just dS/dt = 0). A sequence of steady-states is still very...

> A steady state might not always exist This is correct: if you specify an inflow but no outflows, there is no steady-state. But this is almost certainly the sign...

I have the feeling the scope is getting widened? We just want a steady-state. If the model is poorly schematized such that a steady-state cannot be found, it will not...

I just discussed this with @SouthEndMusic: What wasn't clear to me, but was clarified: * DynamicSS is just a sequence of timesteps until du/dt approaches 0. This works across solvers;...