Skip to content

Commit 82a3c58

Browse files
committed
Update computation of reservoir release coefficient "k"
1 parent 17e62df commit 82a3c58

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/lisflood/hydrological_modules/reservoir.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,7 @@ def initial(self):
187187
flood_outflow = lookupscalar(str(binding['ReservoirFloodOutflow']), ReservoirSitePcr)
188188
flood_outflow = compressArray(flood_outflow)
189189
flood_outflow = np.compress(self.var.ReservoirSitesC > 0, flood_outflow)
190-
self.var.FloodReservoirOutflow = np.maximum(self.var.NormalReservoirOutflow, factor_outflow * flood_outflow)
191-
192-
# # release coefficient
193-
# self.var.k = np.maximum(1 - 5 * self.var.TotalReservoirStorageM3CC * (1 - self.var.FloodStorageLimit) / self.var.CatchmentAreaM2, 0)
190+
self.var.FloodReservoirOutflow = np.maximum(self.var.NormalReservoirOutflow, factor_outflow * flood_outflow)
194191

195192
# INITIAL CONDITIONS
196193

0 commit comments

Comments
 (0)