Skip to content

Commit 3dfd192

Browse files
author
Cinzia Mazzetti
committedMar 22, 2024
water evaporating from total water volume in channel

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎src/lisflood/hydrological_modules/evapowater.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,17 @@ def dynamic(self):
133133
UpstreamEva = self.var.EWRef * self.var.MMtoM3 * self.var.WaterFraction
134134
# evaporation for loop is amount of water per timestep [cu m]
135135
# Volume of potential evaporation from water surface per time step (conversion to [m3])
136+
136137
# cmcheck
137-
ChanMIter = self.var.ChanM3Kin.copy()
138+
# ChanMIter = self.var.ChanM3Kin.copy()
139+
ChanMIter = self.var.ChanM3.copy()
138140
# for Iteration loop: First value is amount of water in the channel
139-
# amount of water in bankful (first line of routing)
141+
140142
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+
143145
self.var.EvaAddM3 = MaskInfo.instance().in_zero()
144-
# real water consumption is set to 0
146+
# real water consumption is set to 0
145147

146148
for NoEvaExe in range(self.var.maxNoEva):
147149
ChanHelp = np.maximum(ChanMIter - UpstreamEva, ChanLeft)

0 commit comments

Comments
 (0)
Please sign in to comment.