Index: wflow-py/wflow/wflow_hbvl.py =================================================================== diff -u -r24d67ba392cd6f8537434b298501190cabead82a -rf3321f37375a0eacc5607d387f8598f44291a554 --- wflow-py/wflow/wflow_hbvl.py (.../wflow_hbvl.py) (revision 24d67ba392cd6f8537434b298501190cabead82a) +++ wflow-py/wflow/wflow_hbvl.py (.../wflow_hbvl.py) (revision f3321f37375a0eacc5607d387f8598f44291a554) @@ -373,21 +373,12 @@ # Initializing of variables self.logger.info("Initializing of model variables..") - self.TopoLdd=lddmask(self.TopoLdd,boolean(self.TopoId)) - catchmentcells=maptotal(scalar(self.TopoId)) - - # Used to seperate output per LandUse/management classes - #OutZones = self.LandUse - #report(self.reallength,"rl.map") - #report(catchmentcells,"kk.map") self.QMMConv = self.timestepsecs/(self.reallength * self.reallength * 0.001) #m3/s --> mm self.ToCubic = (self.reallength * self.reallength * 0.001) / self.timestepsecs # m3/s - self.FieldCapacity=self.FC #: total water holding capacity of the soil - self.Treshold=self.LP*self.FieldCapacity # Threshold soilwaterstorage above which AE=PE - #CatSurface=maptotal(scalar(ifthen(scalar(self.TopoId)>scalar(0.0),scalar(1.0)))) # catchment surface (in km2) + self.FieldCapacity=self.FC #: total water holding capacity of the soil + self.Treshold=self.LP*self.FieldCapacity # Threshold soilwaterstorage above which AE=PE - self.logger.info("End of initial section.")