File tree 1 file changed +7
-5
lines changed
src/lisflood/hydrological_modules
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -133,15 +133,17 @@ def dynamic(self):
133
133
UpstreamEva = self .var .EWRef * self .var .MMtoM3 * self .var .WaterFraction
134
134
# evaporation for loop is amount of water per timestep [cu m]
135
135
# Volume of potential evaporation from water surface per time step (conversion to [m3])
136
+
136
137
# cmcheck
137
- ChanMIter = self .var .ChanM3Kin .copy ()
138
+ # ChanMIter = self.var.ChanM3Kin.copy()
139
+ ChanMIter = self .var .ChanM3 .copy ()
138
140
# for Iteration loop: First value is amount of water in the channel
139
- # amount of water in bankful (first line of routing)
141
+
140
142
ChanLeft = ChanMIter * 0.1
141
- # 10% of the discharge must stay in the river
142
- # cmcheck this is 10% of volume not discharge
143
+ # 10% of the volume must stay in the river
144
+
143
145
self .var .EvaAddM3 = MaskInfo .instance ().in_zero ()
144
- # real water consumption is set to 0
146
+ # real water consumption is set to 0
145
147
146
148
for NoEvaExe in range (self .var .maxNoEva ):
147
149
ChanHelp = np .maximum (ChanMIter - UpstreamEva , ChanLeft )
You can’t perform that action at this time.
0 commit comments