Skip to content

Commit

Permalink
precipitation shortage failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingru923 committed Mar 12, 2024
1 parent fc19607 commit c8bc910
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/ribasim_testmodels/ribasim_testmodels/doc_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def doc_example_model():
"level": 6 * [0.0, 3.0],
}
)
basin_level = [5.0, 1.5, 1.0, 0.5, 0.3, 0.1]
basin_level = [1.0, 1.5, 1.0, 0.5, 0.3, 0.1]

state = pd.DataFrame(data={"node_id": [1, 4, 6, 8, 10, 12], "level": basin_level})

Expand Down Expand Up @@ -53,7 +53,7 @@ def doc_example_model():
data={
"node_id": [2, 5, 7, 9, 11],
"flow_rate": 5 * [0.5 / 3600],
"min_crest_level": [2.5, 1.95, 1.45, 0.95, 0.45],
"min_crest_level": [0.0, 1.95, 1.45, 0.95, 0.45],
}
)
)
Expand All @@ -71,7 +71,7 @@ def doc_example_model():

xy = np.array(
[
(0.0, 0.0), # source of water
(2.0, 0.0), # source of water
(0.0, -1.0), # pump/outlet
(-1.0, -1.0), # pid control
(0.0, -2.0), # basin 1
Expand Down

0 comments on commit c8bc910

Please sign in to comment.