Index: doc/wflow_sbm.rst =================================================================== diff -u -rd22aa12e7df20836e4c4c55aee9681616ad73e72 -r58bc7deccc76d943b9af6df97fafb2574554a6b4 --- doc/wflow_sbm.rst (.../wflow_sbm.rst) (revision d22aa12e7df20836e4c4c55aee9681616ad73e72) +++ doc/wflow_sbm.rst (.../wflow_sbm.rst) (revision 58bc7deccc76d943b9af6df97fafb2574554a6b4) @@ -135,13 +135,13 @@ "canopy" capacity of the vegetation woody fraction. -Here it is assumed that Cmax_leaves (Gash’ canopy capacity) relates linearly with LAI (c.f. Van Dijk and Bruijnzeel 2001). This done -via the Sl (specific leaf storage). Sl is determined via a lookup table with land cover. Next the Cmax_leaves is +Here it is assumed that Cmax(leaves) (Gash’ canopy capacity for the leaves only) relates linearly with LAI (c.f. Van Dijk and Bruijnzeel 2001). This done +via the Sl (specific leaf storage). Sl is determined via a lookup table with land cover. Next the Cmax(leaves) is determined using: .. math:: - Cmax_leaves = Sl * LAI + Cmax(leaves) = Sl * LAI :: @@ -167,16 +167,16 @@ The table above shows lookup table for Sl (as determined from Pitman 1986, Lui 1998). To get to total storage (Cmax) the woody part of the vegetation also needs to be added. This is done via a simple - lookup table between land cover tha Cmax_wood: + lookup table between land cover the Cmax(wood): .. digraph:: cmax "MODIS LandCover" -> "Sl lookuptable"; "Sl lookuptable" -> Sl -> Multiply; - "LAI (monthly)" -> Multiply -> "S (leaves)" -> add; - "MODIS LandCover" -> "S Wood lookuptable"; - "S Wood lookuptable" -> "S (wood)"; - "S (wood)"-> add; + "LAI (monthly)" -> Multiply -> "Cmax (leaves)" -> add; + "MODIS LandCover" -> "Cmax Wood lookuptable"; + "Cmax Wood lookuptable" -> "Cmax (wood)"; + "Cmax (wood)"-> add; add -> Cmax; Index: wflow-py/wflow/wflow_sbm.py =================================================================== diff -u -ra26946a23ad13222449074a7ec217e0c1320b4b4 -r58bc7deccc76d943b9af6df97fafb2574554a6b4 --- wflow-py/wflow/wflow_sbm.py (.../wflow_sbm.py) (revision a26946a23ad13222449074a7ec217e0c1320b4b4) +++ wflow-py/wflow/wflow_sbm.py (.../wflow_sbm.py) (revision 58bc7deccc76d943b9af6df97fafb2574554a6b4) @@ -966,7 +966,7 @@ self.AvailableForInfiltration = self.ThroughFall + self.StemFlow UStoreCapacity = self.FirstZoneCapacity - self.FirstZoneDepth - self.UStoreDepth - # Runoff onto water bodies and river network + # Runoff from water bodies and river network self.RunoffOpenWater = min(1.0,self.RiverFrac + self.WaterFrac) * self.AvailableForInfiltration #self.RunoffOpenWater = self.ZeroMap self.AvailableForInfiltration = self.AvailableForInfiltration - self.RunoffOpenWater