Index: doc/wflow_routing.rst =================================================================== diff -u -r355b418d3f7a680059d2a00e25e7f6fbbb6dfdd9 -r064a25b54789c9e54f577fa4ba105127103ef9f6 --- doc/wflow_routing.rst (.../wflow_routing.rst) (revision 355b418d3f7a680059d2a00e25e7f6fbbb6dfdd9) +++ doc/wflow_routing.rst (.../wflow_routing.rst) (revision 064a25b54789c9e54f577fa4ba105127103ef9f6) @@ -58,15 +58,14 @@ The :math:`\alpha` for the channel and floodplain are calculated as follows: -pow((self.NFloodPlain / (sqrt(self.SlopeDCL))), self.Beta) .. math:: \alpha_{ch} = (n_{ch}/\sqrt{slope})^\beta P_{ch}^{(2.0 / 3.0)\beta} \alpha_{fp} = (n_{fp}/\sqrt{slope})^\beta P_{fp}^{(2.0 / 3.0)\beta} -In which slope is the flope of the river bed and floodplain and :math:`n_{ch}` and :math:`n_{fp}` represent +In which slope is the slope of the river bed and floodplain and :math:`n_{ch}` and :math:`n_{fp}` represent the manning's n for the channel and floodplain respectively. A compound :math:`\alpha_{total}` is estimated by first calculating a compound n value :math:`n_{total}`: @@ -78,7 +77,7 @@ \alpha_{total} = (n_{total}/\sqrt{slope})^\beta (P_{fp} + P_{ch})^{(2.0 / 3.0)\beta} -The :math:`\alpha_{total}` is used in the pcraster kinematic function to get the dischareg for the next +The :math:`\alpha_{total}` is used in the pcraster kinematic function to get the discharge for the next timestep. Index: wflow-py/UnitTests/wflow_sceleton/outstate/TSoil.map =================================================================== diff -u -re5747d2295c9ce7b3d0fa6009834b88b1e060369 -r064a25b54789c9e54f577fa4ba105127103ef9f6 Binary files differ Index: wflow-py/wflow/wflow_sceleton.py =================================================================== diff -u -r43965a4158a9e88bc6aae38bb1aaccf2e44aba45 -r064a25b54789c9e54f577fa4ba105127103ef9f6 --- wflow-py/wflow/wflow_sceleton.py (.../wflow_sceleton.py) (revision 43965a4158a9e88bc6aae38bb1aaccf2e44aba45) +++ wflow-py/wflow/wflow_sceleton.py (.../wflow_sceleton.py) (revision 064a25b54789c9e54f577fa4ba105127103ef9f6) @@ -255,7 +255,7 @@ dynModelFw.createRunId(NoOverWrite=False,level=logging.DEBUG) dynModelFw._runInitial() dynModelFw._runResume() - dynModelFw._runDynamic(_firstTimeStep,_lastTimeStep) + dynModelFw._runDynamic(0,0) dynModelFw._runSuspend() dynModelFw._wf_shutdown()