Add irrigation proof-of-concept#3148
Draft
HendrikKok wants to merge 1 commit into
Draft
Conversation
…h external irrigation allocation, synthetic forcing, and multi-column example plots
There was a problem hiding this comment.
Trivy found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #3118
Irrigation module; proof-of-concept
Adds a standalone
irrigation/module wrapping Wflow's SBM land-surfacecomponents (soil, interception, runoff, non-paddy demand) to prototype a
coupled irrigation loop with Ribasim.
Coupling concept
Each timestep should have the following update pattern:
sequenceDiagram participant R as Ribasim participant W as Irrigation module Note over W: get_demand() — soil moisture @ t-1 W->>R: demand [m/s] Note over R: update_until(t) R->>W: allocated [m/s] Note over W: set_allocated() Note over W: update_until(t)API
Notes
ea8754e(1.1.0-dev) via[sources]inirrigation/Project.toml; remove when 1.1.0 is released to the registryrun_irrigation.jlruns three standalone scenarios (no allocation / 50% / multi-column) and saves water budget plotsIO design thoughts
initreceives the NC file path + anirrigation_id→water_user_idmapping, so it knows which allocation to route back to which soil columnOpen questions: