Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write results also on an interrupt or crash #2191

Merged
merged 1 commit into from
Mar 31, 2025
Merged

Conversation

visr
Copy link
Member

@visr visr commented Mar 31, 2025

See #2177 (comment)

Instead of calling run(config) this replaces it with the contents of that function:

Ribasim/core/src/main.jl

Lines 10 to 15 in e81fa39

function run(config::Config)::Model
model = Model(config)
solve!(model)
write_results(model)
return model
end

Such that we can solve! in a try and call write_results whether it crashes or not.
I don't know how we can easily test it. Perhaps not worth the effort? I tested it on a model that hangs, which I killed with ctrl+c. This works great for that, allowing you to inspect results right up to the hang.

@visr visr marked this pull request as ready for review March 31, 2025 11:15
@SouthEndMusic SouthEndMusic merged commit e030026 into main Mar 31, 2025
20 checks passed
@SouthEndMusic SouthEndMusic deleted the always-write-results branch March 31, 2025 14:22
@visr visr mentioned this pull request Apr 1, 2025
visr added a commit that referenced this pull request Apr 2, 2025
This is a follow-up of #2191. An issue with that is that it logged a
warning about crashing simulations also when it succeeded. Also it
didn't log the bottlenecks when you interrupt a (hanging) simulation.

Now it does both, this is what is shown when interrupting a simulation,
stacktrace is clipped off:

```
┌ Info: Starting a Ribasim simulation.
│   toml_path = c:\Users\visser_mn\Downloads\lhm-sel\lhm-sel.toml
│   cli.ribasim_version = 2025.2.0
│   starttime = 2020-01-01T00:00:00
│   endtime = 2021-01-01T00:00:00
└ @ Ribasim C:\ProgramData\DevDrives\repo\ribasim\Ribasim\core\src\main.jl:40
┌ Warning: Simulation crashed or interrupted.
└ @ Ribasim C:\ProgramData\DevDrives\repo\ribasim\Ribasim\core\src\main.jl:51
┌ Warning: Convergence bottlenecks in descending order of severity:
│   Outlet #591225 = 48782.889544290454
│   Outlet #591226 = 48782.889544290454
│   ManningResistance #340784 = 0.04819449424793999
│   Pump #340303 = 0.045638255628477994
│   Pump #340194 = 0.04563825461806383
└ @ Ribasim C:\ProgramData\DevDrives\repo\ribasim\Ribasim\core\src\logging.jl:55
ERROR: InterruptException:
Stacktrace:
  [1] bracketstrictlymontonic(v::Vector{Float64}, x::Float64, guess::Int64, o::Base.Order.ForwardOrdering)
```

This implements `Base.success(::Model)::Bool`. Before we checked the
SciML retcode. I noticed that the retcode of an ongoing simulation that
gets interrupted is also successfull. So now we check both the retcode
and if it `is_finished`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants