Skip to content

Commit

Permalink
Testmodels: run one year instead of ten (#1080)
Browse files Browse the repository at this point in the history
No adverse effects: results have already achieved steady-state after one
year.
This obviously reduces running times, especially when a MODFLOW6 model
is run as well.

Fixes #1031

---------

Co-authored-by: Martijn Visser <[email protected]>
  • Loading branch information
Huite and visr authored Feb 5, 2024
1 parent 1694f7f commit 72f3694
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/ribasim_testmodels/ribasim_testmodels/backwater.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def backwater_model():
flow_boundary=flow_boundary,
manning_resistance=manning_resistance,
starttime="2020-01-01 00:00:00",
endtime="2030-01-01 00:00:00",
endtime="2021-01-01 00:00:00",
)

return model
2 changes: 1 addition & 1 deletion python/ribasim_testmodels/ribasim_testmodels/two_basin.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ def two_basin_model() -> ribasim.Model:
tabulated_rating_curve=rating_curve,
terminal=terminal,
starttime="2020-01-01 00:00:00",
endtime="2030-01-01 00:00:00",
endtime="2021-01-01 00:00:00",
)
return ribasim_model

0 comments on commit 72f3694

Please sign in to comment.