Skip to content

Commit 824381b

Browse files
committed
comment code
1 parent 25a722f commit 824381b

File tree

1 file changed

+2
-0
lines changed
  • src/lisflood/hydrological_modules

1 file changed

+2
-0
lines changed

src/lisflood/hydrological_modules/soil.py

+2
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,7 @@ def dynamic_perpixel(self):
522522
# Cumulative evaporation of intercepted water [mm]
523523

524524
self.var.TaPixel = self.var.deffraction(self.var.Ta)
525+
# transpiration from non irrigated land
525526
TaNoIrr=self.var.Ta
526527
TaNoIrr[2,:]=np.zeros(TaNoIrr[0,:].shape)
527528
self.var.TaNoIrrPixel=self.var.deffraction(TaNoIrr)
@@ -530,6 +531,7 @@ def dynamic_perpixel(self):
530531
self.var.TaCUM += self.var.TaPixel
531532
self.var.TaWB = self.var.TaPixel
532533
self.var.ESActPixel = self.var.deffraction(self.var.ESAct) + self.var.WaterFraction * self.var.EWaterAct
534+
# remove evaporation from irrrigation land
533535
self.var.ESActNoIrr=self.var.ESAct
534536
self.var.ESActNoIrr[2,:]=np.zeros(self.var.ESActNoIrr[0,:].shape)
535537
self.var.ESActNoIrrPixel=self.var.deffraction(self.var.ESActNoIrr)

0 commit comments

Comments
 (0)