Martijn Visser

Results 531 comments of Martijn Visser

At least on main I do get a `delwaq_map.nc` out of Delwaq with your example. Could also be related to me using a different Delwaq release? I use: ``` DELWAQ...

I added the `write_intermediate_models` option in https://github.com/Deltares/Ribasim-NL/commit/4613021b5d32e4d31d4189e02d290f5cb0f1d22f to be able to investigate scaling a bit more. My hypothesis was that LU decomposition (in our case sparse KLU) is the scaling...

Closed by https://github.com/Deltares/Ribasim/pull/2685. Next step is on the schematization side: https://github.com/Deltares/Ribasim-NL/issues/413. After that we can reevaluate the state of performance.

In time, we may want to support some process or mass injection or removal at the UserDemand node. Until then, indeed it is best to assume the outflow concentrations are...

That setting the concentration, not injection, right? Injection adds mass to the inflow.

Right now we have `mode.node_table()` which creates the Node table on demand, and the actual data is stored per node type under e.g. `model.terminal.node`. It would probably indeed simplify things...

Do you want it to just pick one in case of multiple geometry columns, or to give an error? `geometrycolumn(x) = only(geometrycolumns(x))` is also an option.

Yeah this error can be reduced on Windows to setting SSL_CERT_DIR to an empty folder. ``` mkdir empty-certs $Env:SSL_CERT_DIR = "empty-certs" julia ``` The Conda activation script of OpenSSL started...

At least for me, the `cacert.pem` file exists and the `certs` dir is empty. If I put a random file in there, the error is the same. If I remove...

It would be less scary to have 1 warn log instead of many error logs for sure. If I'm reading [this](https://github.com/curl/curl/blob/282b9fe8ff3d23c1c975b6e29eb3eb083fac6751/src/tool_operate.c#L1634-L1639) correctly it's what curl tools also do. Though I...