You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What I didn't really get in the script yet was why the "artificial_recharge_capacity" grid is not taken there, but instead it is set to 0.001 * 'rural_infiltration_capacity'.
Requirements
Derive max_abstraction_groundwater grid, where artificial_recharge == 1
Derive max_abstraction_surfacewater grid, where artificial_recharge == 2
If groundwater extraction, then set surface water extraction to 0
Convert recharge artificial layer grid to LayeredWell package
Wells in inactive layers should deactivated.
Throw NotImplementedError if dataframe provided instead of grid
The text was updated successfully, but these errors were encountered:
Fixes#1311
# Description
Adds the following:
- ``imod.mf6.LayeredWell.from_imod5_cap_data``, to construct
LayeredWells for MODLOW6 from the CAP package in iMOD5 Data. Throws an
error if data is provided as point data (IPF, which is read as pandas
DataFrame). This has rate 0.0, actual rates will be inserted by in the
coupling scheme of iMOD Coupler.
- ``imod.mf6.GroundwaterFlowModel.from_imod5_data`` adds Sprinkling well
if CAP package present. This does not affect MODFLOW6 model if not
coupled to MetaSWAP: The wells have rates 0.0, so will not affect the
simulation results.
- ``Sprinkling.from_imod5_data`` to construct a Sprinkling package from
iMOD5 data.
# Checklist
<!---
Before requesting review, please go through this checklist:
-->
- [x] Links to correct issue
- [x] Update changelog, if changes affect users
- [x] PR title starts with ``Issue #nr``, e.g. ``Issue #737``
- [x] Unit tests were added
- [ ] **If feature added**: Added/extended example
Based on @HendrikKok's conversion prototype:
What I didn't really get in the script yet was why the
"artificial_recharge_capacity"
grid is not taken there, but instead it is set to 0.001 *'rural_infiltration_capacity'
.Requirements
max_abstraction_groundwater
grid, where artificial_recharge == 1max_abstraction_surfacewater
grid, where artificial_recharge == 2LayeredWell
packageNotImplementedError
if dataframe provided instead of gridThe text was updated successfully, but these errors were encountered: