@@ -726,15 +726,15 @@ def initial(self):
726726 subcatch ,
727727 self .Soil ,
728728 0.02307 ,
729- ) # Recession constant baseflow #K4=0.07; BASEFLOW:LINEARRESERVOIR
729+ ) * self . timestepsecs / self . basetimestep # Recession constant baseflow #K4=0.07; BASEFLOW:LINEARRESERVOIR
730730 if self .SetKquickFlow :
731731 self .KQuickFlow = self .readtblDefault (
732732 self .Dir + "/" + self .intbl + "/KQuickFlow.tbl" ,
733733 self .LandUse ,
734734 subcatch ,
735735 self .Soil ,
736736 0.09880 ,
737- ) # recession rate at flow HQ #KHQ=0.2; OUTFLOWUPPERZONE_NONLINEARRESERVOIR
737+ ) * self . timestepsecs / self . basetimestep # recession rate at flow HQ #KHQ=0.2; OUTFLOWUPPERZONE_NONLINEARRESERVOIR
738738 self .SUZ = self .readtblDefault (
739739 self .Dir + "/" + self .intbl + "/SUZ.tbl" ,
740740 self .LandUse ,
@@ -748,22 +748,22 @@ def initial(self):
748748 subcatch ,
749749 self .Soil ,
750750 0.3 ,
751- ) # K0
751+ ) * self . timestepsecs / self . basetimestep # K0
752752 else :
753753 self .KHQ = self .readtblDefault (
754754 self .Dir + "/" + self .intbl + "/KHQ.tbl" ,
755755 self .LandUse ,
756756 subcatch ,
757757 self .Soil ,
758758 0.09880 ,
759- ) # recession rate at flow HQ #KHQ=0.2; OUTFLOWUPPERZONE_NONLINEARRESERVOIR
759+ ) * self . timestepsecs / self . basetimestep # recession rate at flow HQ #KHQ=0.2; OUTFLOWUPPERZONE_NONLINEARRESERVOIR
760760 self .HQ = self .readtblDefault (
761761 self .Dir + "/" + self .intbl + "/HQ.tbl" ,
762762 self .LandUse ,
763763 subcatch ,
764764 self .Soil ,
765765 3.27000 ,
766- ) # high flow rate HQ for which recession rate of upper reservoir is known #HQ=3.76;
766+ ) * self . timestepsecs / self . basetimestep # high flow rate HQ for which recession rate of upper reservoir is known #HQ=3.76;
767767 self .AlphaNL = self .readtblDefault (
768768 self .Dir + "/" + self .intbl + "/AlphaNL.tbl" ,
769769 self .LandUse ,
@@ -778,7 +778,7 @@ def initial(self):
778778 subcatch ,
779779 self .Soil ,
780780 0.4000 ,
781- ) # percolation from Upper to Lowerzone (mm/day)
781+ ) * self . timestepsecs / self . basetimestep # percolation from Upper to Lowerzone (mm/day)
782782 self .CFR = self .readtblDefault (
783783 self .Dir + "/" + self .intbl + "/CFR.tbl" ,
784784 self .LandUse ,
@@ -814,7 +814,7 @@ def initial(self):
814814 subcatch ,
815815 self .Soil ,
816816 2.0 ,
817- ) # maximum capillary rise from runoff response routine to soil moisture routine
817+ ) * self . timestepsecs / self . basetimestep # maximum capillary rise from runoff response routine to soil moisture routine
818818 self .ICF = self .readtblDefault (
819819 self .Dir + "/" + self .intbl + "/ICF.tbl" ,
820820 self .LandUse ,
@@ -871,7 +871,7 @@ def initial(self):
871871 subcatch ,
872872 self .Soil ,
873873 3.75653 ,
874- )
874+ ) * self . timestepsecs / self . basetimestep
875875 # WHC= 0.10000 # fraction of Snowvolume that can store water
876876 self .WHC = self .readtblDefault (
877877 self .Dir + "/" + self .intbl + "/WHC.tbl" ,
0 commit comments