HydPy 6.2.dev1__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (890) hide show
  1. hydpy/__init__.py +275 -0
  2. hydpy/aliases.py +2554 -0
  3. hydpy/auxs/__init__.py +0 -0
  4. hydpy/auxs/anntools.py +1305 -0
  5. hydpy/auxs/armatools.py +883 -0
  6. hydpy/auxs/calibtools.py +3337 -0
  7. hydpy/auxs/interptools.py +1094 -0
  8. hydpy/auxs/iuhtools.py +543 -0
  9. hydpy/auxs/networktools.py +597 -0
  10. hydpy/auxs/ppolytools.py +809 -0
  11. hydpy/auxs/quadtools.py +61 -0
  12. hydpy/auxs/roottools.py +228 -0
  13. hydpy/auxs/smoothtools.py +273 -0
  14. hydpy/auxs/statstools.py +2125 -0
  15. hydpy/auxs/validtools.py +81 -0
  16. hydpy/conf/HydPyConfigBase.xsd +68637 -0
  17. hydpy/conf/HydPyConfigBase.xsdt +358 -0
  18. hydpy/conf/HydPyConfigMultipleRuns.xsd +25 -0
  19. hydpy/conf/HydPyConfigSingleRun.xsd +24 -0
  20. hydpy/conf/__init__.py +0 -0
  21. hydpy/conf/a_coefficients_explicit_lobatto_sequence.npy +0 -0
  22. hydpy/conf/support_points_for_smoothpar_logistic2.npy +0 -0
  23. hydpy/config.py +42 -0
  24. hydpy/core/__init__.py +0 -0
  25. hydpy/core/aliastools.py +214 -0
  26. hydpy/core/autodoctools.py +1947 -0
  27. hydpy/core/auxfiletools.py +1169 -0
  28. hydpy/core/devicetools.py +3810 -0
  29. hydpy/core/exceptiontools.py +269 -0
  30. hydpy/core/filetools.py +1985 -0
  31. hydpy/core/hydpytools.py +3089 -0
  32. hydpy/core/importtools.py +1398 -0
  33. hydpy/core/indextools.py +345 -0
  34. hydpy/core/itemtools.py +1849 -0
  35. hydpy/core/masktools.py +460 -0
  36. hydpy/core/modeltools.py +4868 -0
  37. hydpy/core/netcdftools.py +2683 -0
  38. hydpy/core/objecttools.py +2023 -0
  39. hydpy/core/optiontools.py +1045 -0
  40. hydpy/core/parametertools.py +4674 -0
  41. hydpy/core/printtools.py +222 -0
  42. hydpy/core/propertytools.py +643 -0
  43. hydpy/core/pubtools.py +254 -0
  44. hydpy/core/selectiontools.py +1571 -0
  45. hydpy/core/sequencetools.py +4476 -0
  46. hydpy/core/seriestools.py +339 -0
  47. hydpy/core/testtools.py +2483 -0
  48. hydpy/core/timetools.py +3567 -0
  49. hydpy/core/typingtools.py +333 -0
  50. hydpy/core/variabletools.py +2615 -0
  51. hydpy/cythons/__init__.py +24 -0
  52. hydpy/cythons/annutils.pxd +33 -0
  53. hydpy/cythons/annutils.pyi +25 -0
  54. hydpy/cythons/annutils.pyx +120 -0
  55. hydpy/cythons/autogen/__init__.py +0 -0
  56. hydpy/cythons/autogen/annutils.cp313-win_amd64.pyd +0 -0
  57. hydpy/cythons/autogen/annutils.pxd +42 -0
  58. hydpy/cythons/autogen/annutils.pyx +129 -0
  59. hydpy/cythons/autogen/c_arma.cp313-win_amd64.pyd +0 -0
  60. hydpy/cythons/autogen/c_arma.pxd +179 -0
  61. hydpy/cythons/autogen/c_arma.pyx +356 -0
  62. hydpy/cythons/autogen/c_arma_rimorido.cp313-win_amd64.pyd +0 -0
  63. hydpy/cythons/autogen/c_arma_rimorido.pxd +179 -0
  64. hydpy/cythons/autogen/c_arma_rimorido.pyx +356 -0
  65. hydpy/cythons/autogen/c_conv.cp313-win_amd64.pyd +0 -0
  66. hydpy/cythons/autogen/c_conv.pxd +198 -0
  67. hydpy/cythons/autogen/c_conv.pyx +491 -0
  68. hydpy/cythons/autogen/c_conv_idw.cp313-win_amd64.pyd +0 -0
  69. hydpy/cythons/autogen/c_conv_idw.pxd +124 -0
  70. hydpy/cythons/autogen/c_conv_idw.pyx +264 -0
  71. hydpy/cythons/autogen/c_conv_idw_ed.cp313-win_amd64.pyd +0 -0
  72. hydpy/cythons/autogen/c_conv_idw_ed.pxd +197 -0
  73. hydpy/cythons/autogen/c_conv_idw_ed.pyx +481 -0
  74. hydpy/cythons/autogen/c_conv_nn.cp313-win_amd64.pyd +0 -0
  75. hydpy/cythons/autogen/c_conv_nn.pxd +120 -0
  76. hydpy/cythons/autogen/c_conv_nn.pyx +224 -0
  77. hydpy/cythons/autogen/c_dam.cp313-win_amd64.pyd +0 -0
  78. hydpy/cythons/autogen/c_dam.pxd +805 -0
  79. hydpy/cythons/autogen/c_dam.pyx +1477 -0
  80. hydpy/cythons/autogen/c_dam_llake.cp313-win_amd64.pyd +0 -0
  81. hydpy/cythons/autogen/c_dam_llake.pxd +364 -0
  82. hydpy/cythons/autogen/c_dam_llake.pyx +705 -0
  83. hydpy/cythons/autogen/c_dam_lreservoir.cp313-win_amd64.pyd +0 -0
  84. hydpy/cythons/autogen/c_dam_lreservoir.pxd +365 -0
  85. hydpy/cythons/autogen/c_dam_lreservoir.pyx +708 -0
  86. hydpy/cythons/autogen/c_dam_lretention.cp313-win_amd64.pyd +0 -0
  87. hydpy/cythons/autogen/c_dam_lretention.pxd +340 -0
  88. hydpy/cythons/autogen/c_dam_lretention.pyx +625 -0
  89. hydpy/cythons/autogen/c_dam_pump.cp313-win_amd64.pyd +0 -0
  90. hydpy/cythons/autogen/c_dam_pump.pxd +402 -0
  91. hydpy/cythons/autogen/c_dam_pump.pyx +724 -0
  92. hydpy/cythons/autogen/c_dam_pump_sluice.cp313-win_amd64.pyd +0 -0
  93. hydpy/cythons/autogen/c_dam_pump_sluice.pxd +452 -0
  94. hydpy/cythons/autogen/c_dam_pump_sluice.pyx +829 -0
  95. hydpy/cythons/autogen/c_dam_sluice.cp313-win_amd64.pyd +0 -0
  96. hydpy/cythons/autogen/c_dam_sluice.pxd +404 -0
  97. hydpy/cythons/autogen/c_dam_sluice.pyx +726 -0
  98. hydpy/cythons/autogen/c_dam_v001.cp313-win_amd64.pyd +0 -0
  99. hydpy/cythons/autogen/c_dam_v001.pxd +452 -0
  100. hydpy/cythons/autogen/c_dam_v001.pyx +816 -0
  101. hydpy/cythons/autogen/c_dam_v002.cp313-win_amd64.pyd +0 -0
  102. hydpy/cythons/autogen/c_dam_v002.pxd +394 -0
  103. hydpy/cythons/autogen/c_dam_v002.pyx +703 -0
  104. hydpy/cythons/autogen/c_dam_v003.cp313-win_amd64.pyd +0 -0
  105. hydpy/cythons/autogen/c_dam_v003.pxd +417 -0
  106. hydpy/cythons/autogen/c_dam_v003.pyx +744 -0
  107. hydpy/cythons/autogen/c_dam_v004.cp313-win_amd64.pyd +0 -0
  108. hydpy/cythons/autogen/c_dam_v004.pxd +486 -0
  109. hydpy/cythons/autogen/c_dam_v004.pyx +891 -0
  110. hydpy/cythons/autogen/c_dam_v005.cp313-win_amd64.pyd +0 -0
  111. hydpy/cythons/autogen/c_dam_v005.pxd +524 -0
  112. hydpy/cythons/autogen/c_dam_v005.pyx +928 -0
  113. hydpy/cythons/autogen/c_dummy.cp313-win_amd64.pyd +0 -0
  114. hydpy/cythons/autogen/c_dummy.pxd +151 -0
  115. hydpy/cythons/autogen/c_dummy.pyx +263 -0
  116. hydpy/cythons/autogen/c_dummy_interceptedwater.cp313-win_amd64.pyd +0 -0
  117. hydpy/cythons/autogen/c_dummy_interceptedwater.pxd +69 -0
  118. hydpy/cythons/autogen/c_dummy_interceptedwater.pyx +104 -0
  119. hydpy/cythons/autogen/c_dummy_node2node.cp313-win_amd64.pyd +0 -0
  120. hydpy/cythons/autogen/c_dummy_node2node.pxd +89 -0
  121. hydpy/cythons/autogen/c_dummy_node2node.pyx +148 -0
  122. hydpy/cythons/autogen/c_dummy_snowalbedo.cp313-win_amd64.pyd +0 -0
  123. hydpy/cythons/autogen/c_dummy_snowalbedo.pxd +69 -0
  124. hydpy/cythons/autogen/c_dummy_snowalbedo.pyx +104 -0
  125. hydpy/cythons/autogen/c_dummy_snowcover.cp313-win_amd64.pyd +0 -0
  126. hydpy/cythons/autogen/c_dummy_snowcover.pxd +69 -0
  127. hydpy/cythons/autogen/c_dummy_snowcover.pyx +104 -0
  128. hydpy/cythons/autogen/c_dummy_snowycanopy.cp313-win_amd64.pyd +0 -0
  129. hydpy/cythons/autogen/c_dummy_snowycanopy.pxd +69 -0
  130. hydpy/cythons/autogen/c_dummy_snowycanopy.pyx +104 -0
  131. hydpy/cythons/autogen/c_dummy_soilwater.cp313-win_amd64.pyd +0 -0
  132. hydpy/cythons/autogen/c_dummy_soilwater.pxd +69 -0
  133. hydpy/cythons/autogen/c_dummy_soilwater.pyx +104 -0
  134. hydpy/cythons/autogen/c_evap.cp313-win_amd64.pyd +0 -0
  135. hydpy/cythons/autogen/c_evap.pxd +1029 -0
  136. hydpy/cythons/autogen/c_evap.pyx +2601 -0
  137. hydpy/cythons/autogen/c_evap_aet_hbv96.cp313-win_amd64.pyd +0 -0
  138. hydpy/cythons/autogen/c_evap_aet_hbv96.pxd +227 -0
  139. hydpy/cythons/autogen/c_evap_aet_hbv96.pyx +584 -0
  140. hydpy/cythons/autogen/c_evap_aet_minhas.cp313-win_amd64.pyd +0 -0
  141. hydpy/cythons/autogen/c_evap_aet_minhas.pxd +193 -0
  142. hydpy/cythons/autogen/c_evap_aet_minhas.pyx +478 -0
  143. hydpy/cythons/autogen/c_evap_aet_morsim.cp313-win_amd64.pyd +0 -0
  144. hydpy/cythons/autogen/c_evap_aet_morsim.pxd +681 -0
  145. hydpy/cythons/autogen/c_evap_aet_morsim.pyx +1642 -0
  146. hydpy/cythons/autogen/c_evap_pet_ambav1.cp313-win_amd64.pyd +0 -0
  147. hydpy/cythons/autogen/c_evap_pet_ambav1.pxd +532 -0
  148. hydpy/cythons/autogen/c_evap_pet_ambav1.pyx +1296 -0
  149. hydpy/cythons/autogen/c_evap_pet_hbv96.cp313-win_amd64.pyd +0 -0
  150. hydpy/cythons/autogen/c_evap_pet_hbv96.pxd +179 -0
  151. hydpy/cythons/autogen/c_evap_pet_hbv96.pyx +328 -0
  152. hydpy/cythons/autogen/c_evap_pet_m.cp313-win_amd64.pyd +0 -0
  153. hydpy/cythons/autogen/c_evap_pet_m.pxd +124 -0
  154. hydpy/cythons/autogen/c_evap_pet_m.pyx +214 -0
  155. hydpy/cythons/autogen/c_evap_pet_mlc.cp313-win_amd64.pyd +0 -0
  156. hydpy/cythons/autogen/c_evap_pet_mlc.pxd +126 -0
  157. hydpy/cythons/autogen/c_evap_pet_mlc.pyx +214 -0
  158. hydpy/cythons/autogen/c_evap_ret_fao56.cp313-win_amd64.pyd +0 -0
  159. hydpy/cythons/autogen/c_evap_ret_fao56.pxd +305 -0
  160. hydpy/cythons/autogen/c_evap_ret_fao56.pyx +624 -0
  161. hydpy/cythons/autogen/c_evap_ret_io.cp313-win_amd64.pyd +0 -0
  162. hydpy/cythons/autogen/c_evap_ret_io.pxd +112 -0
  163. hydpy/cythons/autogen/c_evap_ret_io.pyx +176 -0
  164. hydpy/cythons/autogen/c_evap_ret_tw2002.cp313-win_amd64.pyd +0 -0
  165. hydpy/cythons/autogen/c_evap_ret_tw2002.pxd +139 -0
  166. hydpy/cythons/autogen/c_evap_ret_tw2002.pyx +273 -0
  167. hydpy/cythons/autogen/c_exch.cp313-win_amd64.pyd +0 -0
  168. hydpy/cythons/autogen/c_exch.pxd +230 -0
  169. hydpy/cythons/autogen/c_exch.pyx +462 -0
  170. hydpy/cythons/autogen/c_exch_branch_hbv96.cp313-win_amd64.pyd +0 -0
  171. hydpy/cythons/autogen/c_exch_branch_hbv96.pxd +134 -0
  172. hydpy/cythons/autogen/c_exch_branch_hbv96.pyx +255 -0
  173. hydpy/cythons/autogen/c_exch_waterlevel.cp313-win_amd64.pyd +0 -0
  174. hydpy/cythons/autogen/c_exch_waterlevel.pxd +54 -0
  175. hydpy/cythons/autogen/c_exch_waterlevel.pyx +78 -0
  176. hydpy/cythons/autogen/c_exch_weir_hbv96.cp313-win_amd64.pyd +0 -0
  177. hydpy/cythons/autogen/c_exch_weir_hbv96.pxd +156 -0
  178. hydpy/cythons/autogen/c_exch_weir_hbv96.pyx +282 -0
  179. hydpy/cythons/autogen/c_ga.cp313-win_amd64.pyd +0 -0
  180. hydpy/cythons/autogen/c_ga.pxd +353 -0
  181. hydpy/cythons/autogen/c_ga.pyx +1204 -0
  182. hydpy/cythons/autogen/c_ga_garto.cp313-win_amd64.pyd +0 -0
  183. hydpy/cythons/autogen/c_ga_garto.pxd +330 -0
  184. hydpy/cythons/autogen/c_ga_garto.pyx +1105 -0
  185. hydpy/cythons/autogen/c_ga_garto_submodel1.cp313-win_amd64.pyd +0 -0
  186. hydpy/cythons/autogen/c_ga_garto_submodel1.pxd +236 -0
  187. hydpy/cythons/autogen/c_ga_garto_submodel1.pyx +944 -0
  188. hydpy/cythons/autogen/c_gland.cp313-win_amd64.pyd +0 -0
  189. hydpy/cythons/autogen/c_gland.pxd +437 -0
  190. hydpy/cythons/autogen/c_gland.pyx +726 -0
  191. hydpy/cythons/autogen/c_gland_gr4.cp313-win_amd64.pyd +0 -0
  192. hydpy/cythons/autogen/c_gland_gr4.pxd +382 -0
  193. hydpy/cythons/autogen/c_gland_gr4.pyx +605 -0
  194. hydpy/cythons/autogen/c_gland_gr5.cp313-win_amd64.pyd +0 -0
  195. hydpy/cythons/autogen/c_gland_gr5.pxd +368 -0
  196. hydpy/cythons/autogen/c_gland_gr5.pyx +568 -0
  197. hydpy/cythons/autogen/c_gland_gr6.cp313-win_amd64.pyd +0 -0
  198. hydpy/cythons/autogen/c_gland_gr6.pxd +420 -0
  199. hydpy/cythons/autogen/c_gland_gr6.pyx +673 -0
  200. hydpy/cythons/autogen/c_hland.cp313-win_amd64.pyd +0 -0
  201. hydpy/cythons/autogen/c_hland.pxd +855 -0
  202. hydpy/cythons/autogen/c_hland.pyx +2486 -0
  203. hydpy/cythons/autogen/c_hland_96.cp313-win_amd64.pyd +0 -0
  204. hydpy/cythons/autogen/c_hland_96.pxd +631 -0
  205. hydpy/cythons/autogen/c_hland_96.pyx +1724 -0
  206. hydpy/cythons/autogen/c_hland_96c.cp313-win_amd64.pyd +0 -0
  207. hydpy/cythons/autogen/c_hland_96c.pxd +621 -0
  208. hydpy/cythons/autogen/c_hland_96c.pyx +1822 -0
  209. hydpy/cythons/autogen/c_hland_96p.cp313-win_amd64.pyd +0 -0
  210. hydpy/cythons/autogen/c_hland_96p.pxd +683 -0
  211. hydpy/cythons/autogen/c_hland_96p.pyx +1911 -0
  212. hydpy/cythons/autogen/c_kinw.cp313-win_amd64.pyd +0 -0
  213. hydpy/cythons/autogen/c_kinw.pxd +509 -0
  214. hydpy/cythons/autogen/c_kinw.pyx +965 -0
  215. hydpy/cythons/autogen/c_kinw_williams.cp313-win_amd64.pyd +0 -0
  216. hydpy/cythons/autogen/c_kinw_williams.pxd +409 -0
  217. hydpy/cythons/autogen/c_kinw_williams.pyx +763 -0
  218. hydpy/cythons/autogen/c_kinw_williams_ext.cp313-win_amd64.pyd +0 -0
  219. hydpy/cythons/autogen/c_kinw_williams_ext.pxd +220 -0
  220. hydpy/cythons/autogen/c_kinw_williams_ext.pyx +440 -0
  221. hydpy/cythons/autogen/c_lland.cp313-win_amd64.pyd +0 -0
  222. hydpy/cythons/autogen/c_lland.pxd +1386 -0
  223. hydpy/cythons/autogen/c_lland.pyx +3679 -0
  224. hydpy/cythons/autogen/c_lland_dd.cp313-win_amd64.pyd +0 -0
  225. hydpy/cythons/autogen/c_lland_dd.pxd +679 -0
  226. hydpy/cythons/autogen/c_lland_dd.pyx +1719 -0
  227. hydpy/cythons/autogen/c_lland_knauf.cp313-win_amd64.pyd +0 -0
  228. hydpy/cythons/autogen/c_lland_knauf.pxd +1096 -0
  229. hydpy/cythons/autogen/c_lland_knauf.pyx +2784 -0
  230. hydpy/cythons/autogen/c_lland_knauf_ic.cp313-win_amd64.pyd +0 -0
  231. hydpy/cythons/autogen/c_lland_knauf_ic.pxd +1369 -0
  232. hydpy/cythons/autogen/c_lland_knauf_ic.pyx +3625 -0
  233. hydpy/cythons/autogen/c_meteo.cp313-win_amd64.pyd +0 -0
  234. hydpy/cythons/autogen/c_meteo.pxd +469 -0
  235. hydpy/cythons/autogen/c_meteo.pyx +879 -0
  236. hydpy/cythons/autogen/c_meteo_clear_glob_io.cp313-win_amd64.pyd +0 -0
  237. hydpy/cythons/autogen/c_meteo_clear_glob_io.pxd +75 -0
  238. hydpy/cythons/autogen/c_meteo_clear_glob_io.pyx +107 -0
  239. hydpy/cythons/autogen/c_meteo_glob_fao56.cp313-win_amd64.pyd +0 -0
  240. hydpy/cythons/autogen/c_meteo_glob_fao56.pxd +209 -0
  241. hydpy/cythons/autogen/c_meteo_glob_fao56.pyx +339 -0
  242. hydpy/cythons/autogen/c_meteo_glob_io.cp313-win_amd64.pyd +0 -0
  243. hydpy/cythons/autogen/c_meteo_glob_io.pxd +63 -0
  244. hydpy/cythons/autogen/c_meteo_glob_io.pyx +91 -0
  245. hydpy/cythons/autogen/c_meteo_glob_morsim.cp313-win_amd64.pyd +0 -0
  246. hydpy/cythons/autogen/c_meteo_glob_morsim.pxd +289 -0
  247. hydpy/cythons/autogen/c_meteo_glob_morsim.pyx +527 -0
  248. hydpy/cythons/autogen/c_meteo_precip_io.cp313-win_amd64.pyd +0 -0
  249. hydpy/cythons/autogen/c_meteo_precip_io.pxd +112 -0
  250. hydpy/cythons/autogen/c_meteo_precip_io.pyx +176 -0
  251. hydpy/cythons/autogen/c_meteo_psun_sun_glob_io.cp313-win_amd64.pyd +0 -0
  252. hydpy/cythons/autogen/c_meteo_psun_sun_glob_io.pxd +87 -0
  253. hydpy/cythons/autogen/c_meteo_psun_sun_glob_io.pyx +123 -0
  254. hydpy/cythons/autogen/c_meteo_sun_fao56.cp313-win_amd64.pyd +0 -0
  255. hydpy/cythons/autogen/c_meteo_sun_fao56.pxd +209 -0
  256. hydpy/cythons/autogen/c_meteo_sun_fao56.pyx +343 -0
  257. hydpy/cythons/autogen/c_meteo_sun_morsim.cp313-win_amd64.pyd +0 -0
  258. hydpy/cythons/autogen/c_meteo_sun_morsim.pxd +286 -0
  259. hydpy/cythons/autogen/c_meteo_sun_morsim.pyx +519 -0
  260. hydpy/cythons/autogen/c_meteo_temp_io.cp313-win_amd64.pyd +0 -0
  261. hydpy/cythons/autogen/c_meteo_temp_io.pxd +112 -0
  262. hydpy/cythons/autogen/c_meteo_temp_io.pyx +176 -0
  263. hydpy/cythons/autogen/c_musk.cp313-win_amd64.pyd +0 -0
  264. hydpy/cythons/autogen/c_musk.pxd +282 -0
  265. hydpy/cythons/autogen/c_musk.pyx +605 -0
  266. hydpy/cythons/autogen/c_musk_classic.cp313-win_amd64.pyd +0 -0
  267. hydpy/cythons/autogen/c_musk_classic.pxd +138 -0
  268. hydpy/cythons/autogen/c_musk_classic.pyx +226 -0
  269. hydpy/cythons/autogen/c_musk_mct.cp313-win_amd64.pyd +0 -0
  270. hydpy/cythons/autogen/c_musk_mct.pxd +282 -0
  271. hydpy/cythons/autogen/c_musk_mct.pyx +609 -0
  272. hydpy/cythons/autogen/c_rconc.cp313-win_amd64.pyd +0 -0
  273. hydpy/cythons/autogen/c_rconc.pxd +119 -0
  274. hydpy/cythons/autogen/c_rconc.pyx +174 -0
  275. hydpy/cythons/autogen/c_rconc_nash.cp313-win_amd64.pyd +0 -0
  276. hydpy/cythons/autogen/c_rconc_nash.pxd +111 -0
  277. hydpy/cythons/autogen/c_rconc_nash.pyx +185 -0
  278. hydpy/cythons/autogen/c_rconc_uh.cp313-win_amd64.pyd +0 -0
  279. hydpy/cythons/autogen/c_rconc_uh.pxd +92 -0
  280. hydpy/cythons/autogen/c_rconc_uh.pyx +125 -0
  281. hydpy/cythons/autogen/c_sw1d.cp313-win_amd64.pyd +0 -0
  282. hydpy/cythons/autogen/c_sw1d.pxd +511 -0
  283. hydpy/cythons/autogen/c_sw1d.pyx +1263 -0
  284. hydpy/cythons/autogen/c_sw1d_channel.cp313-win_amd64.pyd +0 -0
  285. hydpy/cythons/autogen/c_sw1d_channel.pxd +119 -0
  286. hydpy/cythons/autogen/c_sw1d_channel.pyx +300 -0
  287. hydpy/cythons/autogen/c_sw1d_gate_out.cp313-win_amd64.pyd +0 -0
  288. hydpy/cythons/autogen/c_sw1d_gate_out.pxd +240 -0
  289. hydpy/cythons/autogen/c_sw1d_gate_out.pyx +476 -0
  290. hydpy/cythons/autogen/c_sw1d_lias.cp313-win_amd64.pyd +0 -0
  291. hydpy/cythons/autogen/c_sw1d_lias.pxd +320 -0
  292. hydpy/cythons/autogen/c_sw1d_lias.pyx +619 -0
  293. hydpy/cythons/autogen/c_sw1d_lias_sluice.cp313-win_amd64.pyd +0 -0
  294. hydpy/cythons/autogen/c_sw1d_lias_sluice.pxd +325 -0
  295. hydpy/cythons/autogen/c_sw1d_lias_sluice.pyx +644 -0
  296. hydpy/cythons/autogen/c_sw1d_network.cp313-win_amd64.pyd +0 -0
  297. hydpy/cythons/autogen/c_sw1d_network.pxd +90 -0
  298. hydpy/cythons/autogen/c_sw1d_network.pyx +246 -0
  299. hydpy/cythons/autogen/c_sw1d_pump.cp313-win_amd64.pyd +0 -0
  300. hydpy/cythons/autogen/c_sw1d_pump.pxd +256 -0
  301. hydpy/cythons/autogen/c_sw1d_pump.pyx +502 -0
  302. hydpy/cythons/autogen/c_sw1d_q_in.cp313-win_amd64.pyd +0 -0
  303. hydpy/cythons/autogen/c_sw1d_q_in.pxd +224 -0
  304. hydpy/cythons/autogen/c_sw1d_q_in.pyx +383 -0
  305. hydpy/cythons/autogen/c_sw1d_q_out.cp313-win_amd64.pyd +0 -0
  306. hydpy/cythons/autogen/c_sw1d_q_out.pxd +224 -0
  307. hydpy/cythons/autogen/c_sw1d_q_out.pyx +383 -0
  308. hydpy/cythons/autogen/c_sw1d_storage.cp313-win_amd64.pyd +0 -0
  309. hydpy/cythons/autogen/c_sw1d_storage.pxd +193 -0
  310. hydpy/cythons/autogen/c_sw1d_storage.pyx +349 -0
  311. hydpy/cythons/autogen/c_sw1d_weir_out.cp313-win_amd64.pyd +0 -0
  312. hydpy/cythons/autogen/c_sw1d_weir_out.pxd +212 -0
  313. hydpy/cythons/autogen/c_sw1d_weir_out.pyx +404 -0
  314. hydpy/cythons/autogen/c_test.cp313-win_amd64.pyd +0 -0
  315. hydpy/cythons/autogen/c_test.pxd +175 -0
  316. hydpy/cythons/autogen/c_test.pyx +348 -0
  317. hydpy/cythons/autogen/c_test_discontinous.cp313-win_amd64.pyd +0 -0
  318. hydpy/cythons/autogen/c_test_discontinous.pxd +146 -0
  319. hydpy/cythons/autogen/c_test_discontinous.pyx +256 -0
  320. hydpy/cythons/autogen/c_test_stiff0d.cp313-win_amd64.pyd +0 -0
  321. hydpy/cythons/autogen/c_test_stiff0d.pxd +146 -0
  322. hydpy/cythons/autogen/c_test_stiff0d.pyx +250 -0
  323. hydpy/cythons/autogen/c_test_stiff1d.cp313-win_amd64.pyd +0 -0
  324. hydpy/cythons/autogen/c_test_stiff1d.pxd +145 -0
  325. hydpy/cythons/autogen/c_test_stiff1d.pyx +294 -0
  326. hydpy/cythons/autogen/c_whmod.cp313-win_amd64.pyd +0 -0
  327. hydpy/cythons/autogen/c_whmod.pxd +482 -0
  328. hydpy/cythons/autogen/c_whmod.pyx +1156 -0
  329. hydpy/cythons/autogen/c_whmod_rural.cp313-win_amd64.pyd +0 -0
  330. hydpy/cythons/autogen/c_whmod_rural.pxd +411 -0
  331. hydpy/cythons/autogen/c_whmod_rural.pyx +982 -0
  332. hydpy/cythons/autogen/c_whmod_urban.cp313-win_amd64.pyd +0 -0
  333. hydpy/cythons/autogen/c_whmod_urban.pxd +482 -0
  334. hydpy/cythons/autogen/c_whmod_urban.pyx +1155 -0
  335. hydpy/cythons/autogen/c_wland.cp313-win_amd64.pyd +0 -0
  336. hydpy/cythons/autogen/c_wland.pxd +842 -0
  337. hydpy/cythons/autogen/c_wland.pyx +1890 -0
  338. hydpy/cythons/autogen/c_wland_gd.cp313-win_amd64.pyd +0 -0
  339. hydpy/cythons/autogen/c_wland_gd.pxd +829 -0
  340. hydpy/cythons/autogen/c_wland_gd.pyx +1847 -0
  341. hydpy/cythons/autogen/c_wland_wag.cp313-win_amd64.pyd +0 -0
  342. hydpy/cythons/autogen/c_wland_wag.pxd +810 -0
  343. hydpy/cythons/autogen/c_wland_wag.pyx +1780 -0
  344. hydpy/cythons/autogen/c_wq.cp313-win_amd64.pyd +0 -0
  345. hydpy/cythons/autogen/c_wq.pxd +275 -0
  346. hydpy/cythons/autogen/c_wq.pyx +652 -0
  347. hydpy/cythons/autogen/c_wq_trapeze.cp313-win_amd64.pyd +0 -0
  348. hydpy/cythons/autogen/c_wq_trapeze.pxd +170 -0
  349. hydpy/cythons/autogen/c_wq_trapeze.pyx +400 -0
  350. hydpy/cythons/autogen/c_wq_trapeze_strickler.cp313-win_amd64.pyd +0 -0
  351. hydpy/cythons/autogen/c_wq_trapeze_strickler.pxd +243 -0
  352. hydpy/cythons/autogen/c_wq_trapeze_strickler.pyx +578 -0
  353. hydpy/cythons/autogen/c_wq_walrus.cp313-win_amd64.pyd +0 -0
  354. hydpy/cythons/autogen/c_wq_walrus.pxd +61 -0
  355. hydpy/cythons/autogen/c_wq_walrus.pyx +82 -0
  356. hydpy/cythons/autogen/configutils.cp313-win_amd64.pyd +0 -0
  357. hydpy/cythons/autogen/configutils.pxd +17 -0
  358. hydpy/cythons/autogen/configutils.pyx +119 -0
  359. hydpy/cythons/autogen/interfaceutils.cp313-win_amd64.pyd +0 -0
  360. hydpy/cythons/autogen/interfaceutils.pxd +31 -0
  361. hydpy/cythons/autogen/interfaceutils.pyx +82 -0
  362. hydpy/cythons/autogen/interputils.cp313-win_amd64.pyd +0 -0
  363. hydpy/cythons/autogen/interputils.pxd +42 -0
  364. hydpy/cythons/autogen/interputils.pyx +118 -0
  365. hydpy/cythons/autogen/masterinterface.cp313-win_amd64.pyd +0 -0
  366. hydpy/cythons/autogen/masterinterface.pxd +153 -0
  367. hydpy/cythons/autogen/masterinterface.pyx +222 -0
  368. hydpy/cythons/autogen/pointerutils.cp313-win_amd64.pyd +0 -0
  369. hydpy/cythons/autogen/pointerutils.pxd +31 -0
  370. hydpy/cythons/autogen/pointerutils.pyx +650 -0
  371. hydpy/cythons/autogen/ppolyutils.cp313-win_amd64.pyd +0 -0
  372. hydpy/cythons/autogen/ppolyutils.pxd +35 -0
  373. hydpy/cythons/autogen/ppolyutils.pyx +59 -0
  374. hydpy/cythons/autogen/quadutils.cp313-win_amd64.pyd +0 -0
  375. hydpy/cythons/autogen/quadutils.pxd +26 -0
  376. hydpy/cythons/autogen/quadutils.pyx +973 -0
  377. hydpy/cythons/autogen/rootutils.cp313-win_amd64.pyd +0 -0
  378. hydpy/cythons/autogen/rootutils.pxd +28 -0
  379. hydpy/cythons/autogen/rootutils.pyx +109 -0
  380. hydpy/cythons/autogen/sequenceutils.cp313-win_amd64.pyd +0 -0
  381. hydpy/cythons/autogen/sequenceutils.pxd +45 -0
  382. hydpy/cythons/autogen/sequenceutils.pyx +101 -0
  383. hydpy/cythons/autogen/smoothutils.cp313-win_amd64.pyd +0 -0
  384. hydpy/cythons/autogen/smoothutils.pxd +29 -0
  385. hydpy/cythons/autogen/smoothutils.pyx +833 -0
  386. hydpy/cythons/configutils.pxd +8 -0
  387. hydpy/cythons/configutils.pyi +5 -0
  388. hydpy/cythons/configutils.pyx +110 -0
  389. hydpy/cythons/interfaceutils.pxd +22 -0
  390. hydpy/cythons/interfaceutils.pyi +15 -0
  391. hydpy/cythons/interfaceutils.pyx +73 -0
  392. hydpy/cythons/interputils.pxd +33 -0
  393. hydpy/cythons/interputils.pyi +32 -0
  394. hydpy/cythons/interputils.pyx +109 -0
  395. hydpy/cythons/modelutils.py +2990 -0
  396. hydpy/cythons/pointerutils.pxd +22 -0
  397. hydpy/cythons/pointerutils.pyi +89 -0
  398. hydpy/cythons/pointerutils.pyx +641 -0
  399. hydpy/cythons/ppolyutils.pxd +26 -0
  400. hydpy/cythons/ppolyutils.pyi +21 -0
  401. hydpy/cythons/ppolyutils.pyx +50 -0
  402. hydpy/cythons/quadutils.pxd +17 -0
  403. hydpy/cythons/quadutils.pyi +13 -0
  404. hydpy/cythons/quadutils.pyx +964 -0
  405. hydpy/cythons/rootutils.pxd +19 -0
  406. hydpy/cythons/rootutils.pyi +21 -0
  407. hydpy/cythons/rootutils.pyx +100 -0
  408. hydpy/cythons/sequenceutils.pxd +36 -0
  409. hydpy/cythons/sequenceutils.pyi +7 -0
  410. hydpy/cythons/sequenceutils.pyx +92 -0
  411. hydpy/cythons/smoothutils.pxd +20 -0
  412. hydpy/cythons/smoothutils.pyi +15 -0
  413. hydpy/cythons/smoothutils.pyx +824 -0
  414. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/land_dill_assl.py +13 -0
  415. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/land_lahn_kalk.py +13 -0
  416. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/land_lahn_leun.py +14 -0
  417. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/land_lahn_marb.py +13 -0
  418. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/stream_dill_assl_lahn_leun.py +5 -0
  419. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/stream_lahn_leun_lahn_kalk.py +5 -0
  420. hydpy/data/HydPy-H-Lahn/conditions/init_1996_01_01_00_00_00/stream_lahn_marb_lahn_leun.py +5 -0
  421. hydpy/data/HydPy-H-Lahn/control/default/land.py +9 -0
  422. hydpy/data/HydPy-H-Lahn/control/default/land_dill_assl.py +57 -0
  423. hydpy/data/HydPy-H-Lahn/control/default/land_lahn_kalk.py +57 -0
  424. hydpy/data/HydPy-H-Lahn/control/default/land_lahn_leun.py +56 -0
  425. hydpy/data/HydPy-H-Lahn/control/default/land_lahn_marb.py +57 -0
  426. hydpy/data/HydPy-H-Lahn/control/default/stream_dill_assl_lahn_leun.py +7 -0
  427. hydpy/data/HydPy-H-Lahn/control/default/stream_lahn_leun_lahn_kalk.py +7 -0
  428. hydpy/data/HydPy-H-Lahn/control/default/stream_lahn_marb_lahn_leun.py +7 -0
  429. hydpy/data/HydPy-H-Lahn/multiple_runs.xml +309 -0
  430. hydpy/data/HydPy-H-Lahn/multiple_runs_alpha.xml +71 -0
  431. hydpy/data/HydPy-H-Lahn/network/default/headwaters.py +11 -0
  432. hydpy/data/HydPy-H-Lahn/network/default/nonheadwaters.py +11 -0
  433. hydpy/data/HydPy-H-Lahn/network/default/streams.py +8 -0
  434. hydpy/data/HydPy-H-Lahn/series/default/dill_assl_obs_q.asc +11387 -0
  435. hydpy/data/HydPy-H-Lahn/series/default/evap_pet_hbv96_input_normalairtemperature.nc +0 -0
  436. hydpy/data/HydPy-H-Lahn/series/default/evap_pet_hbv96_input_normalevapotranspiration.nc +0 -0
  437. hydpy/data/HydPy-H-Lahn/series/default/hland_96_input_p.nc +0 -0
  438. hydpy/data/HydPy-H-Lahn/series/default/hland_96_input_t.nc +0 -0
  439. hydpy/data/HydPy-H-Lahn/series/default/lahn_kalk_obs_q.asc +11387 -0
  440. hydpy/data/HydPy-H-Lahn/series/default/lahn_leun_obs_q.asc +11387 -0
  441. hydpy/data/HydPy-H-Lahn/series/default/lahn_marb_obs_q.asc +11387 -0
  442. hydpy/data/HydPy-H-Lahn/series/default/land_dill_assl_evap_pet_hbv96_input_normalairtemperature.asc +11387 -0
  443. hydpy/data/HydPy-H-Lahn/series/default/land_dill_assl_evap_pet_hbv96_input_normalevapotranspiration.asc +11387 -0
  444. hydpy/data/HydPy-H-Lahn/series/default/land_dill_assl_hland_96_input_p.asc +11387 -0
  445. hydpy/data/HydPy-H-Lahn/series/default/land_dill_assl_hland_96_input_t.asc +11387 -0
  446. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_kalk_evap_pet_hbv96_input_normalairtemperature.asc +11387 -0
  447. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_kalk_evap_pet_hbv96_input_normalevapotranspiration.asc +11387 -0
  448. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_kalk_hland_96_input_p.asc +11387 -0
  449. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_kalk_hland_96_input_t.asc +11387 -0
  450. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_leun_evap_pet_hbv96_input_normalairtemperature.asc +11387 -0
  451. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_leun_evap_pet_hbv96_input_normalevapotranspiration.asc +11387 -0
  452. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_leun_hland_96_input_p.asc +11387 -0
  453. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_leun_hland_96_input_t.asc +11387 -0
  454. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_marb_evap_pet_hbv96_input_normalairtemperature.asc +11387 -0
  455. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_marb_evap_pet_hbv96_input_normalevapotranspiration.asc +11387 -0
  456. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_marb_hland_96_input_p.asc +11387 -0
  457. hydpy/data/HydPy-H-Lahn/series/default/land_lahn_marb_hland_96_input_t.asc +11387 -0
  458. hydpy/data/HydPy-H-Lahn/series/default/obs_q.nc +0 -0
  459. hydpy/data/HydPy-H-Lahn/single_run.xml +152 -0
  460. hydpy/data/HydPy-H-Lahn/single_run.xmlt +143 -0
  461. hydpy/data/__init__.py +17 -0
  462. hydpy/docs/__init__.py +0 -0
  463. hydpy/docs/autofigs/__init__.py +0 -0
  464. hydpy/docs/bib/__init__.py +0 -0
  465. hydpy/docs/bib/refs.bib +566 -0
  466. hydpy/docs/combine_docversions.py +133 -0
  467. hydpy/docs/draw_model_sketches.py +1301 -0
  468. hydpy/docs/enable_autodoc.py +7 -0
  469. hydpy/docs/figs/HydPy-G-GR4.png +0 -0
  470. hydpy/docs/figs/HydPy-G-GR5.png +0 -0
  471. hydpy/docs/figs/HydPy-G-GR6.png +0 -0
  472. hydpy/docs/figs/HydPy-H-HBV96-COSERO.png +0 -0
  473. hydpy/docs/figs/HydPy-H-HBV96-PREVAH.png +0 -0
  474. hydpy/docs/figs/HydPy-H-HBV96.png +0 -0
  475. hydpy/docs/figs/HydPy-H-Lahn.png +0 -0
  476. hydpy/docs/figs/HydPy-KinW-Williams.png +0 -0
  477. hydpy/docs/figs/HydPy-L-DD.png +0 -0
  478. hydpy/docs/figs/HydPy-W-Wag.png +0 -0
  479. hydpy/docs/figs/HydPy_Logo.png +0 -0
  480. hydpy/docs/figs/HydPy_Logo_Text.png +0 -0
  481. hydpy/docs/figs/IDLE-editor.png +0 -0
  482. hydpy/docs/figs/IDLE-shell.png +0 -0
  483. hydpy/docs/figs/LAWA_river-basin-bumbers.png +0 -0
  484. hydpy/docs/figs/__init__.py +0 -0
  485. hydpy/docs/html_/__init__.py +0 -0
  486. hydpy/docs/polish_html.py +57 -0
  487. hydpy/docs/prepare.py +224 -0
  488. hydpy/docs/publish_docs.py +53 -0
  489. hydpy/docs/rst/HydPy-ARMA.rst +27 -0
  490. hydpy/docs/rst/HydPy-Conv.rst +22 -0
  491. hydpy/docs/rst/HydPy-Dam.rst +79 -0
  492. hydpy/docs/rst/HydPy-Dummy.rst +21 -0
  493. hydpy/docs/rst/HydPy-Evap.rst +26 -0
  494. hydpy/docs/rst/HydPy-Exch.rst +36 -0
  495. hydpy/docs/rst/HydPy-G.rst +40 -0
  496. hydpy/docs/rst/HydPy-GA.rst +34 -0
  497. hydpy/docs/rst/HydPy-H.rst +24 -0
  498. hydpy/docs/rst/HydPy-KinW.rst +32 -0
  499. hydpy/docs/rst/HydPy-L.rst +42 -0
  500. hydpy/docs/rst/HydPy-Meteo.rst +28 -0
  501. hydpy/docs/rst/HydPy-Musk.rst +21 -0
  502. hydpy/docs/rst/HydPy-Rconc.rst +17 -0
  503. hydpy/docs/rst/HydPy-SW1D.rst +49 -0
  504. hydpy/docs/rst/HydPy-Test.rst +19 -0
  505. hydpy/docs/rst/HydPy-W.rst +20 -0
  506. hydpy/docs/rst/HydPy-WHMod.rst +19 -0
  507. hydpy/docs/rst/HydPy-WQ.rst +20 -0
  508. hydpy/docs/rst/__init__.py +0 -0
  509. hydpy/docs/rst/additional_repositories.rst +40 -0
  510. hydpy/docs/rst/auxiliaries.rst +31 -0
  511. hydpy/docs/rst/continuous_integration.rst +75 -0
  512. hydpy/docs/rst/core.rst +75 -0
  513. hydpy/docs/rst/cythons.rst +47 -0
  514. hydpy/docs/rst/definitions.rst +506 -0
  515. hydpy/docs/rst/developer_guide.rst +54 -0
  516. hydpy/docs/rst/example_projects.rst +40 -0
  517. hydpy/docs/rst/execution.rst +22 -0
  518. hydpy/docs/rst/framework_tools.rst +56 -0
  519. hydpy/docs/rst/how_to_read_the_reference_manual.rst +156 -0
  520. hydpy/docs/rst/hydpydependencies.rst +55 -0
  521. hydpy/docs/rst/index.rst +125 -0
  522. hydpy/docs/rst/installation.rst +155 -0
  523. hydpy/docs/rst/model_families.rst +79 -0
  524. hydpy/docs/rst/model_overview.rst +291 -0
  525. hydpy/docs/rst/modelimports.rst +10 -0
  526. hydpy/docs/rst/options.rst +119 -0
  527. hydpy/docs/rst/programming_style.rst +572 -0
  528. hydpy/docs/rst/project_structure.rst +520 -0
  529. hydpy/docs/rst/quickstart.rst +304 -0
  530. hydpy/docs/rst/reference_manual.rst +29 -0
  531. hydpy/docs/rst/required_tools.rst +50 -0
  532. hydpy/docs/rst/simulation.rst +514 -0
  533. hydpy/docs/rst/submodel_interfaces.rst +32 -0
  534. hydpy/docs/rst/tests_and_documentation.rst +85 -0
  535. hydpy/docs/rst/user_guide.rst +38 -0
  536. hydpy/docs/rst/version_control.rst +116 -0
  537. hydpy/docs/rst/zbibliography.rst +8 -0
  538. hydpy/docs/sphinx/__init__.py +0 -0
  539. hydpy/docs/sphinx/_themes/basic_hydpy/changes/frameset.html +11 -0
  540. hydpy/docs/sphinx/_themes/basic_hydpy/changes/rstsource.html +15 -0
  541. hydpy/docs/sphinx/_themes/basic_hydpy/changes/versionchanges.html +33 -0
  542. hydpy/docs/sphinx/_themes/basic_hydpy/defindex.html +35 -0
  543. hydpy/docs/sphinx/_themes/basic_hydpy/domainindex.html +56 -0
  544. hydpy/docs/sphinx/_themes/basic_hydpy/genindex-single.html +63 -0
  545. hydpy/docs/sphinx/_themes/basic_hydpy/genindex-split.html +41 -0
  546. hydpy/docs/sphinx/_themes/basic_hydpy/genindex.html +76 -0
  547. hydpy/docs/sphinx/_themes/basic_hydpy/globaltoc.html +11 -0
  548. hydpy/docs/sphinx/_themes/basic_hydpy/layout.html +221 -0
  549. hydpy/docs/sphinx/_themes/basic_hydpy/localtoc.html +15 -0
  550. hydpy/docs/sphinx/_themes/basic_hydpy/opensearch.xml +13 -0
  551. hydpy/docs/sphinx/_themes/basic_hydpy/page.html +13 -0
  552. hydpy/docs/sphinx/_themes/basic_hydpy/relations.html +23 -0
  553. hydpy/docs/sphinx/_themes/basic_hydpy/search.html +65 -0
  554. hydpy/docs/sphinx/_themes/basic_hydpy/searchbox.html +21 -0
  555. hydpy/docs/sphinx/_themes/basic_hydpy/searchfield.html +23 -0
  556. hydpy/docs/sphinx/_themes/basic_hydpy/sourcelink.html +18 -0
  557. hydpy/docs/sphinx/_themes/basic_hydpy/static/basic.css_t +925 -0
  558. hydpy/docs/sphinx/_themes/basic_hydpy/static/doctools.js +156 -0
  559. hydpy/docs/sphinx/_themes/basic_hydpy/static/documentation_options.js_t +13 -0
  560. hydpy/docs/sphinx/_themes/basic_hydpy/static/file.png +0 -0
  561. hydpy/docs/sphinx/_themes/basic_hydpy/static/language_data.js_t +26 -0
  562. hydpy/docs/sphinx/_themes/basic_hydpy/static/minus.png +0 -0
  563. hydpy/docs/sphinx/_themes/basic_hydpy/static/plus.png +0 -0
  564. hydpy/docs/sphinx/_themes/basic_hydpy/static/searchtools.js +574 -0
  565. hydpy/docs/sphinx/_themes/basic_hydpy/static/sphinx_highlight.js +154 -0
  566. hydpy/docs/sphinx/_themes/basic_hydpy/theme.conf +16 -0
  567. hydpy/docs/sphinx/_themes/classic_hydpy/layout.html +23 -0
  568. hydpy/docs/sphinx/_themes/classic_hydpy/static/classic.css_t +358 -0
  569. hydpy/docs/sphinx/_themes/classic_hydpy/static/sidebar.js_t +72 -0
  570. hydpy/docs/sphinx/_themes/classic_hydpy/theme.conf +32 -0
  571. hydpy/docs/sphinx/conf.py +398 -0
  572. hydpy/docs/sphinx/defaultlinks_extension.py +36 -0
  573. hydpy/docs/sphinx/integrationtest_extension.py +104 -0
  574. hydpy/docs/sphinx/projectstructure_extension.py +58 -0
  575. hydpy/docs/sphinx/submodelgraph_extension.py +53 -0
  576. hydpy/exe/__init__.py +0 -0
  577. hydpy/exe/commandtools.py +651 -0
  578. hydpy/exe/hyd.py +277 -0
  579. hydpy/exe/modelimports.py +41 -0
  580. hydpy/exe/replacetools.py +216 -0
  581. hydpy/exe/servertools.py +2348 -0
  582. hydpy/exe/xmltools.py +3280 -0
  583. hydpy/interfaces/__init__.py +0 -0
  584. hydpy/interfaces/aetinterfaces.py +94 -0
  585. hydpy/interfaces/dischargeinterfaces.py +45 -0
  586. hydpy/interfaces/petinterfaces.py +117 -0
  587. hydpy/interfaces/precipinterfaces.py +42 -0
  588. hydpy/interfaces/radiationinterfaces.py +79 -0
  589. hydpy/interfaces/rconcinterfaces.py +30 -0
  590. hydpy/interfaces/routinginterfaces.py +324 -0
  591. hydpy/interfaces/soilinterfaces.py +96 -0
  592. hydpy/interfaces/stateinterfaces.py +98 -0
  593. hydpy/interfaces/tempinterfaces.py +46 -0
  594. hydpy/models/__init__.py +0 -0
  595. hydpy/models/arma/__init__.py +14 -0
  596. hydpy/models/arma/arma_control.py +383 -0
  597. hydpy/models/arma/arma_derived.py +204 -0
  598. hydpy/models/arma/arma_fluxes.py +41 -0
  599. hydpy/models/arma/arma_inlets.py +11 -0
  600. hydpy/models/arma/arma_logs.py +19 -0
  601. hydpy/models/arma/arma_model.py +461 -0
  602. hydpy/models/arma/arma_outlets.py +11 -0
  603. hydpy/models/arma_rimorido.py +381 -0
  604. hydpy/models/conv/__init__.py +12 -0
  605. hydpy/models/conv/conv_control.py +303 -0
  606. hydpy/models/conv/conv_derived.py +271 -0
  607. hydpy/models/conv/conv_fluxes.py +54 -0
  608. hydpy/models/conv/conv_inlets.py +11 -0
  609. hydpy/models/conv/conv_model.py +687 -0
  610. hydpy/models/conv/conv_outlets.py +11 -0
  611. hydpy/models/conv_idw.py +120 -0
  612. hydpy/models/conv_idw_ed.py +184 -0
  613. hydpy/models/conv_nn.py +112 -0
  614. hydpy/models/dam/__init__.py +16 -0
  615. hydpy/models/dam/dam_aides.py +17 -0
  616. hydpy/models/dam/dam_control.py +346 -0
  617. hydpy/models/dam/dam_derived.py +559 -0
  618. hydpy/models/dam/dam_factors.py +46 -0
  619. hydpy/models/dam/dam_fluxes.py +179 -0
  620. hydpy/models/dam/dam_inlets.py +29 -0
  621. hydpy/models/dam/dam_logs.py +52 -0
  622. hydpy/models/dam/dam_model.py +5011 -0
  623. hydpy/models/dam/dam_outlets.py +23 -0
  624. hydpy/models/dam/dam_receivers.py +41 -0
  625. hydpy/models/dam/dam_senders.py +23 -0
  626. hydpy/models/dam/dam_solver.py +75 -0
  627. hydpy/models/dam/dam_states.py +11 -0
  628. hydpy/models/dam_llake.py +499 -0
  629. hydpy/models/dam_lreservoir.py +548 -0
  630. hydpy/models/dam_lretention.py +343 -0
  631. hydpy/models/dam_pump.py +278 -0
  632. hydpy/models/dam_pump_sluice.py +339 -0
  633. hydpy/models/dam_sluice.py +319 -0
  634. hydpy/models/dam_v001.py +1127 -0
  635. hydpy/models/dam_v002.py +381 -0
  636. hydpy/models/dam_v003.py +422 -0
  637. hydpy/models/dam_v004.py +665 -0
  638. hydpy/models/dam_v005.py +479 -0
  639. hydpy/models/dummy/__init__.py +15 -0
  640. hydpy/models/dummy/dummy_control.py +22 -0
  641. hydpy/models/dummy/dummy_fluxes.py +11 -0
  642. hydpy/models/dummy/dummy_inlets.py +11 -0
  643. hydpy/models/dummy/dummy_inputs.py +41 -0
  644. hydpy/models/dummy/dummy_model.py +196 -0
  645. hydpy/models/dummy/dummy_outlets.py +11 -0
  646. hydpy/models/dummy_interceptedwater.py +85 -0
  647. hydpy/models/dummy_node2node.py +83 -0
  648. hydpy/models/dummy_snowalbedo.py +84 -0
  649. hydpy/models/dummy_snowcover.py +84 -0
  650. hydpy/models/dummy_snowycanopy.py +86 -0
  651. hydpy/models/dummy_soilwater.py +85 -0
  652. hydpy/models/evap/__init__.py +13 -0
  653. hydpy/models/evap/evap_control.py +354 -0
  654. hydpy/models/evap/evap_derived.py +236 -0
  655. hydpy/models/evap/evap_factors.py +188 -0
  656. hydpy/models/evap/evap_fixed.py +68 -0
  657. hydpy/models/evap/evap_fluxes.py +150 -0
  658. hydpy/models/evap/evap_inputs.py +54 -0
  659. hydpy/models/evap/evap_logs.py +91 -0
  660. hydpy/models/evap/evap_masks.py +48 -0
  661. hydpy/models/evap/evap_model.py +9170 -0
  662. hydpy/models/evap/evap_parameters.py +149 -0
  663. hydpy/models/evap/evap_sequences.py +32 -0
  664. hydpy/models/evap/evap_states.py +18 -0
  665. hydpy/models/evap_aet_hbv96.py +372 -0
  666. hydpy/models/evap_aet_minhas.py +331 -0
  667. hydpy/models/evap_aet_morsim.py +627 -0
  668. hydpy/models/evap_pet_ambav1.py +483 -0
  669. hydpy/models/evap_pet_hbv96.py +147 -0
  670. hydpy/models/evap_pet_m.py +94 -0
  671. hydpy/models/evap_pet_mlc.py +107 -0
  672. hydpy/models/evap_ret_fao56.py +265 -0
  673. hydpy/models/evap_ret_io.py +74 -0
  674. hydpy/models/evap_ret_tw2002.py +165 -0
  675. hydpy/models/exch/__init__.py +14 -0
  676. hydpy/models/exch/exch_control.py +262 -0
  677. hydpy/models/exch/exch_derived.py +36 -0
  678. hydpy/models/exch/exch_factors.py +26 -0
  679. hydpy/models/exch/exch_fluxes.py +48 -0
  680. hydpy/models/exch/exch_inlets.py +11 -0
  681. hydpy/models/exch/exch_logs.py +12 -0
  682. hydpy/models/exch/exch_model.py +451 -0
  683. hydpy/models/exch/exch_outlets.py +17 -0
  684. hydpy/models/exch/exch_receivers.py +17 -0
  685. hydpy/models/exch_branch_hbv96.py +186 -0
  686. hydpy/models/exch_waterlevel.py +73 -0
  687. hydpy/models/exch_weir_hbv96.py +609 -0
  688. hydpy/models/ga/__init__.py +14 -0
  689. hydpy/models/ga/ga_aides.py +17 -0
  690. hydpy/models/ga/ga_control.py +208 -0
  691. hydpy/models/ga/ga_derived.py +77 -0
  692. hydpy/models/ga/ga_fluxes.py +83 -0
  693. hydpy/models/ga/ga_inputs.py +26 -0
  694. hydpy/models/ga/ga_logs.py +17 -0
  695. hydpy/models/ga/ga_model.py +2952 -0
  696. hydpy/models/ga/ga_states.py +87 -0
  697. hydpy/models/ga_garto.py +1001 -0
  698. hydpy/models/ga_garto_submodel1.py +79 -0
  699. hydpy/models/gland/__init__.py +14 -0
  700. hydpy/models/gland/gland_control.py +90 -0
  701. hydpy/models/gland/gland_derived.py +113 -0
  702. hydpy/models/gland/gland_fluxes.py +137 -0
  703. hydpy/models/gland/gland_inputs.py +12 -0
  704. hydpy/models/gland/gland_model.py +1439 -0
  705. hydpy/models/gland/gland_outlets.py +11 -0
  706. hydpy/models/gland/gland_states.py +90 -0
  707. hydpy/models/gland_gr4.py +501 -0
  708. hydpy/models/gland_gr5.py +463 -0
  709. hydpy/models/gland_gr6.py +487 -0
  710. hydpy/models/hland/__init__.py +20 -0
  711. hydpy/models/hland/hland_aides.py +19 -0
  712. hydpy/models/hland/hland_constants.py +37 -0
  713. hydpy/models/hland/hland_control.py +1530 -0
  714. hydpy/models/hland/hland_derived.py +683 -0
  715. hydpy/models/hland/hland_factors.py +57 -0
  716. hydpy/models/hland/hland_fixed.py +42 -0
  717. hydpy/models/hland/hland_fluxes.py +279 -0
  718. hydpy/models/hland/hland_inputs.py +19 -0
  719. hydpy/models/hland/hland_masks.py +107 -0
  720. hydpy/models/hland/hland_model.py +4664 -0
  721. hydpy/models/hland/hland_outlets.py +11 -0
  722. hydpy/models/hland/hland_parameters.py +227 -0
  723. hydpy/models/hland/hland_sequences.py +382 -0
  724. hydpy/models/hland/hland_states.py +236 -0
  725. hydpy/models/hland_96.py +1812 -0
  726. hydpy/models/hland_96c.py +1196 -0
  727. hydpy/models/hland_96p.py +1204 -0
  728. hydpy/models/kinw/__init__.py +18 -0
  729. hydpy/models/kinw/kinw_aides.py +306 -0
  730. hydpy/models/kinw/kinw_control.py +270 -0
  731. hydpy/models/kinw/kinw_derived.py +197 -0
  732. hydpy/models/kinw/kinw_fixed.py +33 -0
  733. hydpy/models/kinw/kinw_fluxes.py +37 -0
  734. hydpy/models/kinw/kinw_inlets.py +11 -0
  735. hydpy/models/kinw/kinw_model.py +3026 -0
  736. hydpy/models/kinw/kinw_outlets.py +11 -0
  737. hydpy/models/kinw/kinw_solver.py +45 -0
  738. hydpy/models/kinw/kinw_states.py +17 -0
  739. hydpy/models/kinw_williams.py +1299 -0
  740. hydpy/models/kinw_williams_ext.py +768 -0
  741. hydpy/models/lland/__init__.py +42 -0
  742. hydpy/models/lland/lland_aides.py +38 -0
  743. hydpy/models/lland/lland_constants.py +88 -0
  744. hydpy/models/lland/lland_control.py +1329 -0
  745. hydpy/models/lland/lland_derived.py +380 -0
  746. hydpy/models/lland/lland_factors.py +18 -0
  747. hydpy/models/lland/lland_fixed.py +128 -0
  748. hydpy/models/lland/lland_fluxes.py +626 -0
  749. hydpy/models/lland/lland_inlets.py +12 -0
  750. hydpy/models/lland/lland_inputs.py +33 -0
  751. hydpy/models/lland/lland_logs.py +17 -0
  752. hydpy/models/lland/lland_masks.py +212 -0
  753. hydpy/models/lland/lland_model.py +7690 -0
  754. hydpy/models/lland/lland_outlets.py +12 -0
  755. hydpy/models/lland/lland_parameters.py +195 -0
  756. hydpy/models/lland/lland_sequences.py +67 -0
  757. hydpy/models/lland/lland_states.py +280 -0
  758. hydpy/models/lland_dd.py +2270 -0
  759. hydpy/models/lland_knauf.py +2156 -0
  760. hydpy/models/lland_knauf_ic.py +1920 -0
  761. hydpy/models/meteo/__init__.py +12 -0
  762. hydpy/models/meteo/meteo_control.py +154 -0
  763. hydpy/models/meteo/meteo_derived.py +159 -0
  764. hydpy/models/meteo/meteo_factors.py +88 -0
  765. hydpy/models/meteo/meteo_fixed.py +19 -0
  766. hydpy/models/meteo/meteo_fluxes.py +46 -0
  767. hydpy/models/meteo/meteo_inputs.py +47 -0
  768. hydpy/models/meteo/meteo_logs.py +30 -0
  769. hydpy/models/meteo/meteo_model.py +2904 -0
  770. hydpy/models/meteo/meteo_parameters.py +14 -0
  771. hydpy/models/meteo/meteo_sequences.py +22 -0
  772. hydpy/models/meteo_clear_glob_io.py +77 -0
  773. hydpy/models/meteo_glob_fao56.py +217 -0
  774. hydpy/models/meteo_glob_io.py +68 -0
  775. hydpy/models/meteo_glob_morsim.py +444 -0
  776. hydpy/models/meteo_precip_io.py +76 -0
  777. hydpy/models/meteo_psun_sun_glob_io.py +83 -0
  778. hydpy/models/meteo_sun_fao56.py +188 -0
  779. hydpy/models/meteo_sun_morsim.py +466 -0
  780. hydpy/models/meteo_temp_io.py +76 -0
  781. hydpy/models/musk/__init__.py +15 -0
  782. hydpy/models/musk/musk_control.py +328 -0
  783. hydpy/models/musk/musk_derived.py +32 -0
  784. hydpy/models/musk/musk_factors.py +53 -0
  785. hydpy/models/musk/musk_fluxes.py +24 -0
  786. hydpy/models/musk/musk_inlets.py +11 -0
  787. hydpy/models/musk/musk_masks.py +15 -0
  788. hydpy/models/musk/musk_model.py +838 -0
  789. hydpy/models/musk/musk_outlets.py +11 -0
  790. hydpy/models/musk/musk_sequences.py +88 -0
  791. hydpy/models/musk/musk_solver.py +68 -0
  792. hydpy/models/musk/musk_states.py +64 -0
  793. hydpy/models/musk_classic.py +228 -0
  794. hydpy/models/musk_mct.py +1247 -0
  795. hydpy/models/rconc/__init__.py +12 -0
  796. hydpy/models/rconc/rconc_control.py +473 -0
  797. hydpy/models/rconc/rconc_derived.py +76 -0
  798. hydpy/models/rconc/rconc_fluxes.py +19 -0
  799. hydpy/models/rconc/rconc_logs.py +74 -0
  800. hydpy/models/rconc/rconc_model.py +260 -0
  801. hydpy/models/rconc/rconc_states.py +11 -0
  802. hydpy/models/rconc_nash.py +48 -0
  803. hydpy/models/rconc_uh.py +53 -0
  804. hydpy/models/sw1d/__init__.py +17 -0
  805. hydpy/models/sw1d/sw1d_control.py +356 -0
  806. hydpy/models/sw1d/sw1d_derived.py +85 -0
  807. hydpy/models/sw1d/sw1d_factors.py +78 -0
  808. hydpy/models/sw1d/sw1d_fixed.py +12 -0
  809. hydpy/models/sw1d/sw1d_fluxes.py +55 -0
  810. hydpy/models/sw1d/sw1d_inlets.py +17 -0
  811. hydpy/models/sw1d/sw1d_model.py +3385 -0
  812. hydpy/models/sw1d/sw1d_outlets.py +11 -0
  813. hydpy/models/sw1d/sw1d_receivers.py +11 -0
  814. hydpy/models/sw1d/sw1d_senders.py +11 -0
  815. hydpy/models/sw1d/sw1d_states.py +23 -0
  816. hydpy/models/sw1d_channel.py +2051 -0
  817. hydpy/models/sw1d_gate_out.py +599 -0
  818. hydpy/models/sw1d_lias.py +105 -0
  819. hydpy/models/sw1d_lias_sluice.py +531 -0
  820. hydpy/models/sw1d_network.py +1219 -0
  821. hydpy/models/sw1d_pump.py +448 -0
  822. hydpy/models/sw1d_q_in.py +79 -0
  823. hydpy/models/sw1d_q_out.py +81 -0
  824. hydpy/models/sw1d_storage.py +78 -0
  825. hydpy/models/sw1d_weir_out.py +75 -0
  826. hydpy/models/test/__init__.py +14 -0
  827. hydpy/models/test/test_control.py +28 -0
  828. hydpy/models/test/test_fluxes.py +17 -0
  829. hydpy/models/test/test_model.py +201 -0
  830. hydpy/models/test/test_solver.py +48 -0
  831. hydpy/models/test/test_states.py +17 -0
  832. hydpy/models/test_discontinous.py +46 -0
  833. hydpy/models/test_stiff0d.py +47 -0
  834. hydpy/models/test_stiff1d.py +42 -0
  835. hydpy/models/whmod/__init__.py +21 -0
  836. hydpy/models/whmod/whmod_constants.py +77 -0
  837. hydpy/models/whmod/whmod_control.py +333 -0
  838. hydpy/models/whmod/whmod_derived.py +210 -0
  839. hydpy/models/whmod/whmod_factors.py +9 -0
  840. hydpy/models/whmod/whmod_fluxes.py +105 -0
  841. hydpy/models/whmod/whmod_inputs.py +15 -0
  842. hydpy/models/whmod/whmod_masks.py +178 -0
  843. hydpy/models/whmod/whmod_model.py +2091 -0
  844. hydpy/models/whmod/whmod_parameters.py +155 -0
  845. hydpy/models/whmod/whmod_sequences.py +193 -0
  846. hydpy/models/whmod/whmod_states.py +73 -0
  847. hydpy/models/whmod_rural.py +794 -0
  848. hydpy/models/whmod_urban.py +1011 -0
  849. hydpy/models/wland/__init__.py +43 -0
  850. hydpy/models/wland/wland_aides.py +55 -0
  851. hydpy/models/wland/wland_constants.py +103 -0
  852. hydpy/models/wland/wland_control.py +508 -0
  853. hydpy/models/wland/wland_derived.py +330 -0
  854. hydpy/models/wland/wland_factors.py +11 -0
  855. hydpy/models/wland/wland_fixed.py +12 -0
  856. hydpy/models/wland/wland_fluxes.py +166 -0
  857. hydpy/models/wland/wland_inputs.py +33 -0
  858. hydpy/models/wland/wland_masks.py +54 -0
  859. hydpy/models/wland/wland_model.py +3755 -0
  860. hydpy/models/wland/wland_outlets.py +11 -0
  861. hydpy/models/wland/wland_parameters.py +214 -0
  862. hydpy/models/wland/wland_sequences.py +108 -0
  863. hydpy/models/wland/wland_solver.py +45 -0
  864. hydpy/models/wland/wland_states.py +56 -0
  865. hydpy/models/wland_gd.py +888 -0
  866. hydpy/models/wland_wag.py +1244 -0
  867. hydpy/models/wq/__init__.py +14 -0
  868. hydpy/models/wq/wq_control.py +117 -0
  869. hydpy/models/wq/wq_derived.py +182 -0
  870. hydpy/models/wq/wq_factors.py +79 -0
  871. hydpy/models/wq/wq_fluxes.py +17 -0
  872. hydpy/models/wq/wq_model.py +1889 -0
  873. hydpy/models/wq_trapeze.py +168 -0
  874. hydpy/models/wq_trapeze_strickler.py +101 -0
  875. hydpy/models/wq_walrus.py +57 -0
  876. hydpy/py.typed +0 -0
  877. hydpy/tests/.coveragerc +22 -0
  878. hydpy/tests/__init__.py +0 -0
  879. hydpy/tests/check_consistency.py +32 -0
  880. hydpy/tests/hydpydoctestcustomize.pth +1 -0
  881. hydpy/tests/hydpydoctestcustomize.py +15 -0
  882. hydpy/tests/iotesting/__init__.py +0 -0
  883. hydpy/tests/run_doctests.py +233 -0
  884. hydpy-6.2.dev1.data/scripts/hyd.py +277 -0
  885. hydpy-6.2.dev1.dist-info/LICENSE +165 -0
  886. hydpy-6.2.dev1.dist-info/METADATA +163 -0
  887. hydpy-6.2.dev1.dist-info/RECORD +890 -0
  888. hydpy-6.2.dev1.dist-info/WHEEL +5 -0
  889. hydpy-6.2.dev1.dist-info/licenses_hydpy_installer.txt +42 -0
  890. hydpy-6.2.dev1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,463 @@
1
+ # pylint: disable=line-too-long, unused-wildcard-import
2
+ """
3
+ The GR5 model (modèle du Génie Rural à 5 parametres Journalier) is a daily lumped
4
+ five-parameter rainfall-runoff model and belongs to the family of soil moisture
5
+ accounting models. It was initially published by :cite:t:`ref-Moine2008` and is a
6
+ modification of GR4J. Our implementation, |gland_gr5|, follows the one of the R
7
+ package airGR :cite:p:`ref-airGR2017` but with a few extensions that we explain in the
8
+ documentation of |gland_gr4|, which implements and extends GR4J.
9
+
10
+ The main differences between GR5 and GR4 are that GR5 only applies a single Unit
11
+ Hydrograph and uses a fifth parameter, `X5`, to allow for a more flexible configuration
12
+ of the groundwater exchange term. In |gland_gr5|, one can choose between different
13
+ types of runoff concentration submodels, as explained for |gland_gr4|.
14
+
15
+ The following figure :cite:p:`ref-airGRManual` shows the general structure of
16
+ |gland_gr5|:
17
+
18
+ .. image:: HydPy-G-GR5.png
19
+
20
+ Integration tests
21
+ =================
22
+
23
+ .. how_to_understand_integration_tests::
24
+
25
+ The settings of the following tests are similar to the ones of application model
26
+ |gland_gr4|. Hence, comparing the test results gives a good impression of the
27
+ functional differences between both models.
28
+
29
+ The following settings are identical:
30
+
31
+ >>> from hydpy import pub
32
+ >>> pub.timegrids = "1990-01-01", "1990-02-20", "1d"
33
+
34
+ >>> from hydpy.models.gland_gr5 import *
35
+ >>> parameterstep("1d")
36
+ >>> from hydpy import Element
37
+ >>> land = Element("land", outlets="outlet")
38
+ >>> land.model = model
39
+
40
+ >>> area(360.0)
41
+
42
+ >>> with model.add_petmodel_v1("evap_ret_io"):
43
+ ... evapotranspirationfactor(1.0)
44
+
45
+ >>> from hydpy import IntegrationTest
46
+ >>> test = IntegrationTest(land)
47
+ >>> test.plotting_options.axis1 = inputs.p, fluxes.e, fluxes.qh
48
+ >>> test.dateformat = "%d.%m."
49
+
50
+ >>> inputs.p.series = (
51
+ ... 0.0, 9.3, 3.2, 7.3, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 2.9, 0.2, 0.0, 0.0, 0.0, 3.3,
52
+ ... 4.6, 0.8, 1.8, 1.1, 0.0, 5.0, 13.1, 14.6, 4.0, 0.8, 0.1, 3.3, 7.7, 10.3, 3.7,
53
+ ... 15.3, 3.2, 2.7, 2.2, 8.0, 14.3, 6.3, 0.0, 5.9, 9.2, 6.1, 0.1, 0.0, 2.8, 10.6,
54
+ ... 8.8, 7.2, 4.9, 1.8
55
+ ... )
56
+ >>> model.petmodel.sequences.inputs.referenceevapotranspiration.series = (
57
+ ... 0.3, 0.4, 0.4, 0.3, 0.1, 0.1, 0.1, 0.2, 0.2, 0.3, 0.3, 0.2, 0.2, 0.2, 0.2, 0.3,
58
+ ... 0.3, 0.2, 0.2, 0.3, 0.2, 0.2, 0.3, 0.6, 0.4, 0.4, 0.4, 0.5, 0.4, 0.3, 0.3, 0.5,
59
+ ... 0.5, 0.3, 0.3, 0.4, 0.4, 0.3, 0.2, 0.1, 0.1, 0.0, 0.1, 0.1, 0.0, 0.2, 0.9, 0.9,
60
+ ... 0.5, 0.9
61
+ ... )
62
+
63
+ .. _gland_gr5_base_example:
64
+
65
+ base example
66
+ ____________
67
+
68
+ The following parameter values do not agree with the ones of the
69
+ :ref:`gland_gr4_base_example` on application model |gland_gr4| but with the ones of
70
+ the example given by :cite:t:`ref-airGRManual`:
71
+
72
+ >>> imax(0.0)
73
+ >>> x1(245.918)
74
+ >>> x2(1.027)
75
+ >>> x3(90.017)
76
+ >>> x5(0.434)
77
+
78
+ >>> with model.add_rconcmodel_v1("rconc_uh"):
79
+ ... uh("gr_uh2", x4=2.198)
80
+
81
+ >>> test.inits = (
82
+ ... (states.i, 0.0),
83
+ ... (states.s, 0.3 * x1),
84
+ ... (states.r, 0.5 * x3),
85
+ ... (model.rconcmodel.sequences.logs.quh, 0.0),
86
+ ... )
87
+
88
+ The following simulation results agree with those of the GR5J airGR implementation:
89
+
90
+ .. integration-test::
91
+
92
+ >>> conditions = test("gland_gr5_base_example", get_conditions="1990-01-01")
93
+ | date | p | e | en | pn | ps | ei | es | ae | pr | q10 | perc | q9 | q1 | fd | fr | qr | qd | qh | qv | i | s | r | outlet |
94
+ ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
95
+ | 01.01. | 0.0 | 0.3 | 0.3 | 0.0 | 0.0 | 0.0 | 0.152869 | 0.152869 | 0.005768 | 0.000403 | 0.005768 | 0.000362 | 0.00004 | 0.067782 | 0.067782 | 0.682 | 0.067822 | 0.749822 | 3.124258 | 0.0 | 73.616763 | 44.394645 | 3.124258 |
96
+ | 02.01. | 9.3 | 0.4 | 0.0 | 8.9 | 8.01214 | 0.4 | 0.0 | 0.4 | 0.897523 | 0.064529 | 0.009664 | 0.058076 | 0.006453 | 0.060779 | 0.060779 | 0.641622 | 0.067231 | 0.708854 | 2.953558 | 0.0 | 81.619239 | 43.871877 | 2.953558 |
97
+ | 03.01. | 3.2 | 0.4 | 0.0 | 2.8 | 2.482079 | 0.4 | 0.0 | 0.4 | 0.329139 | 0.317308 | 0.011218 | 0.285578 | 0.031731 | 0.054814 | 0.054814 | 0.620795 | 0.086545 | 0.707341 | 2.947252 | 0.0 | 84.0901 | 43.591473 | 2.947252 |
98
+ | 04.01. | 7.3 | 0.3 | 0.0 | 7.0 | 6.120298 | 0.3 | 0.0 | 0.3 | 0.895629 | 0.569242 | 0.015927 | 0.512318 | 0.056924 | 0.051615 | 0.051615 | 0.616923 | 0.108539 | 0.725463 | 3.022761 | 0.0 | 90.194471 | 43.538483 | 3.022761 |
99
+ | 05.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.059886 | 0.059886 | 0.01586 | 0.576643 | 0.01586 | 0.518979 | 0.057664 | 0.051011 | 0.051011 | 0.613741 | 0.108675 | 0.722416 | 3.010067 | 0.0 | 90.118724 | 43.494731 | 3.010067 |
100
+ | 06.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.059847 | 0.059847 | 0.015794 | 0.461073 | 0.015794 | 0.414966 | 0.046107 | 0.050511 | 0.050511 | 0.603772 | 0.096619 | 0.700391 | 2.918296 | 0.0 | 90.043083 | 43.356436 | 2.918296 |
101
+ | 07.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.059808 | 0.059808 | 0.015728 | 0.153338 | 0.015728 | 0.138004 | 0.015334 | 0.048934 | 0.048934 | 0.576415 | 0.064267 | 0.640683 | 2.669511 | 0.0 | 89.967547 | 42.966959 | 2.669511 |
102
+ | 08.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.119507 | 0.119507 | 0.01561 | 0.021831 | 0.01561 | 0.019648 | 0.002183 | 0.04449 | 0.04449 | 0.544119 | 0.046673 | 0.590792 | 2.461632 | 0.0 | 89.83243 | 42.486978 | 2.461632 |
103
+ | 09.01. | 0.1 | 0.2 | 0.1 | 0.0 | 0.0 | 0.1 | 0.059699 | 0.159699 | 0.015545 | 0.015688 | 0.015545 | 0.014119 | 0.001569 | 0.039014 | 0.039014 | 0.514498 | 0.040583 | 0.55508 | 2.312835 | 0.0 | 89.757186 | 42.025613 | 2.312835 |
104
+ | 10.01. | 0.2 | 0.3 | 0.1 | 0.0 | 0.0 | 0.2 | 0.059661 | 0.259661 | 0.01548 | 0.015599 | 0.01548 | 0.014039 | 0.00156 | 0.03375 | 0.03375 | 0.487516 | 0.03531 | 0.522826 | 2.178444 | 0.0 | 89.682045 | 41.585887 | 2.178444 |
105
+ | 11.01. | 2.9 | 0.3 | 0.0 | 2.6 | 2.245475 | 0.3 | 0.0 | 0.3 | 0.372026 | 0.04042 | 0.017501 | 0.036378 | 0.004042 | 0.028734 | 0.028734 | 0.464056 | 0.032776 | 0.496831 | 2.070131 | 0.0 | 91.91002 | 41.186942 | 2.070131 |
106
+ | 12.01. | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.017485 | 0.131537 | 0.017485 | 0.118384 | 0.013154 | 0.024182 | 0.024182 | 0.446796 | 0.037336 | 0.484132 | 2.017217 | 0.0 | 91.892535 | 40.882712 | 2.017217 |
107
+ | 13.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.121481 | 0.121481 | 0.017353 | 0.174702 | 0.017353 | 0.157232 | 0.01747 | 0.020711 | 0.020711 | 0.43275 | 0.038181 | 0.470931 | 1.962214 | 0.0 | 91.753702 | 40.627905 | 1.962214 |
108
+ | 14.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.121339 | 0.121339 | 0.017222 | 0.071955 | 0.017222 | 0.06476 | 0.007196 | 0.017804 | 0.017804 | 0.414973 | 0.024999 | 0.439973 | 1.833219 | 0.0 | 91.61514 | 40.295495 | 1.833219 |
109
+ | 15.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.121198 | 0.121198 | 0.017093 | 0.019756 | 0.017093 | 0.01778 | 0.001976 | 0.014012 | 0.014012 | 0.396179 | 0.015987 | 0.412166 | 1.717358 | 0.0 | 91.47685 | 39.931108 | 1.717358 |
110
+ | 16.01. | 3.3 | 0.3 | 0.0 | 3.0 | 2.573086 | 0.3 | 0.0 | 0.3 | 0.44653 | 0.047171 | 0.019616 | 0.042454 | 0.004717 | 0.009854 | 0.009854 | 0.379885 | 0.014571 | 0.394456 | 1.643566 | 0.0 | 94.03032 | 39.603532 | 1.643566 |
111
+ | 17.01. | 4.6 | 0.3 | 0.0 | 4.3 | 3.646577 | 0.3 | 0.0 | 0.3 | 0.677123 | 0.202792 | 0.0237 | 0.182513 | 0.020279 | 0.006117 | 0.006117 | 0.371051 | 0.026396 | 0.397447 | 1.656031 | 0.0 | 97.653197 | 39.42111 | 1.656031 |
112
+ | 18.01. | 0.8 | 0.2 | 0.0 | 0.6 | 0.504898 | 0.2 | 0.0 | 0.2 | 0.119391 | 0.42963 | 0.024289 | 0.386667 | 0.042963 | 0.004036 | 0.004036 | 0.371951 | 0.046999 | 0.41895 | 1.745626 | 0.0 | 98.133806 | 39.439861 | 1.745626 |
113
+ | 19.01. | 1.8 | 0.2 | 0.0 | 1.6 | 1.341711 | 0.2 | 0.0 | 0.2 | 0.284252 | 0.428366 | 0.025962 | 0.385529 | 0.042837 | 0.00425 | 0.00425 | 0.37277 | 0.047086 | 0.419856 | 1.749399 | 0.0 | 99.449555 | 39.45687 | 1.749399 |
114
+ | 20.01. | 1.1 | 0.3 | 0.0 | 0.8 | 0.668286 | 0.3 | 0.0 | 0.3 | 0.158525 | 0.263775 | 0.026811 | 0.237398 | 0.026378 | 0.004444 | 0.004444 | 0.366794 | 0.030821 | 0.397615 | 1.65673 | 0.0 | 100.09103 | 39.331918 | 1.65673 |
115
+ | 21.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.12961 | 0.12961 | 0.026602 | 0.202737 | 0.026602 | 0.182463 | 0.020274 | 0.003018 | 0.003018 | 0.358643 | 0.023292 | 0.381935 | 1.591395 | 0.0 | 99.934817 | 39.158756 | 1.591395 |
116
+ | 22.01. | 5.0 | 0.2 | 0.0 | 4.8 | 3.97529 | 0.2 | 0.0 | 0.2 | 0.856995 | 0.183471 | 0.032285 | 0.165124 | 0.018347 | 0.001043 | 0.001043 | 0.350146 | 0.01939 | 0.369535 | 1.539731 | 0.0 | 103.877822 | 38.974777 | 1.539731 |
117
+ | 23.01. | 13.1 | 0.3 | 0.0 | 12.8 | 10.280792 | 0.3 | 0.0 | 0.3 | 2.570862 | 0.496227 | 0.051654 | 0.446604 | 0.049623 | -0.001056 | -0.001056 | 0.354338 | 0.048566 | 0.402904 | 1.678766 | 0.0 | 114.106961 | 39.065987 | 1.678766 |
118
+ | 24.01. | 14.6 | 0.6 | 0.0 | 14.0 | 10.691824 | 0.6 | 0.0 | 0.6 | 3.388788 | 1.458315 | 0.080612 | 1.312483 | 0.145831 | -0.000016 | -0.000016 | 0.398649 | 0.145816 | 0.544465 | 2.268604 | 0.0 | 124.718173 | 39.979805 | 2.268604 |
119
+ | 25.01. | 4.0 | 0.4 | 0.0 | 3.6 | 2.654168 | 0.4 | 0.0 | 0.4 | 1.035093 | 2.448346 | 0.089261 | 2.203511 | 0.244835 | 0.01041 | 0.01041 | 0.494365 | 0.255244 | 0.749609 | 3.123371 | 0.0 | 127.28308 | 41.699362 | 3.123371 |
120
+ | 26.01. | 0.8 | 0.4 | 0.0 | 0.4 | 0.292596 | 0.4 | 0.0 | 0.4 | 0.197379 | 2.257582 | 0.089975 | 2.031824 | 0.225758 | 0.030028 | 0.030028 | 0.59059 | 0.255786 | 0.846376 | 3.526568 | 0.0 | 127.485702 | 43.170624 | 3.526568 |
121
+ | 27.01. | 0.1 | 0.4 | 0.3 | 0.0 | 0.0 | 0.1 | 0.230285 | 0.330285 | 0.088853 | 1.069402 | 0.088853 | 0.962462 | 0.10694 | 0.046814 | 0.046814 | 0.618589 | 0.153754 | 0.772343 | 3.218095 | 0.0 | 127.166563 | 43.561311 | 3.218095 |
122
+ | 28.01. | 3.3 | 0.5 | 0.0 | 2.8 | 2.039179 | 0.5 | 0.0 | 0.5 | 0.856684 | 0.358988 | 0.095863 | 0.323089 | 0.035899 | 0.051271 | 0.051271 | 0.602135 | 0.08717 | 0.689305 | 2.872103 | 0.0 | 129.109879 | 43.333537 | 2.872103 |
123
+ | 29.01. | 7.7 | 0.4 | 0.0 | 7.3 | 5.205195 | 0.4 | 0.0 | 0.4 | 2.211145 | 0.509828 | 0.116341 | 0.458845 | 0.050983 | 0.048672 | 0.048672 | 0.595852 | 0.099655 | 0.695507 | 2.897946 | 0.0 | 134.198734 | 43.245202 | 2.897946 |
124
+ | 30.01. | 10.3 | 0.3 | 0.0 | 10.0 | 6.865916 | 0.3 | 0.0 | 0.3 | 3.282676 | 1.343677 | 0.148592 | 1.209309 | 0.134368 | 0.047665 | 0.047665 | 0.64083 | 0.182032 | 0.822862 | 3.428592 | 0.0 | 140.916058 | 43.861346 | 3.428592 |
125
+ | 31.01. | 3.7 | 0.3 | 0.0 | 3.4 | 2.265509 | 0.3 | 0.0 | 0.3 | 1.294546 | 2.272495 | 0.160055 | 2.045246 | 0.22725 | 0.054694 | 0.054694 | 0.749345 | 0.281944 | 1.031289 | 4.297036 | 0.0 | 143.021512 | 45.211941 | 4.297036 |
126
+ | 01.02. | 15.3 | 0.5 | 0.0 | 14.8 | 9.451847 | 0.5 | 0.0 | 0.5 | 5.56716 | 2.614279 | 0.219007 | 2.352851 | 0.261428 | 0.070103 | 0.070103 | 0.890594 | 0.331531 | 1.222125 | 5.092188 | 0.0 | 152.254352 | 46.744301 | 5.092188 |
127
+ | 02.02. | 3.2 | 0.5 | 0.0 | 2.7 | 1.653735 | 0.5 | 0.0 | 0.5 | 1.27574 | 2.994368 | 0.229475 | 2.694931 | 0.299437 | 0.087586 | 0.087586 | 1.073779 | 0.387023 | 1.460802 | 6.086675 | 0.0 | 153.678612 | 48.453038 | 6.086675 |
128
+ | 03.02. | 2.7 | 0.3 | 0.0 | 2.4 | 1.453833 | 0.3 | 0.0 | 0.3 | 1.184887 | 3.193111 | 0.23872 | 2.8738 | 0.319311 | 0.107081 | 0.107081 | 1.285953 | 0.426392 | 1.712345 | 7.134771 | 0.0 | 154.893724 | 50.147966 | 7.134771 |
129
+ | 04.02. | 2.2 | 0.3 | 0.0 | 1.9 | 1.140653 | 0.3 | 0.0 | 0.3 | 1.005065 | 1.887665 | 0.245719 | 1.698899 | 0.188767 | 0.126418 | 0.126418 | 1.3513 | 0.315184 | 1.666484 | 6.943685 | 0.0 | 155.788659 | 50.621983 | 6.943685 |
130
+ | 05.02. | 8.0 | 0.4 | 0.0 | 7.6 | 4.461205 | 0.4 | 0.0 | 0.4 | 3.419425 | 1.326583 | 0.280629 | 1.193925 | 0.132658 | 0.131826 | 0.131826 | 1.34815 | 0.264484 | 1.612634 | 6.719308 | 0.0 | 159.969234 | 50.599584 | 6.719308 |
131
+ | 06.02. | 14.3 | 0.4 | 0.0 | 13.9 | 7.725949 | 0.4 | 0.0 | 0.4 | 6.525911 | 2.204856 | 0.35186 | 1.984371 | 0.220486 | 0.13157 | 0.13157 | 1.445249 | 0.352056 | 1.797305 | 7.48877 | 0.0 | 167.343323 | 51.270276 | 7.48877 |
132
+ | 07.02. | 6.3 | 0.3 | 0.0 | 6.0 | 3.168414 | 0.3 | 0.0 | 0.3 | 3.213866 | 4.028103 | 0.38228 | 3.625292 | 0.40281 | 0.139222 | 0.139222 | 1.770272 | 0.542033 | 2.312305 | 9.634604 | 0.0 | 170.129457 | 53.264518 | 9.634604 |
133
+ | 08.02. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.180959 | 0.180959 | 0.376036 | 4.50396 | 0.376036 | 4.053564 | 0.450396 | 0.161975 | 0.161975 | 2.168109 | 0.612371 | 2.780479 | 11.58533 | 0.0 | 169.572463 | 55.311948 | 11.58533 |
134
+ | 09.02. | 5.9 | 0.1 | 0.0 | 5.8 | 2.993 | 0.1 | 0.0 | 0.1 | 3.212752 | 2.802226 | 0.405752 | 2.522004 | 0.280223 | 0.185334 | 0.185334 | 2.263913 | 0.465556 | 2.729469 | 11.372788 | 0.0 | 172.15971 | 55.755373 | 11.372788 |
135
+ | 10.02. | 9.2 | 0.1 | 0.0 | 9.1 | 4.520933 | 0.1 | 0.0 | 0.1 | 5.035298 | 2.102411 | 0.456231 | 1.89217 | 0.210241 | 0.190393 | 0.190393 | 2.231358 | 0.400634 | 2.631991 | 10.96663 | 0.0 | 176.224413 | 55.606578 | 10.96663 |
136
+ | 11.02. | 6.1 | 0.0 | 0.0 | 6.1 | 2.915155 | 0.0 | 0.0 | 0.0 | 3.673541 | 3.400981 | 0.488695 | 3.060883 | 0.340098 | 0.188695 | 0.188695 | 2.418601 | 0.528793 | 2.947394 | 12.280809 | 0.0 | 178.650872 | 56.437555 | 12.280809 |
137
+ | 12.02. | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.482102 | 3.962277 | 0.482102 | 3.56605 | 0.396228 | 0.198176 | 0.198176 | 2.683026 | 0.594403 | 3.277429 | 13.655955 | 0.0 | 178.168771 | 57.518754 | 13.655955 |
138
+ | 13.02. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.0924 | 0.0924 | 0.47444 | 2.619068 | 0.47444 | 2.357162 | 0.261907 | 0.210511 | 0.210511 | 2.659586 | 0.472418 | 3.132003 | 13.050014 | 0.0 | 177.60193 | 57.426841 | 13.050014 |
139
+ | 14.02. | 2.8 | 0.0 | 0.0 | 2.8 | 1.328614 | 0.0 | 0.0 | 0.0 | 1.957252 | 1.104949 | 0.485866 | 0.994454 | 0.110495 | 0.209462 | 0.209462 | 2.376212 | 0.319957 | 2.696169 | 11.234038 | 0.0 | 178.444678 | 56.254545 | 11.234038 |
140
+ | 15.02. | 10.6 | 0.2 | 0.0 | 10.4 | 4.774677 | 0.2 | 0.0 | 0.2 | 6.17191 | 1.377418 | 0.546587 | 1.239676 | 0.137742 | 0.196088 | 0.196088 | 2.205107 | 0.333829 | 2.538937 | 10.578903 | 0.0 | 182.672769 | 55.485201 | 10.578903 |
141
+ | 16.02. | 8.8 | 0.9 | 0.0 | 7.9 | 3.457239 | 0.9 | 0.0 | 0.9 | 5.033879 | 3.303845 | 0.591118 | 2.97346 | 0.330384 | 0.18731 | 0.18731 | 2.379056 | 0.517695 | 2.896751 | 12.069796 | 0.0 | 185.53889 | 56.266915 | 12.069796 |
142
+ | 17.02. | 7.2 | 0.9 | 0.0 | 6.3 | 2.661808 | 0.9 | 0.0 | 0.9 | 4.262707 | 4.981016 | 0.624515 | 4.482914 | 0.498102 | 0.196229 | 0.196229 | 2.837811 | 0.69433 | 3.532141 | 14.717255 | 0.0 | 187.576183 | 58.108248 | 14.717255 |
143
+ | 18.02. | 4.9 | 0.5 | 0.0 | 4.4 | 1.815109 | 0.5 | 0.0 | 0.5 | 3.229276 | 4.811099 | 0.644385 | 4.32999 | 0.48111 | 0.217236 | 0.217236 | 3.217024 | 0.698346 | 3.91537 | 16.314042 | 0.0 | 188.746907 | 59.43845 | 16.314042 |
144
+ | 19.02. | 1.8 | 0.9 | 0.0 | 0.9 | 0.368785 | 0.9 | 0.0 | 0.9 | 1.170957 | 3.842725 | 0.639741 | 3.458453 | 0.384273 | 0.232413 | 0.232413 | 3.328116 | 0.616685 | 3.944801 | 16.436671 | 0.0 | 188.47595 | 59.801199 | 16.436671 |
145
+
146
+ There is no indication of an error in the water balance:
147
+
148
+ >>> from hydpy import round_
149
+ >>> round_(model.check_waterbalance(conditions))
150
+ 0.0
151
+
152
+ .. _gland_gr5_groundwater_loss:
153
+
154
+ groundwater loss
155
+ ________________
156
+
157
+ This integration test corresponds to the :ref:`gland_gr4_groundwater_loss` example on
158
+ |gland_gr4|:
159
+
160
+ >>> x2(-1.027)
161
+ >>> test.inits.s = 0.0
162
+ >>> test.inits.r = 0.0
163
+
164
+ .. integration-test::
165
+
166
+ >>> conditions = test("gland_gr5_groundwater_loss", get_conditions="1990-01-01")
167
+ | date | p | e | en | pn | ps | ei | es | ae | pr | q10 | perc | q9 | q1 | fd | fr | qr | qd | qh | qv | i | s | r | outlet |
168
+ -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
169
+ | 01.01. | 0.0 | 0.3 | 0.3 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.445718 | 0.445718 | 0.0 | 0.445718 | 0.445718 | 1.857158 | 0.0 | 0.0 | 0.445718 | 1.857158 |
170
+ | 02.01. | 9.3 | 0.4 | 0.0 | 8.9 | 8.896116 | 0.4 | 0.0 | 0.4 | 0.003884 | 0.000271 | 0.0 | 0.000244 | 0.000027 | 0.440633 | 0.440633 | 0.0 | 0.44066 | 0.44066 | 1.836083 | 0.0 | 8.896116 | 0.886595 | 1.836083 |
171
+ | 03.01. | 3.2 | 0.4 | 0.0 | 2.8 | 2.795064 | 0.4 | 0.0 | 0.4 | 0.004937 | 0.001607 | 0.000001 | 0.001446 | 0.000161 | 0.435603 | 0.435603 | 0.0 | 0.435764 | 0.435764 | 1.815682 | 0.0 | 11.691179 | 1.323644 | 1.815682 |
172
+ | 04.01. | 7.3 | 0.3 | 0.0 | 7.0 | 6.97286 | 0.3 | 0.0 | 0.3 | 0.027146 | 0.005226 | 0.000006 | 0.004703 | 0.000523 | 0.430617 | 0.430617 | 0.0 | 0.431139 | 0.431139 | 1.796413 | 0.0 | 18.664033 | 1.758964 | 1.796413 |
173
+ | 05.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.014598 | 0.014598 | 0.000006 | 0.011616 | 0.000006 | 0.010455 | 0.001162 | 0.42565 | 0.42565 | 0.0 | 0.426812 | 0.426812 | 1.778383 | 0.0 | 18.64943 | 2.195069 | 1.778383 |
174
+ | 06.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.014587 | 0.014587 | 0.000006 | 0.012852 | 0.000006 | 0.011567 | 0.001285 | 0.420675 | 0.420675 | 0.0 | 0.42196 | 0.42196 | 1.758168 | 0.0 | 18.634837 | 2.627309 | 1.758168 |
175
+ | 07.01. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.014576 | 0.014576 | 0.000006 | 0.004215 | 0.000006 | 0.003794 | 0.000422 | 0.415743 | 0.415743 | 0.000001 | 0.416165 | 0.416166 | 1.734024 | 0.0 | 18.620255 | 3.046845 | 1.734024 |
176
+ | 08.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.029118 | 0.029118 | 0.000006 | 0.000193 | 0.000006 | 0.000174 | 0.000019 | 0.410957 | 0.410957 | 0.000002 | 0.410976 | 0.410978 | 1.712408 | 0.0 | 18.591131 | 3.457974 | 1.712408 |
177
+ | 09.01. | 0.1 | 0.2 | 0.1 | 0.0 | 0.0 | 0.1 | 0.014543 | 0.114543 | 0.000006 | 0.000006 | 0.000006 | 0.000005 | 0.000001 | 0.406266 | 0.406266 | 0.000003 | 0.406267 | 0.40627 | 1.692792 | 0.0 | 18.576582 | 3.864242 | 1.692792 |
178
+ | 10.01. | 0.2 | 0.3 | 0.1 | 0.0 | 0.0 | 0.2 | 0.014532 | 0.214532 | 0.000006 | 0.000006 | 0.000006 | 0.000005 | 0.000001 | 0.401631 | 0.401631 | 0.000005 | 0.401632 | 0.401637 | 1.673488 | 0.0 | 18.562045 | 4.265873 | 1.673488 |
179
+ | 11.01. | 2.9 | 0.3 | 0.0 | 2.6 | 2.583029 | 0.3 | 0.0 | 0.3 | 0.016982 | 0.001191 | 0.000011 | 0.001072 | 0.000119 | 0.397049 | 0.397049 | 0.000008 | 0.397168 | 0.397176 | 1.654901 | 0.0 | 21.145063 | 4.663985 | 1.654901 |
180
+ | 12.01. | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.000011 | 0.005525 | 0.000011 | 0.004972 | 0.000552 | 0.392507 | 0.392507 | 0.000013 | 0.393059 | 0.393072 | 1.6378 | 0.0 | 21.145052 | 5.061452 | 1.6378 |
181
+ | 13.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.032891 | 0.032891 | 0.000011 | 0.007552 | 0.000011 | 0.006797 | 0.000755 | 0.387972 | 0.387972 | 0.000018 | 0.388727 | 0.388746 | 1.619774 | 0.0 | 21.11215 | 5.456202 | 1.619774 |
182
+ | 14.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.032842 | 0.032842 | 0.000011 | 0.002622 | 0.000011 | 0.00236 | 0.000262 | 0.383468 | 0.383468 | 0.000026 | 0.383731 | 0.383757 | 1.598986 | 0.0 | 21.079297 | 5.842004 | 1.598986 |
183
+ | 15.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.032793 | 0.032793 | 0.000011 | 0.000128 | 0.000011 | 0.000115 | 0.000013 | 0.379067 | 0.379067 | 0.000035 | 0.37908 | 0.379115 | 1.579646 | 0.0 | 21.046493 | 6.221151 | 1.579646 |
184
+ | 16.01. | 3.3 | 0.3 | 0.0 | 3.0 | 2.974773 | 0.3 | 0.0 | 0.3 | 0.025248 | 0.001773 | 0.000021 | 0.001596 | 0.000177 | 0.374741 | 0.374741 | 0.000048 | 0.374918 | 0.374966 | 1.562358 | 0.0 | 24.021245 | 6.59744 | 1.562358 |
185
+ | 17.01. | 4.6 | 0.3 | 0.0 | 4.3 | 4.251278 | 0.3 | 0.0 | 0.3 | 0.04877 | 0.011619 | 0.000048 | 0.010457 | 0.001162 | 0.370448 | 0.370448 | 0.000063 | 0.37161 | 0.371673 | 1.548638 | 0.0 | 28.272474 | 6.978282 | 1.548638 |
186
+ | 18.01. | 0.8 | 0.2 | 0.0 | 0.6 | 0.591902 | 0.2 | 0.0 | 0.2 | 0.008151 | 0.027645 | 0.000053 | 0.02488 | 0.002764 | 0.366103 | 0.366103 | 0.000083 | 0.368868 | 0.36895 | 1.537293 | 0.0 | 28.864323 | 7.369183 | 1.537293 |
187
+ | 19.01. | 1.8 | 0.2 | 0.0 | 1.6 | 1.576731 | 0.2 | 0.0 | 0.2 | 0.023339 | 0.029836 | 0.00007 | 0.026852 | 0.002984 | 0.361643 | 0.361643 | 0.000107 | 0.364627 | 0.364734 | 1.519724 | 0.0 | 30.440985 | 7.757571 | 1.519724 |
188
+ | 20.01. | 1.1 | 0.3 | 0.0 | 0.8 | 0.787422 | 0.3 | 0.0 | 0.3 | 0.012657 | 0.01977 | 0.000079 | 0.017793 | 0.001977 | 0.357212 | 0.357212 | 0.000135 | 0.359189 | 0.359325 | 1.497186 | 0.0 | 31.228327 | 8.132441 | 1.497186 |
189
+ | 21.01. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.047536 | 0.047536 | 0.000079 | 0.016081 | 0.000079 | 0.014473 | 0.001608 | 0.352935 | 0.352935 | 0.000169 | 0.354543 | 0.354712 | 1.477968 | 0.0 | 31.180713 | 8.49968 | 1.477968 |
190
+ | 22.01. | 5.0 | 0.2 | 0.0 | 4.8 | 4.710577 | 0.2 | 0.0 | 0.2 | 0.089582 | 0.01555 | 0.000159 | 0.013995 | 0.001555 | 0.348746 | 0.348746 | 0.000208 | 0.350301 | 0.350509 | 1.460453 | 0.0 | 35.891131 | 8.862213 | 1.460453 |
191
+ | 23.01. | 13.1 | 0.3 | 0.0 | 12.8 | 12.421773 | 0.3 | 0.0 | 0.3 | 0.378929 | 0.057717 | 0.000702 | 0.051945 | 0.005772 | 0.344609 | 0.344609 | 0.000259 | 0.350381 | 0.35064 | 1.461 | 0.0 | 48.312202 | 9.258508 | 1.461 |
192
+ | 24.01. | 14.6 | 0.6 | 0.0 | 14.0 | 13.296594 | 0.6 | 0.0 | 0.6 | 0.705773 | 0.212359 | 0.002367 | 0.191123 | 0.021236 | 0.340088 | 0.340088 | 0.000342 | 0.361324 | 0.361666 | 1.506943 | 0.0 | 61.606429 | 9.789377 | 1.506943 |
193
+ | 25.01. | 4.0 | 0.4 | 0.0 | 3.6 | 3.361502 | 0.4 | 0.0 | 0.4 | 0.241585 | 0.428467 | 0.003087 | 0.385621 | 0.042847 | 0.334031 | 0.334031 | 0.000488 | 0.376878 | 0.377366 | 1.572359 | 0.0 | 64.964845 | 10.508541 | 1.572359 |
194
+ | 26.01. | 0.8 | 0.4 | 0.0 | 0.4 | 0.371925 | 0.4 | 0.0 | 0.4 | 0.03125 | 0.453258 | 0.003175 | 0.407932 | 0.045326 | 0.325827 | 0.325827 | 0.000684 | 0.371152 | 0.371836 | 1.549317 | 0.0 | 65.333594 | 11.241616 | 1.549317 |
195
+ | 27.01. | 0.1 | 0.4 | 0.3 | 0.0 | 0.0 | 0.1 | 0.138105 | 0.238105 | 0.003141 | 0.228924 | 0.003141 | 0.206032 | 0.022892 | 0.317463 | 0.317463 | 0.000858 | 0.340355 | 0.341213 | 1.421722 | 0.0 | 65.192348 | 11.764252 | 1.421722 |
196
+ | 28.01. | 3.3 | 0.5 | 0.0 | 2.8 | 2.595279 | 0.5 | 0.0 | 0.5 | 0.208538 | 0.071495 | 0.003817 | 0.064345 | 0.007149 | 0.3115 | 0.3115 | 0.001004 | 0.31865 | 0.319653 | 1.331889 | 0.0 | 67.78381 | 12.139093 | 1.331889 |
197
+ | 29.01. | 7.7 | 0.4 | 0.0 | 7.3 | 6.688689 | 0.4 | 0.0 | 0.4 | 0.617419 | 0.11876 | 0.006109 | 0.106884 | 0.011876 | 0.307224 | 0.307224 | 0.001187 | 0.3191 | 0.320286 | 1.334526 | 0.0 | 74.466391 | 12.552015 | 1.334526 |
198
+ | 30.01. | 10.3 | 0.3 | 0.0 | 10.0 | 8.967696 | 0.3 | 0.0 | 0.3 | 1.043084 | 0.366894 | 0.01078 | 0.330205 | 0.036689 | 0.302513 | 0.302513 | 0.001517 | 0.339202 | 0.340719 | 1.419661 | 0.0 | 83.423307 | 13.183216 | 1.419661 |
199
+ | 31.01. | 3.7 | 0.3 | 0.0 | 3.4 | 2.994498 | 0.3 | 0.0 | 0.3 | 0.418352 | 0.674762 | 0.01285 | 0.607286 | 0.067476 | 0.295311 | 0.295311 | 0.002111 | 0.362787 | 0.364898 | 1.520408 | 0.0 | 86.404955 | 14.083702 | 1.520408 |
200
+ | 01.02. | 15.3 | 0.5 | 0.0 | 14.8 | 12.689278 | 0.5 | 0.0 | 0.5 | 2.136191 | 0.845065 | 0.025469 | 0.760558 | 0.084506 | 0.285038 | 0.285038 | 0.003017 | 0.369544 | 0.372561 | 1.552337 | 0.0 | 99.068764 | 15.126282 | 1.552337 |
201
+ | 02.02. | 3.2 | 0.5 | 0.0 | 2.7 | 2.251766 | 0.5 | 0.0 | 0.5 | 0.476694 | 1.078349 | 0.02846 | 0.970514 | 0.107835 | 0.273143 | 0.273143 | 0.004473 | 0.380978 | 0.385451 | 1.606044 | 0.0 | 101.29207 | 16.365466 | 1.606044 |
202
+ | 03.02. | 2.7 | 0.3 | 0.0 | 2.4 | 1.984783 | 0.3 | 0.0 | 0.3 | 0.446531 | 1.206951 | 0.031314 | 1.086256 | 0.120695 | 0.259005 | 0.259005 | 0.006629 | 0.3797 | 0.386329 | 1.609703 | 0.0 | 103.245539 | 17.704099 | 1.609703 |
203
+ | 04.02. | 2.2 | 0.3 | 0.0 | 1.9 | 1.560008 | 0.3 | 0.0 | 0.3 | 0.373691 | 0.714606 | 0.033699 | 0.643145 | 0.071461 | 0.243733 | 0.243733 | 0.008446 | 0.315193 | 0.323639 | 1.348498 | 0.0 | 104.771848 | 18.582531 | 1.348498 |
204
+ | 05.02. | 8.0 | 0.4 | 0.0 | 7.6 | 6.137731 | 0.4 | 0.0 | 0.4 | 1.506984 | 0.513159 | 0.044715 | 0.461843 | 0.051316 | 0.233711 | 0.233711 | 0.010125 | 0.285027 | 0.295152 | 1.229798 | 0.0 | 110.864864 | 19.26796 | 1.229798 |
205
+ | 06.02. | 14.3 | 0.4 | 0.0 | 13.9 | 10.788579 | 0.4 | 0.0 | 0.4 | 3.182385 | 0.950088 | 0.070964 | 0.855079 | 0.095009 | 0.225891 | 0.225891 | 0.013263 | 0.320899 | 0.334162 | 1.392344 | 0.0 | 121.582479 | 20.335666 | 1.392344 |
206
+ | 07.02. | 6.3 | 0.3 | 0.0 | 6.0 | 4.478486 | 0.3 | 0.0 | 0.3 | 1.60628 | 1.876899 | 0.084766 | 1.689209 | 0.18769 | 0.213709 | 0.213709 | 0.020662 | 0.401399 | 0.422061 | 1.758588 | 0.0 | 125.976199 | 22.217923 | 1.758588 |
207
+ | 08.02. | 0.0 | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.152363 | 0.152363 | 0.083973 | 2.176624 | 0.083973 | 1.958962 | 0.217662 | 0.192235 | 0.192235 | 0.032613 | 0.409897 | 0.44251 | 1.843791 | 0.0 | 125.739863 | 24.336507 | 1.843791 |
208
+ | 09.02. | 5.9 | 0.1 | 0.0 | 5.8 | 4.231854 | 0.1 | 0.0 | 0.1 | 1.66688 | 1.357431 | 0.098734 | 1.221688 | 0.135743 | 0.168064 | 0.168064 | 0.042729 | 0.303807 | 0.346536 | 1.443899 | 0.0 | 129.872983 | 25.68353 | 1.443899 |
209
+ | 10.02. | 9.2 | 0.1 | 0.0 | 9.1 | 6.433302 | 0.1 | 0.0 | 0.1 | 2.791906 | 1.043129 | 0.125207 | 0.938816 | 0.104313 | 0.152696 | 0.152696 | 0.052141 | 0.257009 | 0.309149 | 1.288122 | 0.0 | 136.181077 | 26.722902 | 1.288122 |
210
+ | 11.02. | 6.1 | 0.0 | 0.0 | 6.1 | 4.17124 | 0.0 | 0.0 | 0.0 | 2.073646 | 1.817057 | 0.144885 | 1.635352 | 0.181706 | 0.140838 | 0.140838 | 0.071135 | 0.322543 | 0.393678 | 1.640325 | 0.0 | 140.207431 | 28.427956 | 1.640325 |
211
+ | 12.02. | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.144141 | 2.181842 | 0.144141 | 1.963658 | 0.218184 | 0.121385 | 0.121385 | 0.099886 | 0.339569 | 0.439455 | 1.831061 | 0.0 | 140.06329 | 30.413113 | 1.831061 |
212
+ | 13.02. | 0.0 | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.081457 | 0.081457 | 0.142987 | 1.419324 | 0.142987 | 1.277392 | 0.141932 | 0.098736 | 0.098736 | 0.122419 | 0.240669 | 0.363088 | 1.512865 | 0.0 | 139.838846 | 31.666822 | 1.512865 |
213
+ | 14.02. | 2.8 | 0.0 | 0.0 | 2.8 | 1.882347 | 0.0 | 0.0 | 0.0 | 1.069728 | 0.523468 | 0.152075 | 0.471121 | 0.052347 | 0.084433 | 0.084433 | 0.13092 | 0.136779 | 0.267699 | 1.115413 | 0.0 | 141.569118 | 32.091456 | 1.115413 |
214
+ | 15.02. | 10.6 | 0.2 | 0.0 | 10.4 | 6.784199 | 0.2 | 0.0 | 0.2 | 3.806846 | 0.713495 | 0.191045 | 0.642146 | 0.07135 | 0.079588 | 0.079588 | 0.143261 | 0.150938 | 0.294199 | 1.225828 | 0.0 | 148.162273 | 32.669929 | 1.225828 |
215
+ | 16.02. | 8.8 | 0.9 | 0.0 | 7.9 | 4.935164 | 0.9 | 0.0 | 0.9 | 3.188349 | 1.958459 | 0.223512 | 1.762613 | 0.195846 | 0.072988 | 0.072988 | 0.183772 | 0.268834 | 0.452606 | 1.885859 | 0.0 | 152.873924 | 34.321758 | 1.885859 |
216
+ | 17.02. | 7.2 | 0.9 | 0.0 | 6.3 | 3.803992 | 0.9 | 0.0 | 0.9 | 2.746819 | 3.085447 | 0.250812 | 2.776902 | 0.308545 | 0.054143 | 0.054143 | 0.264741 | 0.362687 | 0.627428 | 2.614285 | 0.0 | 156.427105 | 36.888061 | 2.614285 |
217
+ | 18.02. | 4.9 | 0.5 | 0.0 | 4.4 | 2.589936 | 0.5 | 0.0 | 0.5 | 2.0801 | 3.048011 | 0.270036 | 2.74321 | 0.304801 | 0.024864 | 0.024864 | 0.364867 | 0.329665 | 0.694532 | 2.893883 | 0.0 | 158.747005 | 39.291268 | 2.893883 |
218
+ | 19.02. | 1.8 | 0.9 | 0.0 | 0.9 | 0.523724 | 0.9 | 0.0 | 0.9 | 0.648465 | 2.458831 | 0.272189 | 2.212948 | 0.245883 | -0.002554 | -0.002554 | 0.455975 | 0.243329 | 0.699304 | 2.913766 | 0.0 | 158.99854 | 41.045686 | 2.913766 |
219
+
220
+ There is no indication of an error in the water balance:
221
+
222
+ >>> round_(model.check_waterbalance(conditions))
223
+ 0.0
224
+
225
+ .. _gland_gr5_interception:
226
+
227
+ interception
228
+ ____________
229
+
230
+ This integration test corresponds to the :ref:`gland_gr4_interception` example on
231
+ |gland_gr4|:
232
+
233
+ >>> imax(10.0)
234
+ >>> x2(1.027)
235
+ >>> test.inits.s = 0.3 * x1
236
+ >>> test.inits.r = 0.5 * x3
237
+
238
+ .. integration-test::
239
+
240
+ >>> conditions = test("gland_gr5_interception", get_conditions="1990-01-01")
241
+ | date | p | e | en | pn | ps | ei | es | ae | pr | q10 | perc | q9 | q1 | fd | fr | qr | qd | qh | qv | i | s | r | outlet |
242
+ ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
243
+ | 01.01. | 0.0 | 0.3 | 0.3 | 0.0 | 0.0 | 0.0 | 0.152869 | 0.152869 | 0.005768 | 0.000403 | 0.005768 | 0.000362 | 0.00004 | 0.067782 | 0.067782 | 0.682 | 0.067822 | 0.749822 | 3.124258 | 0.0 | 73.616763 | 44.394645 | 3.124258 |
244
+ | 02.01. | 9.3 | 0.4 | 0.0 | 0.0 | 0.0 | 0.4 | 0.0 | 0.4 | 0.005766 | 0.002278 | 0.005766 | 0.00205 | 0.000228 | 0.060779 | 0.060779 | 0.637709 | 0.061006 | 0.698715 | 2.911312 | 8.9 | 73.610997 | 43.819764 | 2.911312 |
245
+ | 03.01. | 3.2 | 0.4 | 0.0 | 1.7 | 1.544461 | 0.4 | 0.0 | 0.4 | 0.161933 | 0.015742 | 0.006394 | 0.014167 | 0.001574 | 0.05422 | 0.05422 | 0.598973 | 0.055794 | 0.654767 | 2.728195 | 10.0 | 75.149064 | 43.289179 | 2.728195 |
246
+ | 04.01. | 7.3 | 0.3 | 0.0 | 7.0 | 6.28991 | 0.3 | 0.0 | 0.3 | 0.719642 | 0.106327 | 0.009552 | 0.095695 | 0.010633 | 0.048166 | 0.048166 | 0.569337 | 0.058799 | 0.628136 | 2.617233 | 10.0 | 81.429422 | 42.863703 | 2.617233 |
247
+ | 05.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009546 | 0.307495 | 0.009546 | 0.276745 | 0.030749 | 0.043312 | 0.043312 | 0.553593 | 0.074062 | 0.627654 | 2.615227 | 9.9 | 81.419876 | 42.630167 | 2.615227 |
248
+ | 06.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009541 | 0.348512 | 0.009541 | 0.313661 | 0.034851 | 0.040648 | 0.040648 | 0.541251 | 0.075499 | 0.616749 | 2.569789 | 9.8 | 81.410335 | 42.443225 | 2.569789 |
249
+ | 07.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009535 | 0.11984 | 0.009535 | 0.107856 | 0.011984 | 0.038515 | 0.038515 | 0.517425 | 0.050499 | 0.567924 | 2.36635 | 9.7 | 81.4008 | 42.072171 | 2.36635 |
250
+ | 08.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.009529 | 0.014431 | 0.009529 | 0.012987 | 0.001443 | 0.034282 | 0.034282 | 0.490128 | 0.035725 | 0.525852 | 2.191051 | 9.5 | 81.391271 | 41.629312 | 2.191051 |
251
+ | 09.01. | 0.1 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.009524 | 0.009533 | 0.009524 | 0.00858 | 0.000953 | 0.029229 | 0.029229 | 0.464935 | 0.030182 | 0.495117 | 2.062988 | 9.4 | 81.381747 | 41.202187 | 2.062988 |
252
+ | 10.01. | 0.2 | 0.3 | 0.0 | 0.0 | 0.0 | 0.3 | 0.0 | 0.3 | 0.009518 | 0.009528 | 0.009518 | 0.008575 | 0.000953 | 0.024356 | 0.024356 | 0.441825 | 0.025309 | 0.467134 | 1.946391 | 9.3 | 81.372229 | 40.793292 | 1.946391 |
253
+ | 11.01. | 2.9 | 0.3 | 0.0 | 1.9 | 1.687622 | 0.3 | 0.0 | 0.3 | 0.222918 | 0.024419 | 0.010541 | 0.021977 | 0.002442 | 0.019691 | 0.019691 | 0.421226 | 0.022133 | 0.443359 | 1.84733 | 10.0 | 83.049311 | 40.413734 | 1.84733 |
254
+ | 12.01. | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010534 | 0.078963 | 0.010534 | 0.071066 | 0.007896 | 0.015361 | 0.015361 | 0.404574 | 0.023257 | 0.427831 | 1.782628 | 10.0 | 83.038777 | 40.095588 | 1.782628 |
255
+ | 13.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010527 | 0.104748 | 0.010527 | 0.094274 | 0.010475 | 0.011731 | 0.011731 | 0.390161 | 0.022206 | 0.412366 | 1.718194 | 9.8 | 83.028249 | 39.811431 | 1.718194 |
256
+ | 14.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010521 | 0.043199 | 0.010521 | 0.038879 | 0.00432 | 0.008489 | 0.008489 | 0.374111 | 0.012809 | 0.386919 | 1.612164 | 9.6 | 83.017729 | 39.484688 | 1.612164 |
257
+ | 15.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010514 | 0.011988 | 0.010514 | 0.010789 | 0.001199 | 0.004761 | 0.004761 | 0.357879 | 0.00596 | 0.363839 | 1.515995 | 9.4 | 83.007215 | 39.14236 | 1.515995 |
258
+ | 16.01. | 3.3 | 0.3 | 0.0 | 2.4 | 2.119511 | 0.3 | 0.0 | 0.3 | 0.292408 | 0.030197 | 0.011919 | 0.027178 | 0.00302 | 0.000855 | 0.000855 | 0.343438 | 0.003875 | 0.347314 | 1.44714 | 10.0 | 85.114807 | 38.826954 | 1.44714 |
259
+ | 17.01. | 4.6 | 0.3 | 0.0 | 4.3 | 3.761743 | 0.3 | 0.0 | 0.3 | 0.553041 | 0.140026 | 0.014784 | 0.126024 | 0.014003 | -0.002743 | -0.002743 | 0.334057 | 0.01126 | 0.345316 | 1.438818 | 10.0 | 88.861766 | 38.616178 | 1.438818 |
260
+ | 18.01. | 0.8 | 0.2 | 0.0 | 0.6 | 0.521196 | 0.2 | 0.0 | 0.2 | 0.094014 | 0.317975 | 0.01521 | 0.286178 | 0.031798 | -0.005148 | -0.005148 | 0.331827 | 0.02665 | 0.358477 | 1.493655 | 10.0 | 89.367752 | 38.565381 | 1.493655 |
261
+ | 19.01. | 1.8 | 0.2 | 0.0 | 1.6 | 1.385404 | 0.2 | 0.0 | 0.2 | 0.231008 | 0.337504 | 0.016412 | 0.303754 | 0.03375 | -0.005727 | -0.005727 | 0.330412 | 0.028023 | 0.358435 | 1.493481 | 10.0 | 90.736744 | 38.532995 | 1.493481 |
262
+ | 20.01. | 1.1 | 0.3 | 0.0 | 0.8 | 0.690257 | 0.3 | 0.0 | 0.3 | 0.126773 | 0.212822 | 0.01703 | 0.19154 | 0.021282 | -0.006097 | -0.006097 | 0.324397 | 0.015185 | 0.339582 | 1.414927 | 10.0 | 91.409971 | 38.394041 | 1.414927 |
263
+ | 21.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.017014 | 0.163327 | 0.017014 | 0.146994 | 0.016333 | -0.007682 | -0.007682 | 0.316842 | 0.008651 | 0.325493 | 1.35622 | 9.8 | 91.392956 | 38.216511 | 1.35622 |
264
+ | 22.01. | 5.0 | 0.2 | 0.0 | 4.6 | 3.936838 | 0.2 | 0.0 | 0.2 | 0.684149 | 0.145812 | 0.020987 | 0.131231 | 0.014581 | -0.009708 | -0.009708 | 0.30902 | 0.004874 | 0.313894 | 1.30789 | 10.0 | 95.308808 | 38.029015 | 1.30789 |
265
+ | 23.01. | 13.1 | 0.3 | 0.0 | 12.8 | 10.652857 | 0.3 | 0.0 | 0.3 | 2.182741 | 0.403432 | 0.035598 | 0.363089 | 0.040343 | -0.011847 | -0.011847 | 0.310698 | 0.028497 | 0.339194 | 1.41331 | 10.0 | 105.926066 | 38.069559 | 1.41331 |
266
+ | 24.01. | 14.6 | 0.6 | 0.0 | 14.0 | 11.117877 | 0.6 | 0.0 | 0.6 | 2.940635 | 1.222357 | 0.058513 | 1.100122 | 0.122236 | -0.011384 | -0.011384 | 0.342918 | 0.110852 | 0.453769 | 1.890706 | 10.0 | 116.985431 | 38.815379 | 1.890706 |
267
+ | 25.01. | 4.0 | 0.4 | 0.0 | 3.6 | 2.765864 | 0.4 | 0.0 | 0.4 | 0.899728 | 2.094082 | 0.065593 | 1.884673 | 0.209408 | -0.002875 | -0.002875 | 0.41431 | 0.206533 | 0.620843 | 2.586845 | 10.0 | 119.685703 | 40.282867 | 2.586845 |
268
+ | 26.01. | 0.8 | 0.4 | 0.0 | 0.4 | 0.305012 | 0.4 | 0.0 | 0.4 | 0.161239 | 1.951006 | 0.06625 | 1.755905 | 0.195101 | 0.013867 | 0.013867 | 0.486342 | 0.208968 | 0.69531 | 2.897125 | 10.0 | 119.924464 | 41.566298 | 2.897125 |
269
+ | 27.01. | 0.1 | 0.4 | 0.0 | 0.0 | 0.0 | 0.4 | 0.0 | 0.4 | 0.066068 | 0.92429 | 0.066068 | 0.831861 | 0.092429 | 0.02851 | 0.02851 | 0.507835 | 0.120939 | 0.628774 | 2.619893 | 9.7 | 119.858396 | 41.918834 | 2.619893 |
270
+ | 28.01. | 3.3 | 0.5 | 0.0 | 2.5 | 1.89666 | 0.5 | 0.0 | 0.5 | 0.6746 | 0.298898 | 0.07126 | 0.269008 | 0.02989 | 0.032532 | 0.032532 | 0.495891 | 0.062422 | 0.558313 | 2.326306 | 10.0 | 121.683796 | 41.724483 | 2.326306 |
271
+ | 29.01. | 7.7 | 0.4 | 0.0 | 7.3 | 5.431286 | 0.4 | 0.0 | 0.4 | 1.957079 | 0.416282 | 0.088365 | 0.374654 | 0.041628 | 0.030315 | 0.030315 | 0.490697 | 0.071943 | 0.56264 | 2.344333 | 10.0 | 127.026717 | 41.638754 | 2.344333 |
272
+ | 30.01. | 10.3 | 0.3 | 0.0 | 10.0 | 7.177146 | 0.3 | 0.0 | 0.3 | 2.938715 | 1.152405 | 0.115861 | 1.037165 | 0.115241 | 0.029337 | 0.029337 | 0.524317 | 0.144577 | 0.668895 | 2.787061 | 10.0 | 134.088002 | 42.180938 | 2.787061 |
273
+ | 31.01. | 3.7 | 0.3 | 0.0 | 3.4 | 2.371144 | 0.3 | 0.0 | 0.3 | 1.154766 | 2.009851 | 0.12591 | 1.808866 | 0.200985 | 0.035522 | 0.035522 | 0.608135 | 0.236508 | 0.844643 | 3.519345 | 10.0 | 136.333237 | 43.417192 | 3.519345 |
274
+ | 01.02. | 15.3 | 0.5 | 0.0 | 14.8 | 9.908769 | 0.5 | 0.0 | 0.5 | 5.069095 | 2.340881 | 0.177864 | 2.106793 | 0.234088 | 0.049627 | 0.049627 | 0.719232 | 0.283715 | 1.002947 | 4.178945 | 10.0 | 146.064141 | 44.85438 | 4.178945 |
275
+ | 02.02. | 3.2 | 0.5 | 0.0 | 2.7 | 1.736097 | 0.5 | 0.0 | 0.5 | 1.151422 | 2.706995 | 0.187519 | 2.436296 | 0.2707 | 0.066024 | 0.066024 | 0.86581 | 0.336723 | 1.202533 | 5.010555 | 10.0 | 147.612719 | 46.490889 | 5.010555 |
276
+ | 03.02. | 2.7 | 0.3 | 0.0 | 2.4 | 1.526285 | 0.3 | 0.0 | 0.3 | 1.069859 | 2.899467 | 0.196144 | 2.60952 | 0.289947 | 0.084695 | 0.084695 | 1.038749 | 0.374641 | 1.41339 | 5.889126 | 10.0 | 148.94286 | 48.146354 | 5.889126 |
277
+ | 04.02. | 2.2 | 0.3 | 0.0 | 1.9 | 1.197406 | 0.3 | 0.0 | 0.3 | 0.905394 | 1.710481 | 0.202799 | 1.539433 | 0.171048 | 0.103582 | 0.103582 | 1.101296 | 0.27463 | 1.375926 | 5.733024 | 10.0 | 149.937467 | 48.688073 | 5.733024 |
278
+ | 05.02. | 8.0 | 0.4 | 0.0 | 7.6 | 4.685004 | 0.4 | 0.0 | 0.4 | 3.14983 | 1.201689 | 0.234834 | 1.08152 | 0.120169 | 0.109762 | 0.109762 | 1.110849 | 0.229931 | 1.34078 | 5.586582 | 10.0 | 154.387637 | 48.768506 | 5.586582 |
279
+ | 06.02. | 14.3 | 0.4 | 0.0 | 13.9 | 8.124579 | 0.4 | 0.0 | 0.4 | 6.076351 | 2.022988 | 0.30093 | 1.82069 | 0.202299 | 0.11068 | 0.11068 | 1.200866 | 0.312979 | 1.513844 | 6.307684 | 10.0 | 162.211285 | 49.49901 | 6.307684 |
280
+ | 07.02. | 6.3 | 0.3 | 0.0 | 6.0 | 3.33511 | 0.3 | 0.0 | 0.3 | 2.994864 | 3.730743 | 0.329974 | 3.357669 | 0.373074 | 0.119014 | 0.119014 | 1.479305 | 0.492088 | 1.971393 | 8.214139 | 10.0 | 165.216421 | 51.496388 | 8.214139 |
281
+ | 08.02. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.326712 | 4.187387 | 0.326712 | 3.768649 | 0.418739 | 0.141802 | 0.141802 | 1.827039 | 0.560541 | 2.38758 | 9.94825 | 9.8 | 164.88971 | 53.579799 | 9.94825 |
282
+ | 09.02. | 5.9 | 0.1 | 0.0 | 5.6 | 3.035483 | 0.1 | 0.0 | 0.1 | 2.918787 | 2.597331 | 0.354269 | 2.337598 | 0.259733 | 0.165572 | 0.165572 | 1.933609 | 0.425305 | 2.358913 | 9.828806 | 10.0 | 167.570923 | 54.14936 | 9.828806 |
283
+ | 10.02. | 9.2 | 0.1 | 0.0 | 9.1 | 4.752687 | 0.1 | 0.0 | 0.1 | 4.750243 | 1.928241 | 0.40293 | 1.735417 | 0.192824 | 0.17207 | 0.17207 | 1.929409 | 0.364894 | 2.294303 | 9.559595 | 10.0 | 171.92068 | 54.127438 | 9.559595 |
284
+ | 11.02. | 6.1 | 0.0 | 0.0 | 6.1 | 3.064924 | 0.0 | 0.0 | 0.0 | 3.469944 | 3.154375 | 0.434868 | 2.838938 | 0.315438 | 0.17182 | 0.17182 | 2.108914 | 0.487257 | 2.596171 | 10.817381 | 10.0 | 174.550736 | 55.029281 | 10.817381 |
285
+ | 12.02. | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.429517 | 3.720184 | 0.429517 | 3.348166 | 0.372018 | 0.182109 | 0.182109 | 2.362933 | 0.554127 | 2.91706 | 12.154418 | 10.0 | 174.121219 | 56.196622 | 12.154418 |
286
+ | 13.02. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.424284 | 2.46212 | 0.424284 | 2.215908 | 0.246212 | 0.195427 | 0.195427 | 2.371954 | 0.441639 | 2.813593 | 11.723303 | 9.9 | 173.696935 | 56.236003 | 11.723303 |
287
+ | 14.02. | 2.8 | 0.0 | 0.0 | 2.7 | 1.342535 | 0.0 | 0.0 | 0.0 | 1.792999 | 1.020524 | 0.435534 | 0.918471 | 0.102052 | 0.195876 | 0.195876 | 2.145509 | 0.297928 | 2.443438 | 10.180991 | 10.0 | 174.603936 | 55.204841 | 10.180991 |
288
+ | 15.02. | 10.6 | 0.2 | 0.0 | 10.4 | 5.003995 | 0.2 | 0.0 | 0.2 | 5.891088 | 1.272638 | 0.495082 | 1.145374 | 0.127264 | 0.184112 | 0.184112 | 2.007237 | 0.311375 | 2.318612 | 9.660883 | 10.0 | 179.112849 | 54.52709 | 9.660883 |
289
+ | 16.02. | 8.8 | 0.9 | 0.0 | 7.9 | 3.623151 | 0.9 | 0.0 | 0.9 | 4.816306 | 3.116298 | 0.539457 | 2.804668 | 0.31163 | 0.176379 | 0.176379 | 2.173024 | 0.488009 | 2.661033 | 11.087636 | 10.0 | 182.196543 | 55.335113 | 11.087636 |
290
+ | 17.02. | 7.2 | 0.9 | 0.0 | 6.3 | 2.788346 | 0.9 | 0.0 | 0.9 | 4.084922 | 4.74747 | 0.573268 | 4.272723 | 0.474747 | 0.185598 | 0.185598 | 2.600705 | 0.660345 | 3.26105 | 13.587707 | 10.0 | 184.411621 | 57.192729 | 13.587707 |
291
+ | 18.02. | 4.9 | 0.5 | 0.0 | 4.4 | 1.900026 | 0.5 | 0.0 | 0.5 | 3.093964 | 4.60284 | 0.59399 | 4.142556 | 0.460284 | 0.206791 | 0.206791 | 2.96624 | 0.667075 | 3.633316 | 15.138815 | 10.0 | 185.717657 | 58.575836 | 15.138815 |
292
+ | 19.02. | 1.8 | 0.9 | 0.0 | 0.9 | 0.385636 | 0.9 | 0.0 | 0.9 | 1.105061 | 3.679727 | 0.590697 | 3.311754 | 0.367973 | 0.222571 | 0.222571 | 3.092412 | 0.590544 | 3.682956 | 15.345651 | 10.0 | 185.512596 | 59.017749 | 15.345651 |
293
+
294
+ There is no indication of an error in the water balance:
295
+
296
+ >>> round_(model.check_waterbalance(conditions))
297
+ 0.0
298
+
299
+ .. _gland_gr5_no_rconc_submodels:
300
+
301
+ no rconc submodels
302
+ __________________
303
+
304
+ This integration test corresponds to the :ref:`gland_gr4_no_rconc_submodels` example on
305
+ |gland_gr4|:
306
+
307
+ >>> model.rconcmodel = None
308
+
309
+ .. integration-test::
310
+
311
+ >>> conditions = test("gland_gr5_no_rconc_submodels", get_conditions="1990-01-01")
312
+ | date | p | e | en | pn | ps | ei | es | ae | pr | q10 | perc | q9 | q1 | fd | fr | qr | qd | qh | qv | i | s | r | outlet |
313
+ ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
314
+ | 01.01. | 0.0 | 0.3 | 0.3 | 0.0 | 0.0 | 0.0 | 0.152869 | 0.152869 | 0.005768 | 0.005768 | 0.005768 | 0.005191 | 0.000577 | 0.067782 | 0.067782 | 0.682354 | 0.068359 | 0.750713 | 3.127971 | 0.0 | 73.616763 | 44.399119 | 3.127971 |
315
+ | 02.01. | 9.3 | 0.4 | 0.0 | 0.0 | 0.0 | 0.4 | 0.0 | 0.4 | 0.005766 | 0.005766 | 0.005766 | 0.005189 | 0.000577 | 0.06083 | 0.06083 | 0.638243 | 0.061406 | 0.699649 | 2.915204 | 8.9 | 73.610997 | 43.826895 | 2.915204 |
316
+ | 03.01. | 3.2 | 0.4 | 0.0 | 1.7 | 1.544461 | 0.4 | 0.0 | 0.4 | 0.161933 | 0.161933 | 0.006394 | 0.14574 | 0.016193 | 0.054301 | 0.054301 | 0.608243 | 0.070494 | 0.678738 | 2.828074 | 10.0 | 75.149064 | 43.418692 | 2.828074 |
317
+ | 04.01. | 7.3 | 0.3 | 0.0 | 7.0 | 6.28991 | 0.3 | 0.0 | 0.3 | 0.719642 | 0.719642 | 0.009552 | 0.647678 | 0.071964 | 0.049644 | 0.049644 | 0.614252 | 0.121608 | 0.73586 | 3.066082 | 10.0 | 81.429422 | 43.501762 | 3.066082 |
318
+ | 05.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009546 | 0.009546 | 0.009546 | 0.008592 | 0.000955 | 0.050592 | 0.050592 | 0.577549 | 0.051546 | 0.629095 | 2.621229 | 9.9 | 81.419876 | 42.983397 | 2.621229 |
319
+ | 06.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009541 | 0.009541 | 0.009541 | 0.008586 | 0.000954 | 0.044678 | 0.044678 | 0.544462 | 0.045632 | 0.590093 | 2.458723 | 9.8 | 81.410335 | 42.492199 | 2.458723 |
320
+ | 07.01. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.009535 | 0.009535 | 0.009535 | 0.008581 | 0.000953 | 0.039074 | 0.039074 | 0.514482 | 0.040027 | 0.55451 | 2.310457 | 9.7 | 81.4008 | 42.025372 | 2.310457 |
321
+ | 08.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.009529 | 0.009529 | 0.009529 | 0.008576 | 0.000953 | 0.033748 | 0.033748 | 0.487193 | 0.034701 | 0.521894 | 2.174557 | 9.5 | 81.391271 | 41.580503 | 2.174557 |
322
+ | 09.01. | 0.1 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.009524 | 0.009524 | 0.009524 | 0.008571 | 0.000952 | 0.028672 | 0.028672 | 0.462247 | 0.029625 | 0.491872 | 2.049465 | 9.4 | 81.381747 | 41.155499 | 2.049465 |
323
+ | 10.01. | 0.2 | 0.3 | 0.0 | 0.0 | 0.0 | 0.3 | 0.0 | 0.3 | 0.009518 | 0.009518 | 0.009518 | 0.008566 | 0.000952 | 0.023823 | 0.023823 | 0.439354 | 0.024775 | 0.464129 | 1.933871 | 9.3 | 81.372229 | 40.748535 | 1.933871 |
324
+ | 11.01. | 2.9 | 0.3 | 0.0 | 1.9 | 1.687622 | 0.3 | 0.0 | 0.3 | 0.222918 | 0.222918 | 0.010541 | 0.200627 | 0.022292 | 0.01918 | 0.01918 | 0.428007 | 0.041472 | 0.469479 | 1.956164 | 10.0 | 83.049311 | 40.540335 | 1.956164 |
325
+ | 12.01. | 0.2 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010534 | 0.010534 | 0.010534 | 0.009481 | 0.001053 | 0.016805 | 0.016805 | 0.407838 | 0.017858 | 0.425696 | 1.773734 | 10.0 | 83.038777 | 40.158782 | 1.773734 |
326
+ | 13.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010527 | 0.010527 | 0.010527 | 0.009475 | 0.001053 | 0.012452 | 0.012452 | 0.389168 | 0.013505 | 0.402672 | 1.677802 | 9.8 | 83.028249 | 39.791541 | 1.677802 |
327
+ | 14.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010521 | 0.010521 | 0.010521 | 0.009469 | 0.001052 | 0.008262 | 0.008262 | 0.371835 | 0.009314 | 0.381149 | 1.588121 | 9.6 | 83.017729 | 39.437436 | 1.588121 |
328
+ | 15.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.010514 | 0.010514 | 0.010514 | 0.009463 | 0.001051 | 0.004222 | 0.004222 | 0.355699 | 0.005273 | 0.360972 | 1.504052 | 9.4 | 83.007215 | 39.095422 | 1.504052 |
329
+ | 16.01. | 3.3 | 0.3 | 0.0 | 2.4 | 2.119511 | 0.3 | 0.0 | 0.3 | 0.292408 | 0.292408 | 0.011919 | 0.263167 | 0.029241 | 0.00032 | 0.00032 | 0.351635 | 0.029561 | 0.381195 | 1.588314 | 10.0 | 85.114807 | 39.007274 | 1.588314 |
330
+ | 17.01. | 4.6 | 0.3 | 0.0 | 4.3 | 3.761743 | 0.3 | 0.0 | 0.3 | 0.553041 | 0.553041 | 0.014784 | 0.497737 | 0.055304 | -0.000686 | -0.000686 | 0.358061 | 0.054618 | 0.412679 | 1.719497 | 10.0 | 88.861766 | 39.146265 | 1.719497 |
331
+ | 18.01. | 0.8 | 0.2 | 0.0 | 0.6 | 0.521196 | 0.2 | 0.0 | 0.2 | 0.094014 | 0.094014 | 0.01521 | 0.084612 | 0.009401 | 0.0009 | 0.0009 | 0.346091 | 0.010301 | 0.356392 | 1.484967 | 10.0 | 89.367752 | 38.885687 | 1.484967 |
332
+ | 19.01. | 1.8 | 0.2 | 0.0 | 1.6 | 1.385404 | 0.2 | 0.0 | 0.2 | 0.231008 | 0.231008 | 0.016412 | 0.207907 | 0.023101 | -0.002073 | -0.002073 | 0.340054 | 0.021028 | 0.361082 | 1.504508 | 10.0 | 90.736744 | 38.751467 | 1.504508 |
333
+ | 20.01. | 1.1 | 0.3 | 0.0 | 0.8 | 0.690257 | 0.3 | 0.0 | 0.3 | 0.126773 | 0.126773 | 0.01703 | 0.114096 | 0.012677 | -0.003604 | -0.003604 | 0.330352 | 0.009073 | 0.339425 | 1.41427 | 10.0 | 91.409971 | 38.531607 | 1.41427 |
334
+ | 21.01. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.017014 | 0.017014 | 0.017014 | 0.015313 | 0.001701 | -0.001701 | -0.006113 | 0.317144 | 0.0 | 0.317144 | 1.321432 | 9.8 | 91.392956 | 38.223663 | 1.321432 |
335
+ | 22.01. | 5.0 | 0.2 | 0.0 | 4.6 | 3.936838 | 0.2 | 0.0 | 0.2 | 0.684149 | 0.684149 | 0.020987 | 0.615734 | 0.068415 | -0.009626 | -0.009626 | 0.329009 | 0.058789 | 0.387798 | 1.615824 | 10.0 | 95.308808 | 38.500762 | 1.615824 |
336
+ | 23.01. | 13.1 | 0.3 | 0.0 | 12.8 | 10.652857 | 0.3 | 0.0 | 0.3 | 2.182741 | 2.182741 | 0.035598 | 1.964467 | 0.218274 | -0.006464 | -0.006464 | 0.402551 | 0.21181 | 0.614361 | 2.559836 | 10.0 | 105.926066 | 40.056214 | 2.559836 |
337
+ | 24.01. | 14.6 | 0.6 | 0.0 | 14.0 | 11.117877 | 0.6 | 0.0 | 0.6 | 2.940635 | 2.940635 | 0.058513 | 2.646572 | 0.294064 | 0.011282 | 0.011282 | 0.524846 | 0.305345 | 0.830191 | 3.459128 | 10.0 | 116.985431 | 42.189222 | 3.459128 |
338
+ | 25.01. | 4.0 | 0.4 | 0.0 | 3.6 | 2.765864 | 0.4 | 0.0 | 0.4 | 0.899728 | 0.899728 | 0.065593 | 0.809756 | 0.089973 | 0.035617 | 0.035617 | 0.544334 | 0.12559 | 0.669924 | 2.79135 | 10.0 | 119.685703 | 42.49026 | 2.79135 |
339
+ | 26.01. | 0.8 | 0.4 | 0.0 | 0.4 | 0.305012 | 0.4 | 0.0 | 0.4 | 0.161239 | 0.161239 | 0.06625 | 0.145115 | 0.016124 | 0.039052 | 0.039052 | 0.522473 | 0.055175 | 0.577649 | 2.40687 | 10.0 | 119.924464 | 42.151953 | 2.40687 |
340
+ | 27.01. | 0.1 | 0.4 | 0.0 | 0.0 | 0.0 | 0.4 | 0.0 | 0.4 | 0.066068 | 0.066068 | 0.066068 | 0.059461 | 0.006607 | 0.035192 | 0.035192 | 0.497398 | 0.041799 | 0.539196 | 2.246652 | 9.7 | 119.858396 | 41.749208 | 2.246652 |
341
+ | 28.01. | 3.3 | 0.5 | 0.0 | 2.5 | 1.89666 | 0.5 | 0.0 | 0.5 | 0.6746 | 0.6746 | 0.07126 | 0.60714 | 0.06746 | 0.030597 | 0.030597 | 0.505518 | 0.098057 | 0.603575 | 2.514896 | 10.0 | 121.683796 | 41.881426 | 2.514896 |
342
+ | 29.01. | 7.7 | 0.4 | 0.0 | 7.3 | 5.431286 | 0.4 | 0.0 | 0.4 | 1.957079 | 1.957079 | 0.088365 | 1.761371 | 0.195708 | 0.032105 | 0.032105 | 0.584942 | 0.227813 | 0.812755 | 3.386479 | 10.0 | 127.026717 | 43.089961 | 3.386479 |
343
+ | 30.01. | 10.3 | 0.3 | 0.0 | 10.0 | 7.177146 | 0.3 | 0.0 | 0.3 | 2.938715 | 2.938715 | 0.115861 | 2.644843 | 0.293871 | 0.045893 | 0.045893 | 0.7352 | 0.339765 | 1.074965 | 4.479019 | 10.0 | 134.088002 | 45.045498 | 4.479019 |
344
+ | 31.01. | 3.7 | 0.3 | 0.0 | 3.4 | 2.371144 | 0.3 | 0.0 | 0.3 | 1.154766 | 1.154766 | 0.12591 | 1.039289 | 0.115477 | 0.068204 | 0.068204 | 0.764589 | 0.183681 | 0.94827 | 3.951124 | 10.0 | 136.333237 | 45.388403 | 3.951124 |
345
+ | 01.02. | 15.3 | 0.5 | 0.0 | 14.8 | 9.908769 | 0.5 | 0.0 | 0.5 | 5.069095 | 5.069095 | 0.177864 | 4.562186 | 0.50691 | 0.072116 | 0.072116 | 1.126195 | 0.579026 | 1.705221 | 7.105088 | 10.0 | 146.064141 | 48.89651 | 7.105088 |
346
+ | 02.02. | 3.2 | 0.5 | 0.0 | 2.7 | 1.736097 | 0.5 | 0.0 | 0.5 | 1.151422 | 1.151422 | 0.187519 | 1.03628 | 0.115142 | 0.11214 | 0.11214 | 1.128589 | 0.227282 | 1.355871 | 5.649463 | 10.0 | 147.612719 | 48.916341 | 5.649463 |
347
+ | 03.02. | 2.7 | 0.3 | 0.0 | 2.4 | 1.526285 | 0.3 | 0.0 | 0.3 | 1.069859 | 1.069859 | 0.196144 | 0.962873 | 0.106986 | 0.112366 | 0.112366 | 1.12285 | 0.219352 | 1.342202 | 5.592508 | 10.0 | 148.94286 | 48.868731 | 5.592508 |
348
+ | 04.02. | 2.2 | 0.3 | 0.0 | 1.9 | 1.197406 | 0.3 | 0.0 | 0.3 | 0.905394 | 0.905394 | 0.202799 | 0.814854 | 0.090539 | 0.111823 | 0.111823 | 1.101935 | 0.202363 | 1.304298 | 5.434574 | 10.0 | 149.937467 | 48.693473 | 5.434574 |
349
+ | 05.02. | 8.0 | 0.4 | 0.0 | 7.6 | 4.685004 | 0.4 | 0.0 | 0.4 | 3.14983 | 3.14983 | 0.234834 | 2.834847 | 0.314983 | 0.109824 | 0.109824 | 1.310411 | 0.424807 | 1.735218 | 7.230073 | 10.0 | 154.387637 | 50.327733 | 7.230073 |
350
+ | 06.02. | 14.3 | 0.4 | 0.0 | 13.9 | 8.124579 | 0.4 | 0.0 | 0.4 | 6.076351 | 6.076351 | 0.30093 | 5.468716 | 0.607635 | 0.128469 | 0.128469 | 1.9083 | 0.736104 | 2.644404 | 11.018349 | 10.0 | 162.211285 | 54.016618 | 11.018349 |
351
+ | 07.02. | 6.3 | 0.3 | 0.0 | 6.0 | 3.33511 | 0.3 | 0.0 | 0.3 | 2.994864 | 2.994864 | 0.329974 | 2.695378 | 0.299486 | 0.170555 | 0.170555 | 2.065423 | 0.470042 | 2.535464 | 10.564435 | 10.0 | 165.216421 | 54.817128 | 10.564435 |
352
+ | 08.02. | 0.0 | 0.2 | 0.0 | 0.0 | 0.0 | 0.2 | 0.0 | 0.2 | 0.326712 | 0.326712 | 0.326712 | 0.29404 | 0.032671 | 0.179688 | 0.179688 | 1.809201 | 0.212359 | 2.021561 | 8.423169 | 9.8 | 164.88971 | 53.481655 | 8.423169 |
353
+ | 09.02. | 5.9 | 0.1 | 0.0 | 5.6 | 3.035483 | 0.1 | 0.0 | 0.1 | 2.918787 | 2.918787 | 0.354269 | 2.626908 | 0.291879 | 0.164452 | 0.164452 | 1.964365 | 0.456331 | 2.420696 | 10.086232 | 10.0 | 167.570923 | 54.30865 | 10.086232 |
354
+ | 10.02. | 9.2 | 0.1 | 0.0 | 9.1 | 4.752687 | 0.1 | 0.0 | 0.1 | 4.750243 | 4.750243 | 0.40293 | 4.275219 | 0.475024 | 0.173887 | 0.173887 | 2.400029 | 0.648911 | 3.048941 | 12.70392 | 10.0 | 171.92068 | 56.357727 | 12.70392 |
355
+ | 11.02. | 6.1 | 0.0 | 0.0 | 6.1 | 3.064924 | 0.0 | 0.0 | 0.0 | 3.469944 | 3.469944 | 0.434868 | 3.122949 | 0.346994 | 0.197265 | 0.197265 | 2.577753 | 0.544259 | 3.122012 | 13.008382 | 10.0 | 174.550736 | 57.100188 | 13.008382 |
356
+ | 12.02. | 0.1 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.429517 | 0.429517 | 0.429517 | 0.386565 | 0.042952 | 0.205736 | 0.205736 | 2.205493 | 0.248687 | 2.454181 | 10.225753 | 10.0 | 174.121219 | 55.486996 | 10.225753 |
357
+ | 13.02. | 0.0 | 0.1 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | 0.1 | 0.424284 | 0.424284 | 0.424284 | 0.381856 | 0.042428 | 0.187331 | 0.187331 | 1.929302 | 0.229759 | 2.159061 | 8.996088 | 9.9 | 173.696935 | 54.12688 | 8.996088 |
358
+ | 14.02. | 2.8 | 0.0 | 0.0 | 2.7 | 1.342535 | 0.0 | 0.0 | 0.0 | 1.792999 | 1.792999 | 0.435534 | 1.613699 | 0.1793 | 0.171813 | 0.171813 | 1.906304 | 0.351113 | 2.257417 | 9.405906 | 10.0 | 174.603936 | 54.006087 | 9.405906 |
359
+ | 15.02. | 10.6 | 0.2 | 0.0 | 10.4 | 5.003995 | 0.2 | 0.0 | 0.2 | 5.891088 | 5.891088 | 0.495082 | 5.301979 | 0.589109 | 0.170435 | 0.170435 | 2.538459 | 0.759544 | 3.298003 | 13.741678 | 10.0 | 179.112849 | 56.940042 | 13.741678 |
360
+ | 16.02. | 8.8 | 0.9 | 0.0 | 7.9 | 3.623151 | 0.9 | 0.0 | 0.9 | 4.816306 | 4.816306 | 0.539457 | 4.334675 | 0.481631 | 0.203908 | 0.203908 | 2.952377 | 0.685539 | 3.637916 | 15.157982 | 10.0 | 182.196543 | 58.526249 | 15.157982 |
361
+ | 17.02. | 7.2 | 0.9 | 0.0 | 6.3 | 2.788346 | 0.9 | 0.0 | 0.9 | 4.084922 | 4.084922 | 0.573268 | 3.67643 | 0.408492 | 0.222005 | 0.222005 | 3.163864 | 0.630498 | 3.794362 | 15.809842 | 10.0 | 184.411621 | 59.26082 | 15.809842 |
362
+ | 18.02. | 4.9 | 0.5 | 0.0 | 4.4 | 1.900026 | 0.5 | 0.0 | 0.5 | 3.093964 | 3.093964 | 0.59399 | 2.784568 | 0.309396 | 0.230386 | 0.230386 | 3.129893 | 0.539782 | 3.669675 | 15.290314 | 10.0 | 185.717657 | 59.145881 | 15.290314 |
363
+ | 19.02. | 1.8 | 0.9 | 0.0 | 0.9 | 0.385636 | 0.9 | 0.0 | 0.9 | 1.105061 | 1.105061 | 0.590697 | 0.994555 | 0.110506 | 0.229075 | 0.229075 | 2.717371 | 0.339581 | 3.056952 | 12.7373 | 10.0 | 185.512596 | 57.652139 | 12.7373 |
364
+
365
+ There is no indication of an error in the water balance:
366
+
367
+ >>> round_(model.check_waterbalance(conditions))
368
+ 0.0
369
+ """
370
+
371
+ # import...
372
+ # ...from HydPy
373
+ from hydpy.exe.modelimports import *
374
+ from hydpy.core import modeltools
375
+ from hydpy.core.typingtools import *
376
+ from hydpy.interfaces import petinterfaces
377
+ from hydpy.interfaces import rconcinterfaces
378
+
379
+ # ...from gland
380
+ from hydpy.models.gland import gland_model
381
+
382
+
383
+ class Model(gland_model.Main_PETModel_V1, gland_model.Main_RConcModel_V1):
384
+ """|gland_gr5.DOCNAME.complete|."""
385
+
386
+ DOCNAME = modeltools.DocName(
387
+ short="G-GR5", description="Génie Rural model with 5 parameters"
388
+ )
389
+ __HYDPY_ROOTMODEL__ = True
390
+
391
+ INLET_METHODS = ()
392
+ RECEIVER_METHODS = ()
393
+ RUN_METHODS = (
394
+ gland_model.Calc_E_V1,
395
+ gland_model.Calc_EI_V1,
396
+ gland_model.Calc_PN_V1,
397
+ gland_model.Calc_EN_V1,
398
+ gland_model.Update_I_V1,
399
+ gland_model.Calc_PS_V1,
400
+ gland_model.Calc_ES_V1,
401
+ gland_model.Update_S_V1,
402
+ gland_model.Calc_Perc_V1,
403
+ gland_model.Update_S_V2,
404
+ gland_model.Calc_AE_V1,
405
+ gland_model.Calc_Pr_V1,
406
+ gland_model.Calc_Q10_V1,
407
+ gland_model.Calc_Q1_Q9_V2,
408
+ gland_model.Calc_FR_V2,
409
+ gland_model.Update_R_V1,
410
+ gland_model.Calc_QR_V1,
411
+ gland_model.Update_R_V3,
412
+ gland_model.Calc_FD_V1,
413
+ gland_model.Calc_QD_V1,
414
+ gland_model.Calc_QH_V1,
415
+ gland_model.Calc_QV_V1,
416
+ )
417
+ INTERFACE_METHODS = ()
418
+ ADD_METHODS = (gland_model.Calc_E_PETModel_V1, gland_model.Calc_Q_RConcModel_V1)
419
+ OUTLET_METHODS = (gland_model.Pass_Q_V1,)
420
+ SENDER_METHODS = ()
421
+ SUBMODELINTERFACES = (petinterfaces.PETModel_V1, rconcinterfaces.RConcModel_V1)
422
+ SUBMODELS = ()
423
+
424
+ petmodel = modeltools.SubmodelProperty(petinterfaces.PETModel_V1)
425
+
426
+ rconcmodel = modeltools.SubmodelProperty(
427
+ rconcinterfaces.RConcModel_V1, optional=True
428
+ )
429
+
430
+ def check_waterbalance(self, initial_conditions: ConditionsModel) -> float:
431
+ r"""Determine the water balance error of the previous simulation run in mm.
432
+
433
+ Method |Model.check_waterbalance| calculates the balance error as follows:
434
+
435
+ .. math::
436
+ Error = \Sigma InOut - \Delta Vol - \Delta Rconc
437
+ \\ \\
438
+ \Sigma InOut = \sum_{t=t0}^{t1} P_t - AE_t + FR_t + FD_t - QH_t
439
+ \\
440
+ \Delta Vol = \left( I_{t1} - I_{t0} \right)
441
+ + \left( S_{t1} - S_{t0} \right) + \left( R_{t1} - R_{t0} \right)
442
+ \\
443
+ \Delta Rconc = get\_waterbalance_{runof\!f \ concentration}(*)
444
+ """
445
+ fluxes = self.sequences.fluxes
446
+ inputs = self.sequences.inputs
447
+ last = self.sequences.states
448
+ first = initial_conditions["model"]["states"]
449
+ return (
450
+ numpy.sum(inputs.p.evalseries)
451
+ - numpy.sum(fluxes.ae.evalseries)
452
+ + numpy.sum(fluxes.fr.evalseries)
453
+ + numpy.sum(fluxes.fd.evalseries)
454
+ - numpy.sum(fluxes.qh.evalseries)
455
+ - (last.i - first["i"])
456
+ - (last.s - first["s"])
457
+ - (last.r - first["r"])
458
+ - self._get_rconcmodel_waterbalance(initial_conditions)
459
+ )
460
+
461
+
462
+ tester = Tester()
463
+ cythonizer = Cythonizer()