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
hydpy/aliases.py ADDED
@@ -0,0 +1,2554 @@
1
+ """This module provides the aliases of the sequences of all available models one might
2
+ want to connect to node sequences.
3
+
4
+ This file was automatically created by function |write_sequencealiases|.
5
+ """
6
+
7
+ # import...
8
+ # ...from standard library
9
+ from typing import TYPE_CHECKING
10
+
11
+ # ...from HydPy
12
+ from hydpy.core.aliastools import LazyInOutSequenceImport
13
+
14
+ if TYPE_CHECKING:
15
+ from hydpy.models.arma.arma_inlets import Q as arma_inlets_Q
16
+ from hydpy.models.arma.arma_fluxes import QIn as arma_fluxes_QIn
17
+ from hydpy.models.arma.arma_fluxes import QOut as arma_fluxes_QOut
18
+ from hydpy.models.arma.arma_outlets import Q as arma_outlets_Q
19
+ from hydpy.models.conv.conv_inlets import Inputs as conv_inlets_Inputs
20
+ from hydpy.models.conv.conv_fluxes import (
21
+ ActualConstant as conv_fluxes_ActualConstant,
22
+ )
23
+ from hydpy.models.conv.conv_fluxes import ActualFactor as conv_fluxes_ActualFactor
24
+ from hydpy.models.conv.conv_outlets import Outputs as conv_outlets_Outputs
25
+ from hydpy.models.dam.dam_inlets import Q as dam_inlets_Q
26
+ from hydpy.models.dam.dam_inlets import S as dam_inlets_S
27
+ from hydpy.models.dam.dam_inlets import R as dam_inlets_R
28
+ from hydpy.models.dam.dam_inlets import E as dam_inlets_E
29
+ from hydpy.models.dam.dam_receivers import Q as dam_receivers_Q
30
+ from hydpy.models.dam.dam_receivers import D as dam_receivers_D
31
+ from hydpy.models.dam.dam_receivers import S as dam_receivers_S
32
+ from hydpy.models.dam.dam_receivers import R as dam_receivers_R
33
+ from hydpy.models.dam.dam_receivers import OWL as dam_receivers_OWL
34
+ from hydpy.models.dam.dam_receivers import RWL as dam_receivers_RWL
35
+ from hydpy.models.dam.dam_factors import WaterLevel as dam_factors_WaterLevel
36
+ from hydpy.models.dam.dam_factors import (
37
+ OuterWaterLevel as dam_factors_OuterWaterLevel,
38
+ )
39
+ from hydpy.models.dam.dam_factors import (
40
+ RemoteWaterLevel as dam_factors_RemoteWaterLevel,
41
+ )
42
+ from hydpy.models.dam.dam_factors import (
43
+ WaterLevelDifference as dam_factors_WaterLevelDifference,
44
+ )
45
+ from hydpy.models.dam.dam_factors import (
46
+ EffectiveWaterLevelDifference as dam_factors_EffectiveWaterLevelDifference,
47
+ )
48
+ from hydpy.models.dam.dam_fluxes import Precipitation as dam_fluxes_Precipitation
49
+ from hydpy.models.dam.dam_fluxes import (
50
+ AdjustedPrecipitation as dam_fluxes_AdjustedPrecipitation,
51
+ )
52
+ from hydpy.models.dam.dam_fluxes import (
53
+ PotentialEvaporation as dam_fluxes_PotentialEvaporation,
54
+ )
55
+ from hydpy.models.dam.dam_fluxes import (
56
+ AdjustedEvaporation as dam_fluxes_AdjustedEvaporation,
57
+ )
58
+ from hydpy.models.dam.dam_fluxes import (
59
+ ActualEvaporation as dam_fluxes_ActualEvaporation,
60
+ )
61
+ from hydpy.models.dam.dam_fluxes import Inflow as dam_fluxes_Inflow
62
+ from hydpy.models.dam.dam_fluxes import Exchange as dam_fluxes_Exchange
63
+ from hydpy.models.dam.dam_fluxes import (
64
+ TotalRemoteDischarge as dam_fluxes_TotalRemoteDischarge,
65
+ )
66
+ from hydpy.models.dam.dam_fluxes import (
67
+ NaturalRemoteDischarge as dam_fluxes_NaturalRemoteDischarge,
68
+ )
69
+ from hydpy.models.dam.dam_fluxes import RemoteDemand as dam_fluxes_RemoteDemand
70
+ from hydpy.models.dam.dam_fluxes import RemoteFailure as dam_fluxes_RemoteFailure
71
+ from hydpy.models.dam.dam_fluxes import (
72
+ RequiredRemoteRelease as dam_fluxes_RequiredRemoteRelease,
73
+ )
74
+ from hydpy.models.dam.dam_fluxes import (
75
+ AllowedRemoteRelief as dam_fluxes_AllowedRemoteRelief,
76
+ )
77
+ from hydpy.models.dam.dam_fluxes import (
78
+ RequiredRemoteSupply as dam_fluxes_RequiredRemoteSupply,
79
+ )
80
+ from hydpy.models.dam.dam_fluxes import (
81
+ PossibleRemoteRelief as dam_fluxes_PossibleRemoteRelief,
82
+ )
83
+ from hydpy.models.dam.dam_fluxes import (
84
+ ActualRemoteRelief as dam_fluxes_ActualRemoteRelief,
85
+ )
86
+ from hydpy.models.dam.dam_fluxes import (
87
+ RequiredRelease as dam_fluxes_RequiredRelease,
88
+ )
89
+ from hydpy.models.dam.dam_fluxes import (
90
+ TargetedRelease as dam_fluxes_TargetedRelease,
91
+ )
92
+ from hydpy.models.dam.dam_fluxes import ActualRelease as dam_fluxes_ActualRelease
93
+ from hydpy.models.dam.dam_fluxes import (
94
+ MissingRemoteRelease as dam_fluxes_MissingRemoteRelease,
95
+ )
96
+ from hydpy.models.dam.dam_fluxes import (
97
+ ActualRemoteRelease as dam_fluxes_ActualRemoteRelease,
98
+ )
99
+ from hydpy.models.dam.dam_fluxes import FloodDischarge as dam_fluxes_FloodDischarge
100
+ from hydpy.models.dam.dam_fluxes import FreeDischarge as dam_fluxes_FreeDischarge
101
+ from hydpy.models.dam.dam_fluxes import (
102
+ MaxForcedDischarge as dam_fluxes_MaxForcedDischarge,
103
+ )
104
+ from hydpy.models.dam.dam_fluxes import (
105
+ MaxFreeDischarge as dam_fluxes_MaxFreeDischarge,
106
+ )
107
+ from hydpy.models.dam.dam_fluxes import (
108
+ ForcedDischarge as dam_fluxes_ForcedDischarge,
109
+ )
110
+ from hydpy.models.dam.dam_fluxes import Outflow as dam_fluxes_Outflow
111
+ from hydpy.models.dam.dam_states import WaterVolume as dam_states_WaterVolume
112
+ from hydpy.models.dam.dam_outlets import Q as dam_outlets_Q
113
+ from hydpy.models.dam.dam_outlets import S as dam_outlets_S
114
+ from hydpy.models.dam.dam_outlets import R as dam_outlets_R
115
+ from hydpy.models.dam.dam_senders import D as dam_senders_D
116
+ from hydpy.models.dam.dam_senders import S as dam_senders_S
117
+ from hydpy.models.dam.dam_senders import R as dam_senders_R
118
+ from hydpy.models.dummy.dummy_inlets import Q as dummy_inlets_Q
119
+ from hydpy.models.dummy.dummy_fluxes import Q as dummy_fluxes_Q
120
+ from hydpy.models.dummy.dummy_outlets import Q as dummy_outlets_Q
121
+ from hydpy.models.evap.evap_inputs import (
122
+ ReferenceEvapotranspiration as evap_inputs_ReferenceEvapotranspiration,
123
+ )
124
+ from hydpy.models.evap.evap_inputs import (
125
+ RelativeHumidity as evap_inputs_RelativeHumidity,
126
+ )
127
+ from hydpy.models.evap.evap_inputs import WindSpeed as evap_inputs_WindSpeed
128
+ from hydpy.models.evap.evap_inputs import (
129
+ AtmosphericPressure as evap_inputs_AtmosphericPressure,
130
+ )
131
+ from hydpy.models.evap.evap_inputs import (
132
+ NormalAirTemperature as evap_inputs_NormalAirTemperature,
133
+ )
134
+ from hydpy.models.evap.evap_inputs import (
135
+ NormalEvapotranspiration as evap_inputs_NormalEvapotranspiration,
136
+ )
137
+ from hydpy.models.evap.evap_factors import (
138
+ MeanAirTemperature as evap_factors_MeanAirTemperature,
139
+ )
140
+ from hydpy.models.evap.evap_factors import WindSpeed2m as evap_factors_WindSpeed2m
141
+ from hydpy.models.evap.evap_factors import (
142
+ DailyWindSpeed2m as evap_factors_DailyWindSpeed2m,
143
+ )
144
+ from hydpy.models.evap.evap_factors import WindSpeed10m as evap_factors_WindSpeed10m
145
+ from hydpy.models.evap.evap_factors import (
146
+ DailyRelativeHumidity as evap_factors_DailyRelativeHumidity,
147
+ )
148
+ from hydpy.models.evap.evap_factors import (
149
+ SunshineDuration as evap_factors_SunshineDuration,
150
+ )
151
+ from hydpy.models.evap.evap_factors import (
152
+ PossibleSunshineDuration as evap_factors_PossibleSunshineDuration,
153
+ )
154
+ from hydpy.models.evap.evap_factors import (
155
+ DailySunshineDuration as evap_factors_DailySunshineDuration,
156
+ )
157
+ from hydpy.models.evap.evap_factors import (
158
+ DailyPossibleSunshineDuration as evap_factors_DailyPossibleSunshineDuration,
159
+ )
160
+ from hydpy.models.evap.evap_factors import (
161
+ PsychrometricConstant as evap_factors_PsychrometricConstant,
162
+ )
163
+ from hydpy.models.evap.evap_factors import (
164
+ AdjustedCloudCoverage as evap_factors_AdjustedCloudCoverage,
165
+ )
166
+ from hydpy.models.evap.evap_fluxes import (
167
+ GlobalRadiation as evap_fluxes_GlobalRadiation,
168
+ )
169
+ from hydpy.models.evap.evap_fluxes import (
170
+ ClearSkySolarRadiation as evap_fluxes_ClearSkySolarRadiation,
171
+ )
172
+ from hydpy.models.evap.evap_fluxes import (
173
+ DailyGlobalRadiation as evap_fluxes_DailyGlobalRadiation,
174
+ )
175
+ from hydpy.models.evap.evap_fluxes import (
176
+ MeanReferenceEvapotranspiration as evap_fluxes_MeanReferenceEvapotranspiration,
177
+ )
178
+ from hydpy.models.evap.evap_fluxes import (
179
+ MeanPotentialEvapotranspiration as evap_fluxes_MeanPotentialEvapotranspiration,
180
+ )
181
+ from hydpy.models.evap.evap_states import CloudCoverage as evap_states_CloudCoverage
182
+ from hydpy.models.exch.exch_inlets import Total as exch_inlets_Total
183
+ from hydpy.models.exch.exch_receivers import WaterLevel as exch_receivers_WaterLevel
184
+ from hydpy.models.exch.exch_receivers import (
185
+ WaterLevels as exch_receivers_WaterLevels,
186
+ )
187
+ from hydpy.models.exch.exch_factors import (
188
+ DeltaWaterLevel as exch_factors_DeltaWaterLevel,
189
+ )
190
+ from hydpy.models.exch.exch_fluxes import (
191
+ PotentialExchange as exch_fluxes_PotentialExchange,
192
+ )
193
+ from hydpy.models.exch.exch_fluxes import (
194
+ ActualExchange as exch_fluxes_ActualExchange,
195
+ )
196
+ from hydpy.models.exch.exch_fluxes import OriginalInput as exch_fluxes_OriginalInput
197
+ from hydpy.models.exch.exch_fluxes import AdjustedInput as exch_fluxes_AdjustedInput
198
+ from hydpy.models.exch.exch_outlets import Exchange as exch_outlets_Exchange
199
+ from hydpy.models.exch.exch_outlets import Branched as exch_outlets_Branched
200
+ from hydpy.models.ga.ga_inputs import Rainfall as ga_inputs_Rainfall
201
+ from hydpy.models.ga.ga_inputs import CapillaryRise as ga_inputs_CapillaryRise
202
+ from hydpy.models.ga.ga_inputs import Evaporation as ga_inputs_Evaporation
203
+ from hydpy.models.ga.ga_fluxes import (
204
+ TotalInfiltration as ga_fluxes_TotalInfiltration,
205
+ )
206
+ from hydpy.models.ga.ga_fluxes import TotalPercolation as ga_fluxes_TotalPercolation
207
+ from hydpy.models.ga.ga_fluxes import (
208
+ TotalSoilWaterAddition as ga_fluxes_TotalSoilWaterAddition,
209
+ )
210
+ from hydpy.models.ga.ga_fluxes import TotalWithdrawal as ga_fluxes_TotalWithdrawal
211
+ from hydpy.models.ga.ga_fluxes import (
212
+ TotalSurfaceRunoff as ga_fluxes_TotalSurfaceRunoff,
213
+ )
214
+ from hydpy.models.gland.gland_inputs import P as gland_inputs_P
215
+ from hydpy.models.gland.gland_fluxes import E as gland_fluxes_E
216
+ from hydpy.models.gland.gland_fluxes import EN as gland_fluxes_EN
217
+ from hydpy.models.gland.gland_fluxes import PN as gland_fluxes_PN
218
+ from hydpy.models.gland.gland_fluxes import PS as gland_fluxes_PS
219
+ from hydpy.models.gland.gland_fluxes import EI as gland_fluxes_EI
220
+ from hydpy.models.gland.gland_fluxes import ES as gland_fluxes_ES
221
+ from hydpy.models.gland.gland_fluxes import AE as gland_fluxes_AE
222
+ from hydpy.models.gland.gland_fluxes import PR as gland_fluxes_PR
223
+ from hydpy.models.gland.gland_fluxes import PR9 as gland_fluxes_PR9
224
+ from hydpy.models.gland.gland_fluxes import PR1 as gland_fluxes_PR1
225
+ from hydpy.models.gland.gland_fluxes import Q10 as gland_fluxes_Q10
226
+ from hydpy.models.gland.gland_fluxes import Perc as gland_fluxes_Perc
227
+ from hydpy.models.gland.gland_fluxes import Q9 as gland_fluxes_Q9
228
+ from hydpy.models.gland.gland_fluxes import Q1 as gland_fluxes_Q1
229
+ from hydpy.models.gland.gland_fluxes import FD as gland_fluxes_FD
230
+ from hydpy.models.gland.gland_fluxes import FR as gland_fluxes_FR
231
+ from hydpy.models.gland.gland_fluxes import FR2 as gland_fluxes_FR2
232
+ from hydpy.models.gland.gland_fluxes import QR as gland_fluxes_QR
233
+ from hydpy.models.gland.gland_fluxes import QR2 as gland_fluxes_QR2
234
+ from hydpy.models.gland.gland_fluxes import QD as gland_fluxes_QD
235
+ from hydpy.models.gland.gland_fluxes import QH as gland_fluxes_QH
236
+ from hydpy.models.gland.gland_fluxes import QV as gland_fluxes_QV
237
+ from hydpy.models.gland.gland_states import I as gland_states_I
238
+ from hydpy.models.gland.gland_states import S as gland_states_S
239
+ from hydpy.models.gland.gland_states import R as gland_states_R
240
+ from hydpy.models.gland.gland_states import R2 as gland_states_R2
241
+ from hydpy.models.gland.gland_outlets import Q as gland_outlets_Q
242
+ from hydpy.models.hland.hland_inputs import P as hland_inputs_P
243
+ from hydpy.models.hland.hland_inputs import T as hland_inputs_T
244
+ from hydpy.models.hland.hland_factors import ContriArea as hland_factors_ContriArea
245
+ from hydpy.models.hland.hland_fluxes import InUZ as hland_fluxes_InUZ
246
+ from hydpy.models.hland.hland_fluxes import Perc as hland_fluxes_Perc
247
+ from hydpy.models.hland.hland_fluxes import Q0 as hland_fluxes_Q0
248
+ from hydpy.models.hland.hland_fluxes import Q1 as hland_fluxes_Q1
249
+ from hydpy.models.hland.hland_fluxes import GR2 as hland_fluxes_GR2
250
+ from hydpy.models.hland.hland_fluxes import RG2 as hland_fluxes_RG2
251
+ from hydpy.models.hland.hland_fluxes import GR3 as hland_fluxes_GR3
252
+ from hydpy.models.hland.hland_fluxes import RG3 as hland_fluxes_RG3
253
+ from hydpy.models.hland.hland_fluxes import InRC as hland_fluxes_InRC
254
+ from hydpy.models.hland.hland_fluxes import OutRC as hland_fluxes_OutRC
255
+ from hydpy.models.hland.hland_fluxes import RO as hland_fluxes_RO
256
+ from hydpy.models.hland.hland_fluxes import RA as hland_fluxes_RA
257
+ from hydpy.models.hland.hland_fluxes import RT as hland_fluxes_RT
258
+ from hydpy.models.hland.hland_fluxes import QT as hland_fluxes_QT
259
+ from hydpy.models.hland.hland_states import UZ as hland_states_UZ
260
+ from hydpy.models.hland.hland_states import LZ as hland_states_LZ
261
+ from hydpy.models.hland.hland_states import SG2 as hland_states_SG2
262
+ from hydpy.models.hland.hland_states import SG3 as hland_states_SG3
263
+ from hydpy.models.hland.hland_outlets import Q as hland_outlets_Q
264
+ from hydpy.models.kinw.kinw_inlets import Q as kinw_inlets_Q
265
+ from hydpy.models.kinw.kinw_fluxes import QZ as kinw_fluxes_QZ
266
+ from hydpy.models.kinw.kinw_fluxes import QZA as kinw_fluxes_QZA
267
+ from hydpy.models.kinw.kinw_fluxes import QA as kinw_fluxes_QA
268
+ from hydpy.models.kinw.kinw_outlets import Q as kinw_outlets_Q
269
+ from hydpy.models.lland.lland_inputs import Nied as lland_inputs_Nied
270
+ from hydpy.models.lland.lland_inputs import TemL as lland_inputs_TemL
271
+ from hydpy.models.lland.lland_inputs import (
272
+ RelativeHumidity as lland_inputs_RelativeHumidity,
273
+ )
274
+ from hydpy.models.lland.lland_inputs import WindSpeed as lland_inputs_WindSpeed
275
+ from hydpy.models.lland.lland_inlets import Q as lland_inlets_Q
276
+ from hydpy.models.lland.lland_factors import (
277
+ PossibleSunshineDuration as lland_factors_PossibleSunshineDuration,
278
+ )
279
+ from hydpy.models.lland.lland_factors import (
280
+ SunshineDuration as lland_factors_SunshineDuration,
281
+ )
282
+ from hydpy.models.lland.lland_fluxes import QZ as lland_fluxes_QZ
283
+ from hydpy.models.lland.lland_fluxes import QZH as lland_fluxes_QZH
284
+ from hydpy.models.lland.lland_fluxes import (
285
+ DailySunshineDuration as lland_fluxes_DailySunshineDuration,
286
+ )
287
+ from hydpy.models.lland.lland_fluxes import (
288
+ DailyPossibleSunshineDuration as lland_fluxes_DailyPossibleSunshineDuration,
289
+ )
290
+ from hydpy.models.lland.lland_fluxes import (
291
+ GlobalRadiation as lland_fluxes_GlobalRadiation,
292
+ )
293
+ from hydpy.models.lland.lland_fluxes import WindSpeed2m as lland_fluxes_WindSpeed2m
294
+ from hydpy.models.lland.lland_fluxes import QDGZ as lland_fluxes_QDGZ
295
+ from hydpy.models.lland.lland_fluxes import QDGZ1 as lland_fluxes_QDGZ1
296
+ from hydpy.models.lland.lland_fluxes import QDGZ2 as lland_fluxes_QDGZ2
297
+ from hydpy.models.lland.lland_fluxes import QIGZ1 as lland_fluxes_QIGZ1
298
+ from hydpy.models.lland.lland_fluxes import QIGZ2 as lland_fluxes_QIGZ2
299
+ from hydpy.models.lland.lland_fluxes import QBGZ as lland_fluxes_QBGZ
300
+ from hydpy.models.lland.lland_fluxes import QDGA1 as lland_fluxes_QDGA1
301
+ from hydpy.models.lland.lland_fluxes import QDGA2 as lland_fluxes_QDGA2
302
+ from hydpy.models.lland.lland_fluxes import QIGA1 as lland_fluxes_QIGA1
303
+ from hydpy.models.lland.lland_fluxes import QIGA2 as lland_fluxes_QIGA2
304
+ from hydpy.models.lland.lland_fluxes import QBGA as lland_fluxes_QBGA
305
+ from hydpy.models.lland.lland_fluxes import QAH as lland_fluxes_QAH
306
+ from hydpy.models.lland.lland_fluxes import QA as lland_fluxes_QA
307
+ from hydpy.models.lland.lland_states import SDG1 as lland_states_SDG1
308
+ from hydpy.models.lland.lland_states import SDG2 as lland_states_SDG2
309
+ from hydpy.models.lland.lland_states import SIG1 as lland_states_SIG1
310
+ from hydpy.models.lland.lland_states import SIG2 as lland_states_SIG2
311
+ from hydpy.models.lland.lland_states import SBG as lland_states_SBG
312
+ from hydpy.models.lland.lland_outlets import Q as lland_outlets_Q
313
+ from hydpy.models.meteo.meteo_inputs import (
314
+ PossibleSunshineDuration as meteo_inputs_PossibleSunshineDuration,
315
+ )
316
+ from hydpy.models.meteo.meteo_inputs import (
317
+ SunshineDuration as meteo_inputs_SunshineDuration,
318
+ )
319
+ from hydpy.models.meteo.meteo_inputs import (
320
+ ClearSkySolarRadiation as meteo_inputs_ClearSkySolarRadiation,
321
+ )
322
+ from hydpy.models.meteo.meteo_inputs import (
323
+ GlobalRadiation as meteo_inputs_GlobalRadiation,
324
+ )
325
+ from hydpy.models.meteo.meteo_inputs import Temperature as meteo_inputs_Temperature
326
+ from hydpy.models.meteo.meteo_inputs import (
327
+ Precipitation as meteo_inputs_Precipitation,
328
+ )
329
+ from hydpy.models.meteo.meteo_factors import (
330
+ EarthSunDistance as meteo_factors_EarthSunDistance,
331
+ )
332
+ from hydpy.models.meteo.meteo_factors import (
333
+ SolarDeclination as meteo_factors_SolarDeclination,
334
+ )
335
+ from hydpy.models.meteo.meteo_factors import (
336
+ SunsetHourAngle as meteo_factors_SunsetHourAngle,
337
+ )
338
+ from hydpy.models.meteo.meteo_factors import (
339
+ SolarTimeAngle as meteo_factors_SolarTimeAngle,
340
+ )
341
+ from hydpy.models.meteo.meteo_factors import (
342
+ TimeOfSunrise as meteo_factors_TimeOfSunrise,
343
+ )
344
+ from hydpy.models.meteo.meteo_factors import (
345
+ TimeOfSunset as meteo_factors_TimeOfSunset,
346
+ )
347
+ from hydpy.models.meteo.meteo_factors import (
348
+ PossibleSunshineDuration as meteo_factors_PossibleSunshineDuration,
349
+ )
350
+ from hydpy.models.meteo.meteo_factors import (
351
+ DailyPossibleSunshineDuration as meteo_factors_DailyPossibleSunshineDuration,
352
+ )
353
+ from hydpy.models.meteo.meteo_factors import (
354
+ UnadjustedSunshineDuration as meteo_factors_UnadjustedSunshineDuration,
355
+ )
356
+ from hydpy.models.meteo.meteo_factors import (
357
+ SunshineDuration as meteo_factors_SunshineDuration,
358
+ )
359
+ from hydpy.models.meteo.meteo_factors import (
360
+ DailySunshineDuration as meteo_factors_DailySunshineDuration,
361
+ )
362
+ from hydpy.models.meteo.meteo_factors import (
363
+ PortionDailyRadiation as meteo_factors_PortionDailyRadiation,
364
+ )
365
+ from hydpy.models.meteo.meteo_factors import (
366
+ MeanTemperature as meteo_factors_MeanTemperature,
367
+ )
368
+ from hydpy.models.meteo.meteo_fluxes import (
369
+ ExtraterrestrialRadiation as meteo_fluxes_ExtraterrestrialRadiation,
370
+ )
371
+ from hydpy.models.meteo.meteo_fluxes import (
372
+ ClearSkySolarRadiation as meteo_fluxes_ClearSkySolarRadiation,
373
+ )
374
+ from hydpy.models.meteo.meteo_fluxes import (
375
+ UnadjustedGlobalRadiation as meteo_fluxes_UnadjustedGlobalRadiation,
376
+ )
377
+ from hydpy.models.meteo.meteo_fluxes import (
378
+ DailyGlobalRadiation as meteo_fluxes_DailyGlobalRadiation,
379
+ )
380
+ from hydpy.models.meteo.meteo_fluxes import (
381
+ GlobalRadiation as meteo_fluxes_GlobalRadiation,
382
+ )
383
+ from hydpy.models.meteo.meteo_fluxes import (
384
+ MeanPrecipitation as meteo_fluxes_MeanPrecipitation,
385
+ )
386
+ from hydpy.models.musk.musk_inlets import Q as musk_inlets_Q
387
+ from hydpy.models.musk.musk_fluxes import Inflow as musk_fluxes_Inflow
388
+ from hydpy.models.musk.musk_fluxes import Outflow as musk_fluxes_Outflow
389
+ from hydpy.models.musk.musk_outlets import Q as musk_outlets_Q
390
+ from hydpy.models.rconc.rconc_fluxes import Inflow as rconc_fluxes_Inflow
391
+ from hydpy.models.rconc.rconc_fluxes import Outflow as rconc_fluxes_Outflow
392
+ from hydpy.models.sw1d.sw1d_inlets import LongQ as sw1d_inlets_LongQ
393
+ from hydpy.models.sw1d.sw1d_inlets import LatQ as sw1d_inlets_LatQ
394
+ from hydpy.models.sw1d.sw1d_receivers import WaterLevel as sw1d_receivers_WaterLevel
395
+ from hydpy.models.sw1d.sw1d_factors import MaxTimeStep as sw1d_factors_MaxTimeStep
396
+ from hydpy.models.sw1d.sw1d_factors import TimeStep as sw1d_factors_TimeStep
397
+ from hydpy.models.sw1d.sw1d_factors import WaterDepth as sw1d_factors_WaterDepth
398
+ from hydpy.models.sw1d.sw1d_factors import WaterLevel as sw1d_factors_WaterLevel
399
+ from hydpy.models.sw1d.sw1d_factors import (
400
+ WaterLevelUpstream as sw1d_factors_WaterLevelUpstream,
401
+ )
402
+ from hydpy.models.sw1d.sw1d_factors import (
403
+ WaterLevelDownstream as sw1d_factors_WaterLevelDownstream,
404
+ )
405
+ from hydpy.models.sw1d.sw1d_factors import (
406
+ WaterVolumeUpstream as sw1d_factors_WaterVolumeUpstream,
407
+ )
408
+ from hydpy.models.sw1d.sw1d_factors import (
409
+ WaterVolumeDownstream as sw1d_factors_WaterVolumeDownstream,
410
+ )
411
+ from hydpy.models.sw1d.sw1d_factors import WettedArea as sw1d_factors_WettedArea
412
+ from hydpy.models.sw1d.sw1d_factors import (
413
+ WettedPerimeter as sw1d_factors_WettedPerimeter,
414
+ )
415
+ from hydpy.models.sw1d.sw1d_fluxes import Inflow as sw1d_fluxes_Inflow
416
+ from hydpy.models.sw1d.sw1d_fluxes import Outflow as sw1d_fluxes_Outflow
417
+ from hydpy.models.sw1d.sw1d_fluxes import LateralFlow as sw1d_fluxes_LateralFlow
418
+ from hydpy.models.sw1d.sw1d_fluxes import NetInflow as sw1d_fluxes_NetInflow
419
+ from hydpy.models.sw1d.sw1d_fluxes import (
420
+ DischargeUpstream as sw1d_fluxes_DischargeUpstream,
421
+ )
422
+ from hydpy.models.sw1d.sw1d_fluxes import (
423
+ DischargeDownstream as sw1d_fluxes_DischargeDownstream,
424
+ )
425
+ from hydpy.models.sw1d.sw1d_fluxes import (
426
+ DischargeVolume as sw1d_fluxes_DischargeVolume,
427
+ )
428
+ from hydpy.models.sw1d.sw1d_states import WaterVolume as sw1d_states_WaterVolume
429
+ from hydpy.models.sw1d.sw1d_states import Discharge as sw1d_states_Discharge
430
+ from hydpy.models.sw1d.sw1d_outlets import LongQ as sw1d_outlets_LongQ
431
+ from hydpy.models.sw1d.sw1d_senders import WaterLevel as sw1d_senders_WaterLevel
432
+ from hydpy.models.test.test_fluxes import Q as test_fluxes_Q
433
+ from hydpy.models.test.test_states import S as test_states_S
434
+ from hydpy.models.whmod.whmod_inputs import (
435
+ Precipitation as whmod_inputs_Precipitation,
436
+ )
437
+ from hydpy.models.whmod.whmod_inputs import Temperature as whmod_inputs_Temperature
438
+ from hydpy.models.whmod.whmod_fluxes import (
439
+ CisternInflow as whmod_fluxes_CisternInflow,
440
+ )
441
+ from hydpy.models.whmod.whmod_fluxes import (
442
+ CisternOverflow as whmod_fluxes_CisternOverflow,
443
+ )
444
+ from hydpy.models.whmod.whmod_fluxes import (
445
+ CisternDemand as whmod_fluxes_CisternDemand,
446
+ )
447
+ from hydpy.models.whmod.whmod_fluxes import (
448
+ CisternExtraction as whmod_fluxes_CisternExtraction,
449
+ )
450
+ from hydpy.models.whmod.whmod_fluxes import (
451
+ ActualRecharge as whmod_fluxes_ActualRecharge,
452
+ )
453
+ from hydpy.models.whmod.whmod_fluxes import (
454
+ DelayedRecharge as whmod_fluxes_DelayedRecharge,
455
+ )
456
+ from hydpy.models.whmod.whmod_states import (
457
+ CisternWater as whmod_states_CisternWater,
458
+ )
459
+ from hydpy.models.whmod.whmod_states import DeepWater as whmod_states_DeepWater
460
+ from hydpy.models.wland.wland_inputs import T as wland_inputs_T
461
+ from hydpy.models.wland.wland_inputs import P as wland_inputs_P
462
+ from hydpy.models.wland.wland_inputs import FXG as wland_inputs_FXG
463
+ from hydpy.models.wland.wland_inputs import FXS as wland_inputs_FXS
464
+ from hydpy.models.wland.wland_factors import DHS as wland_factors_DHS
465
+ from hydpy.models.wland.wland_fluxes import PC as wland_fluxes_PC
466
+ from hydpy.models.wland.wland_fluxes import PS as wland_fluxes_PS
467
+ from hydpy.models.wland.wland_fluxes import PVE as wland_fluxes_PVE
468
+ from hydpy.models.wland.wland_fluxes import PV as wland_fluxes_PV
469
+ from hydpy.models.wland.wland_fluxes import PQ as wland_fluxes_PQ
470
+ from hydpy.models.wland.wland_fluxes import ETVE as wland_fluxes_ETVE
471
+ from hydpy.models.wland.wland_fluxes import ETV as wland_fluxes_ETV
472
+ from hydpy.models.wland.wland_fluxes import ES as wland_fluxes_ES
473
+ from hydpy.models.wland.wland_fluxes import ET as wland_fluxes_ET
474
+ from hydpy.models.wland.wland_fluxes import GR as wland_fluxes_GR
475
+ from hydpy.models.wland.wland_fluxes import FXS as wland_fluxes_FXS
476
+ from hydpy.models.wland.wland_fluxes import FXG as wland_fluxes_FXG
477
+ from hydpy.models.wland.wland_fluxes import CDG as wland_fluxes_CDG
478
+ from hydpy.models.wland.wland_fluxes import FGSE as wland_fluxes_FGSE
479
+ from hydpy.models.wland.wland_fluxes import FGS as wland_fluxes_FGS
480
+ from hydpy.models.wland.wland_fluxes import FQS as wland_fluxes_FQS
481
+ from hydpy.models.wland.wland_fluxes import RH as wland_fluxes_RH
482
+ from hydpy.models.wland.wland_fluxes import R as wland_fluxes_R
483
+ from hydpy.models.wland.wland_states import DVE as wland_states_DVE
484
+ from hydpy.models.wland.wland_states import DV as wland_states_DV
485
+ from hydpy.models.wland.wland_states import HGE as wland_states_HGE
486
+ from hydpy.models.wland.wland_states import DG as wland_states_DG
487
+ from hydpy.models.wland.wland_states import HQ as wland_states_HQ
488
+ from hydpy.models.wland.wland_states import HS as wland_states_HS
489
+ from hydpy.models.wland.wland_outlets import Q as wland_outlets_Q
490
+ from hydpy.models.wq.wq_factors import WaterDepth as wq_factors_WaterDepth
491
+ from hydpy.models.wq.wq_factors import WaterLevel as wq_factors_WaterLevel
492
+ from hydpy.models.wq.wq_factors import WettedArea as wq_factors_WettedArea
493
+ from hydpy.models.wq.wq_factors import WettedPerimeter as wq_factors_WettedPerimeter
494
+ from hydpy.models.wq.wq_factors import SurfaceWidth as wq_factors_SurfaceWidth
495
+ from hydpy.models.wq.wq_factors import (
496
+ DischargeDerivative as wq_factors_DischargeDerivative,
497
+ )
498
+ from hydpy.models.wq.wq_factors import Celerity as wq_factors_Celerity
499
+ from hydpy.models.wq.wq_fluxes import Discharge as wq_fluxes_Discharge
500
+ else:
501
+ arma_inlets_Q = LazyInOutSequenceImport(
502
+ modulename="hydpy.models.arma.arma_inlets",
503
+ classname="Q",
504
+ alias="arma_inlets_Q",
505
+ namespace=locals(),
506
+ )
507
+ arma_fluxes_QIn = LazyInOutSequenceImport(
508
+ modulename="hydpy.models.arma.arma_fluxes",
509
+ classname="QIn",
510
+ alias="arma_fluxes_QIn",
511
+ namespace=locals(),
512
+ )
513
+ arma_fluxes_QOut = LazyInOutSequenceImport(
514
+ modulename="hydpy.models.arma.arma_fluxes",
515
+ classname="QOut",
516
+ alias="arma_fluxes_QOut",
517
+ namespace=locals(),
518
+ )
519
+ arma_outlets_Q = LazyInOutSequenceImport(
520
+ modulename="hydpy.models.arma.arma_outlets",
521
+ classname="Q",
522
+ alias="arma_outlets_Q",
523
+ namespace=locals(),
524
+ )
525
+ conv_inlets_Inputs = LazyInOutSequenceImport(
526
+ modulename="hydpy.models.conv.conv_inlets",
527
+ classname="Inputs",
528
+ alias="conv_inlets_Inputs",
529
+ namespace=locals(),
530
+ )
531
+ conv_fluxes_ActualConstant = LazyInOutSequenceImport(
532
+ modulename="hydpy.models.conv.conv_fluxes",
533
+ classname="ActualConstant",
534
+ alias="conv_fluxes_ActualConstant",
535
+ namespace=locals(),
536
+ )
537
+ conv_fluxes_ActualFactor = LazyInOutSequenceImport(
538
+ modulename="hydpy.models.conv.conv_fluxes",
539
+ classname="ActualFactor",
540
+ alias="conv_fluxes_ActualFactor",
541
+ namespace=locals(),
542
+ )
543
+ conv_outlets_Outputs = LazyInOutSequenceImport(
544
+ modulename="hydpy.models.conv.conv_outlets",
545
+ classname="Outputs",
546
+ alias="conv_outlets_Outputs",
547
+ namespace=locals(),
548
+ )
549
+ dam_inlets_Q = LazyInOutSequenceImport(
550
+ modulename="hydpy.models.dam.dam_inlets",
551
+ classname="Q",
552
+ alias="dam_inlets_Q",
553
+ namespace=locals(),
554
+ )
555
+ dam_inlets_S = LazyInOutSequenceImport(
556
+ modulename="hydpy.models.dam.dam_inlets",
557
+ classname="S",
558
+ alias="dam_inlets_S",
559
+ namespace=locals(),
560
+ )
561
+ dam_inlets_R = LazyInOutSequenceImport(
562
+ modulename="hydpy.models.dam.dam_inlets",
563
+ classname="R",
564
+ alias="dam_inlets_R",
565
+ namespace=locals(),
566
+ )
567
+ dam_inlets_E = LazyInOutSequenceImport(
568
+ modulename="hydpy.models.dam.dam_inlets",
569
+ classname="E",
570
+ alias="dam_inlets_E",
571
+ namespace=locals(),
572
+ )
573
+ dam_receivers_Q = LazyInOutSequenceImport(
574
+ modulename="hydpy.models.dam.dam_receivers",
575
+ classname="Q",
576
+ alias="dam_receivers_Q",
577
+ namespace=locals(),
578
+ )
579
+ dam_receivers_D = LazyInOutSequenceImport(
580
+ modulename="hydpy.models.dam.dam_receivers",
581
+ classname="D",
582
+ alias="dam_receivers_D",
583
+ namespace=locals(),
584
+ )
585
+ dam_receivers_S = LazyInOutSequenceImport(
586
+ modulename="hydpy.models.dam.dam_receivers",
587
+ classname="S",
588
+ alias="dam_receivers_S",
589
+ namespace=locals(),
590
+ )
591
+ dam_receivers_R = LazyInOutSequenceImport(
592
+ modulename="hydpy.models.dam.dam_receivers",
593
+ classname="R",
594
+ alias="dam_receivers_R",
595
+ namespace=locals(),
596
+ )
597
+ dam_receivers_OWL = LazyInOutSequenceImport(
598
+ modulename="hydpy.models.dam.dam_receivers",
599
+ classname="OWL",
600
+ alias="dam_receivers_OWL",
601
+ namespace=locals(),
602
+ )
603
+ dam_receivers_RWL = LazyInOutSequenceImport(
604
+ modulename="hydpy.models.dam.dam_receivers",
605
+ classname="RWL",
606
+ alias="dam_receivers_RWL",
607
+ namespace=locals(),
608
+ )
609
+ dam_factors_WaterLevel = LazyInOutSequenceImport(
610
+ modulename="hydpy.models.dam.dam_factors",
611
+ classname="WaterLevel",
612
+ alias="dam_factors_WaterLevel",
613
+ namespace=locals(),
614
+ )
615
+ dam_factors_OuterWaterLevel = LazyInOutSequenceImport(
616
+ modulename="hydpy.models.dam.dam_factors",
617
+ classname="OuterWaterLevel",
618
+ alias="dam_factors_OuterWaterLevel",
619
+ namespace=locals(),
620
+ )
621
+ dam_factors_RemoteWaterLevel = LazyInOutSequenceImport(
622
+ modulename="hydpy.models.dam.dam_factors",
623
+ classname="RemoteWaterLevel",
624
+ alias="dam_factors_RemoteWaterLevel",
625
+ namespace=locals(),
626
+ )
627
+ dam_factors_WaterLevelDifference = LazyInOutSequenceImport(
628
+ modulename="hydpy.models.dam.dam_factors",
629
+ classname="WaterLevelDifference",
630
+ alias="dam_factors_WaterLevelDifference",
631
+ namespace=locals(),
632
+ )
633
+ dam_factors_EffectiveWaterLevelDifference = LazyInOutSequenceImport(
634
+ modulename="hydpy.models.dam.dam_factors",
635
+ classname="EffectiveWaterLevelDifference",
636
+ alias="dam_factors_EffectiveWaterLevelDifference",
637
+ namespace=locals(),
638
+ )
639
+ dam_fluxes_Precipitation = LazyInOutSequenceImport(
640
+ modulename="hydpy.models.dam.dam_fluxes",
641
+ classname="Precipitation",
642
+ alias="dam_fluxes_Precipitation",
643
+ namespace=locals(),
644
+ )
645
+ dam_fluxes_AdjustedPrecipitation = LazyInOutSequenceImport(
646
+ modulename="hydpy.models.dam.dam_fluxes",
647
+ classname="AdjustedPrecipitation",
648
+ alias="dam_fluxes_AdjustedPrecipitation",
649
+ namespace=locals(),
650
+ )
651
+ dam_fluxes_PotentialEvaporation = LazyInOutSequenceImport(
652
+ modulename="hydpy.models.dam.dam_fluxes",
653
+ classname="PotentialEvaporation",
654
+ alias="dam_fluxes_PotentialEvaporation",
655
+ namespace=locals(),
656
+ )
657
+ dam_fluxes_AdjustedEvaporation = LazyInOutSequenceImport(
658
+ modulename="hydpy.models.dam.dam_fluxes",
659
+ classname="AdjustedEvaporation",
660
+ alias="dam_fluxes_AdjustedEvaporation",
661
+ namespace=locals(),
662
+ )
663
+ dam_fluxes_ActualEvaporation = LazyInOutSequenceImport(
664
+ modulename="hydpy.models.dam.dam_fluxes",
665
+ classname="ActualEvaporation",
666
+ alias="dam_fluxes_ActualEvaporation",
667
+ namespace=locals(),
668
+ )
669
+ dam_fluxes_Inflow = LazyInOutSequenceImport(
670
+ modulename="hydpy.models.dam.dam_fluxes",
671
+ classname="Inflow",
672
+ alias="dam_fluxes_Inflow",
673
+ namespace=locals(),
674
+ )
675
+ dam_fluxes_Exchange = LazyInOutSequenceImport(
676
+ modulename="hydpy.models.dam.dam_fluxes",
677
+ classname="Exchange",
678
+ alias="dam_fluxes_Exchange",
679
+ namespace=locals(),
680
+ )
681
+ dam_fluxes_TotalRemoteDischarge = LazyInOutSequenceImport(
682
+ modulename="hydpy.models.dam.dam_fluxes",
683
+ classname="TotalRemoteDischarge",
684
+ alias="dam_fluxes_TotalRemoteDischarge",
685
+ namespace=locals(),
686
+ )
687
+ dam_fluxes_NaturalRemoteDischarge = LazyInOutSequenceImport(
688
+ modulename="hydpy.models.dam.dam_fluxes",
689
+ classname="NaturalRemoteDischarge",
690
+ alias="dam_fluxes_NaturalRemoteDischarge",
691
+ namespace=locals(),
692
+ )
693
+ dam_fluxes_RemoteDemand = LazyInOutSequenceImport(
694
+ modulename="hydpy.models.dam.dam_fluxes",
695
+ classname="RemoteDemand",
696
+ alias="dam_fluxes_RemoteDemand",
697
+ namespace=locals(),
698
+ )
699
+ dam_fluxes_RemoteFailure = LazyInOutSequenceImport(
700
+ modulename="hydpy.models.dam.dam_fluxes",
701
+ classname="RemoteFailure",
702
+ alias="dam_fluxes_RemoteFailure",
703
+ namespace=locals(),
704
+ )
705
+ dam_fluxes_RequiredRemoteRelease = LazyInOutSequenceImport(
706
+ modulename="hydpy.models.dam.dam_fluxes",
707
+ classname="RequiredRemoteRelease",
708
+ alias="dam_fluxes_RequiredRemoteRelease",
709
+ namespace=locals(),
710
+ )
711
+ dam_fluxes_AllowedRemoteRelief = LazyInOutSequenceImport(
712
+ modulename="hydpy.models.dam.dam_fluxes",
713
+ classname="AllowedRemoteRelief",
714
+ alias="dam_fluxes_AllowedRemoteRelief",
715
+ namespace=locals(),
716
+ )
717
+ dam_fluxes_RequiredRemoteSupply = LazyInOutSequenceImport(
718
+ modulename="hydpy.models.dam.dam_fluxes",
719
+ classname="RequiredRemoteSupply",
720
+ alias="dam_fluxes_RequiredRemoteSupply",
721
+ namespace=locals(),
722
+ )
723
+ dam_fluxes_PossibleRemoteRelief = LazyInOutSequenceImport(
724
+ modulename="hydpy.models.dam.dam_fluxes",
725
+ classname="PossibleRemoteRelief",
726
+ alias="dam_fluxes_PossibleRemoteRelief",
727
+ namespace=locals(),
728
+ )
729
+ dam_fluxes_ActualRemoteRelief = LazyInOutSequenceImport(
730
+ modulename="hydpy.models.dam.dam_fluxes",
731
+ classname="ActualRemoteRelief",
732
+ alias="dam_fluxes_ActualRemoteRelief",
733
+ namespace=locals(),
734
+ )
735
+ dam_fluxes_RequiredRelease = LazyInOutSequenceImport(
736
+ modulename="hydpy.models.dam.dam_fluxes",
737
+ classname="RequiredRelease",
738
+ alias="dam_fluxes_RequiredRelease",
739
+ namespace=locals(),
740
+ )
741
+ dam_fluxes_TargetedRelease = LazyInOutSequenceImport(
742
+ modulename="hydpy.models.dam.dam_fluxes",
743
+ classname="TargetedRelease",
744
+ alias="dam_fluxes_TargetedRelease",
745
+ namespace=locals(),
746
+ )
747
+ dam_fluxes_ActualRelease = LazyInOutSequenceImport(
748
+ modulename="hydpy.models.dam.dam_fluxes",
749
+ classname="ActualRelease",
750
+ alias="dam_fluxes_ActualRelease",
751
+ namespace=locals(),
752
+ )
753
+ dam_fluxes_MissingRemoteRelease = LazyInOutSequenceImport(
754
+ modulename="hydpy.models.dam.dam_fluxes",
755
+ classname="MissingRemoteRelease",
756
+ alias="dam_fluxes_MissingRemoteRelease",
757
+ namespace=locals(),
758
+ )
759
+ dam_fluxes_ActualRemoteRelease = LazyInOutSequenceImport(
760
+ modulename="hydpy.models.dam.dam_fluxes",
761
+ classname="ActualRemoteRelease",
762
+ alias="dam_fluxes_ActualRemoteRelease",
763
+ namespace=locals(),
764
+ )
765
+ dam_fluxes_FloodDischarge = LazyInOutSequenceImport(
766
+ modulename="hydpy.models.dam.dam_fluxes",
767
+ classname="FloodDischarge",
768
+ alias="dam_fluxes_FloodDischarge",
769
+ namespace=locals(),
770
+ )
771
+ dam_fluxes_FreeDischarge = LazyInOutSequenceImport(
772
+ modulename="hydpy.models.dam.dam_fluxes",
773
+ classname="FreeDischarge",
774
+ alias="dam_fluxes_FreeDischarge",
775
+ namespace=locals(),
776
+ )
777
+ dam_fluxes_MaxForcedDischarge = LazyInOutSequenceImport(
778
+ modulename="hydpy.models.dam.dam_fluxes",
779
+ classname="MaxForcedDischarge",
780
+ alias="dam_fluxes_MaxForcedDischarge",
781
+ namespace=locals(),
782
+ )
783
+ dam_fluxes_MaxFreeDischarge = LazyInOutSequenceImport(
784
+ modulename="hydpy.models.dam.dam_fluxes",
785
+ classname="MaxFreeDischarge",
786
+ alias="dam_fluxes_MaxFreeDischarge",
787
+ namespace=locals(),
788
+ )
789
+ dam_fluxes_ForcedDischarge = LazyInOutSequenceImport(
790
+ modulename="hydpy.models.dam.dam_fluxes",
791
+ classname="ForcedDischarge",
792
+ alias="dam_fluxes_ForcedDischarge",
793
+ namespace=locals(),
794
+ )
795
+ dam_fluxes_Outflow = LazyInOutSequenceImport(
796
+ modulename="hydpy.models.dam.dam_fluxes",
797
+ classname="Outflow",
798
+ alias="dam_fluxes_Outflow",
799
+ namespace=locals(),
800
+ )
801
+ dam_states_WaterVolume = LazyInOutSequenceImport(
802
+ modulename="hydpy.models.dam.dam_states",
803
+ classname="WaterVolume",
804
+ alias="dam_states_WaterVolume",
805
+ namespace=locals(),
806
+ )
807
+ dam_outlets_Q = LazyInOutSequenceImport(
808
+ modulename="hydpy.models.dam.dam_outlets",
809
+ classname="Q",
810
+ alias="dam_outlets_Q",
811
+ namespace=locals(),
812
+ )
813
+ dam_outlets_S = LazyInOutSequenceImport(
814
+ modulename="hydpy.models.dam.dam_outlets",
815
+ classname="S",
816
+ alias="dam_outlets_S",
817
+ namespace=locals(),
818
+ )
819
+ dam_outlets_R = LazyInOutSequenceImport(
820
+ modulename="hydpy.models.dam.dam_outlets",
821
+ classname="R",
822
+ alias="dam_outlets_R",
823
+ namespace=locals(),
824
+ )
825
+ dam_senders_D = LazyInOutSequenceImport(
826
+ modulename="hydpy.models.dam.dam_senders",
827
+ classname="D",
828
+ alias="dam_senders_D",
829
+ namespace=locals(),
830
+ )
831
+ dam_senders_S = LazyInOutSequenceImport(
832
+ modulename="hydpy.models.dam.dam_senders",
833
+ classname="S",
834
+ alias="dam_senders_S",
835
+ namespace=locals(),
836
+ )
837
+ dam_senders_R = LazyInOutSequenceImport(
838
+ modulename="hydpy.models.dam.dam_senders",
839
+ classname="R",
840
+ alias="dam_senders_R",
841
+ namespace=locals(),
842
+ )
843
+ dummy_inlets_Q = LazyInOutSequenceImport(
844
+ modulename="hydpy.models.dummy.dummy_inlets",
845
+ classname="Q",
846
+ alias="dummy_inlets_Q",
847
+ namespace=locals(),
848
+ )
849
+ dummy_fluxes_Q = LazyInOutSequenceImport(
850
+ modulename="hydpy.models.dummy.dummy_fluxes",
851
+ classname="Q",
852
+ alias="dummy_fluxes_Q",
853
+ namespace=locals(),
854
+ )
855
+ dummy_outlets_Q = LazyInOutSequenceImport(
856
+ modulename="hydpy.models.dummy.dummy_outlets",
857
+ classname="Q",
858
+ alias="dummy_outlets_Q",
859
+ namespace=locals(),
860
+ )
861
+ evap_inputs_ReferenceEvapotranspiration = LazyInOutSequenceImport(
862
+ modulename="hydpy.models.evap.evap_inputs",
863
+ classname="ReferenceEvapotranspiration",
864
+ alias="evap_inputs_ReferenceEvapotranspiration",
865
+ namespace=locals(),
866
+ )
867
+ evap_inputs_RelativeHumidity = LazyInOutSequenceImport(
868
+ modulename="hydpy.models.evap.evap_inputs",
869
+ classname="RelativeHumidity",
870
+ alias="evap_inputs_RelativeHumidity",
871
+ namespace=locals(),
872
+ )
873
+ evap_inputs_WindSpeed = LazyInOutSequenceImport(
874
+ modulename="hydpy.models.evap.evap_inputs",
875
+ classname="WindSpeed",
876
+ alias="evap_inputs_WindSpeed",
877
+ namespace=locals(),
878
+ )
879
+ evap_inputs_AtmosphericPressure = LazyInOutSequenceImport(
880
+ modulename="hydpy.models.evap.evap_inputs",
881
+ classname="AtmosphericPressure",
882
+ alias="evap_inputs_AtmosphericPressure",
883
+ namespace=locals(),
884
+ )
885
+ evap_inputs_NormalAirTemperature = LazyInOutSequenceImport(
886
+ modulename="hydpy.models.evap.evap_inputs",
887
+ classname="NormalAirTemperature",
888
+ alias="evap_inputs_NormalAirTemperature",
889
+ namespace=locals(),
890
+ )
891
+ evap_inputs_NormalEvapotranspiration = LazyInOutSequenceImport(
892
+ modulename="hydpy.models.evap.evap_inputs",
893
+ classname="NormalEvapotranspiration",
894
+ alias="evap_inputs_NormalEvapotranspiration",
895
+ namespace=locals(),
896
+ )
897
+ evap_factors_MeanAirTemperature = LazyInOutSequenceImport(
898
+ modulename="hydpy.models.evap.evap_factors",
899
+ classname="MeanAirTemperature",
900
+ alias="evap_factors_MeanAirTemperature",
901
+ namespace=locals(),
902
+ )
903
+ evap_factors_WindSpeed2m = LazyInOutSequenceImport(
904
+ modulename="hydpy.models.evap.evap_factors",
905
+ classname="WindSpeed2m",
906
+ alias="evap_factors_WindSpeed2m",
907
+ namespace=locals(),
908
+ )
909
+ evap_factors_DailyWindSpeed2m = LazyInOutSequenceImport(
910
+ modulename="hydpy.models.evap.evap_factors",
911
+ classname="DailyWindSpeed2m",
912
+ alias="evap_factors_DailyWindSpeed2m",
913
+ namespace=locals(),
914
+ )
915
+ evap_factors_WindSpeed10m = LazyInOutSequenceImport(
916
+ modulename="hydpy.models.evap.evap_factors",
917
+ classname="WindSpeed10m",
918
+ alias="evap_factors_WindSpeed10m",
919
+ namespace=locals(),
920
+ )
921
+ evap_factors_DailyRelativeHumidity = LazyInOutSequenceImport(
922
+ modulename="hydpy.models.evap.evap_factors",
923
+ classname="DailyRelativeHumidity",
924
+ alias="evap_factors_DailyRelativeHumidity",
925
+ namespace=locals(),
926
+ )
927
+ evap_factors_SunshineDuration = LazyInOutSequenceImport(
928
+ modulename="hydpy.models.evap.evap_factors",
929
+ classname="SunshineDuration",
930
+ alias="evap_factors_SunshineDuration",
931
+ namespace=locals(),
932
+ )
933
+ evap_factors_PossibleSunshineDuration = LazyInOutSequenceImport(
934
+ modulename="hydpy.models.evap.evap_factors",
935
+ classname="PossibleSunshineDuration",
936
+ alias="evap_factors_PossibleSunshineDuration",
937
+ namespace=locals(),
938
+ )
939
+ evap_factors_DailySunshineDuration = LazyInOutSequenceImport(
940
+ modulename="hydpy.models.evap.evap_factors",
941
+ classname="DailySunshineDuration",
942
+ alias="evap_factors_DailySunshineDuration",
943
+ namespace=locals(),
944
+ )
945
+ evap_factors_DailyPossibleSunshineDuration = LazyInOutSequenceImport(
946
+ modulename="hydpy.models.evap.evap_factors",
947
+ classname="DailyPossibleSunshineDuration",
948
+ alias="evap_factors_DailyPossibleSunshineDuration",
949
+ namespace=locals(),
950
+ )
951
+ evap_factors_PsychrometricConstant = LazyInOutSequenceImport(
952
+ modulename="hydpy.models.evap.evap_factors",
953
+ classname="PsychrometricConstant",
954
+ alias="evap_factors_PsychrometricConstant",
955
+ namespace=locals(),
956
+ )
957
+ evap_factors_AdjustedCloudCoverage = LazyInOutSequenceImport(
958
+ modulename="hydpy.models.evap.evap_factors",
959
+ classname="AdjustedCloudCoverage",
960
+ alias="evap_factors_AdjustedCloudCoverage",
961
+ namespace=locals(),
962
+ )
963
+ evap_fluxes_GlobalRadiation = LazyInOutSequenceImport(
964
+ modulename="hydpy.models.evap.evap_fluxes",
965
+ classname="GlobalRadiation",
966
+ alias="evap_fluxes_GlobalRadiation",
967
+ namespace=locals(),
968
+ )
969
+ evap_fluxes_ClearSkySolarRadiation = LazyInOutSequenceImport(
970
+ modulename="hydpy.models.evap.evap_fluxes",
971
+ classname="ClearSkySolarRadiation",
972
+ alias="evap_fluxes_ClearSkySolarRadiation",
973
+ namespace=locals(),
974
+ )
975
+ evap_fluxes_DailyGlobalRadiation = LazyInOutSequenceImport(
976
+ modulename="hydpy.models.evap.evap_fluxes",
977
+ classname="DailyGlobalRadiation",
978
+ alias="evap_fluxes_DailyGlobalRadiation",
979
+ namespace=locals(),
980
+ )
981
+ evap_fluxes_MeanReferenceEvapotranspiration = LazyInOutSequenceImport(
982
+ modulename="hydpy.models.evap.evap_fluxes",
983
+ classname="MeanReferenceEvapotranspiration",
984
+ alias="evap_fluxes_MeanReferenceEvapotranspiration",
985
+ namespace=locals(),
986
+ )
987
+ evap_fluxes_MeanPotentialEvapotranspiration = LazyInOutSequenceImport(
988
+ modulename="hydpy.models.evap.evap_fluxes",
989
+ classname="MeanPotentialEvapotranspiration",
990
+ alias="evap_fluxes_MeanPotentialEvapotranspiration",
991
+ namespace=locals(),
992
+ )
993
+ evap_states_CloudCoverage = LazyInOutSequenceImport(
994
+ modulename="hydpy.models.evap.evap_states",
995
+ classname="CloudCoverage",
996
+ alias="evap_states_CloudCoverage",
997
+ namespace=locals(),
998
+ )
999
+ exch_inlets_Total = LazyInOutSequenceImport(
1000
+ modulename="hydpy.models.exch.exch_inlets",
1001
+ classname="Total",
1002
+ alias="exch_inlets_Total",
1003
+ namespace=locals(),
1004
+ )
1005
+ exch_receivers_WaterLevel = LazyInOutSequenceImport(
1006
+ modulename="hydpy.models.exch.exch_receivers",
1007
+ classname="WaterLevel",
1008
+ alias="exch_receivers_WaterLevel",
1009
+ namespace=locals(),
1010
+ )
1011
+ exch_receivers_WaterLevels = LazyInOutSequenceImport(
1012
+ modulename="hydpy.models.exch.exch_receivers",
1013
+ classname="WaterLevels",
1014
+ alias="exch_receivers_WaterLevels",
1015
+ namespace=locals(),
1016
+ )
1017
+ exch_factors_DeltaWaterLevel = LazyInOutSequenceImport(
1018
+ modulename="hydpy.models.exch.exch_factors",
1019
+ classname="DeltaWaterLevel",
1020
+ alias="exch_factors_DeltaWaterLevel",
1021
+ namespace=locals(),
1022
+ )
1023
+ exch_fluxes_PotentialExchange = LazyInOutSequenceImport(
1024
+ modulename="hydpy.models.exch.exch_fluxes",
1025
+ classname="PotentialExchange",
1026
+ alias="exch_fluxes_PotentialExchange",
1027
+ namespace=locals(),
1028
+ )
1029
+ exch_fluxes_ActualExchange = LazyInOutSequenceImport(
1030
+ modulename="hydpy.models.exch.exch_fluxes",
1031
+ classname="ActualExchange",
1032
+ alias="exch_fluxes_ActualExchange",
1033
+ namespace=locals(),
1034
+ )
1035
+ exch_fluxes_OriginalInput = LazyInOutSequenceImport(
1036
+ modulename="hydpy.models.exch.exch_fluxes",
1037
+ classname="OriginalInput",
1038
+ alias="exch_fluxes_OriginalInput",
1039
+ namespace=locals(),
1040
+ )
1041
+ exch_fluxes_AdjustedInput = LazyInOutSequenceImport(
1042
+ modulename="hydpy.models.exch.exch_fluxes",
1043
+ classname="AdjustedInput",
1044
+ alias="exch_fluxes_AdjustedInput",
1045
+ namespace=locals(),
1046
+ )
1047
+ exch_outlets_Exchange = LazyInOutSequenceImport(
1048
+ modulename="hydpy.models.exch.exch_outlets",
1049
+ classname="Exchange",
1050
+ alias="exch_outlets_Exchange",
1051
+ namespace=locals(),
1052
+ )
1053
+ exch_outlets_Branched = LazyInOutSequenceImport(
1054
+ modulename="hydpy.models.exch.exch_outlets",
1055
+ classname="Branched",
1056
+ alias="exch_outlets_Branched",
1057
+ namespace=locals(),
1058
+ )
1059
+ ga_inputs_Rainfall = LazyInOutSequenceImport(
1060
+ modulename="hydpy.models.ga.ga_inputs",
1061
+ classname="Rainfall",
1062
+ alias="ga_inputs_Rainfall",
1063
+ namespace=locals(),
1064
+ )
1065
+ ga_inputs_CapillaryRise = LazyInOutSequenceImport(
1066
+ modulename="hydpy.models.ga.ga_inputs",
1067
+ classname="CapillaryRise",
1068
+ alias="ga_inputs_CapillaryRise",
1069
+ namespace=locals(),
1070
+ )
1071
+ ga_inputs_Evaporation = LazyInOutSequenceImport(
1072
+ modulename="hydpy.models.ga.ga_inputs",
1073
+ classname="Evaporation",
1074
+ alias="ga_inputs_Evaporation",
1075
+ namespace=locals(),
1076
+ )
1077
+ ga_fluxes_TotalInfiltration = LazyInOutSequenceImport(
1078
+ modulename="hydpy.models.ga.ga_fluxes",
1079
+ classname="TotalInfiltration",
1080
+ alias="ga_fluxes_TotalInfiltration",
1081
+ namespace=locals(),
1082
+ )
1083
+ ga_fluxes_TotalPercolation = LazyInOutSequenceImport(
1084
+ modulename="hydpy.models.ga.ga_fluxes",
1085
+ classname="TotalPercolation",
1086
+ alias="ga_fluxes_TotalPercolation",
1087
+ namespace=locals(),
1088
+ )
1089
+ ga_fluxes_TotalSoilWaterAddition = LazyInOutSequenceImport(
1090
+ modulename="hydpy.models.ga.ga_fluxes",
1091
+ classname="TotalSoilWaterAddition",
1092
+ alias="ga_fluxes_TotalSoilWaterAddition",
1093
+ namespace=locals(),
1094
+ )
1095
+ ga_fluxes_TotalWithdrawal = LazyInOutSequenceImport(
1096
+ modulename="hydpy.models.ga.ga_fluxes",
1097
+ classname="TotalWithdrawal",
1098
+ alias="ga_fluxes_TotalWithdrawal",
1099
+ namespace=locals(),
1100
+ )
1101
+ ga_fluxes_TotalSurfaceRunoff = LazyInOutSequenceImport(
1102
+ modulename="hydpy.models.ga.ga_fluxes",
1103
+ classname="TotalSurfaceRunoff",
1104
+ alias="ga_fluxes_TotalSurfaceRunoff",
1105
+ namespace=locals(),
1106
+ )
1107
+ gland_inputs_P = LazyInOutSequenceImport(
1108
+ modulename="hydpy.models.gland.gland_inputs",
1109
+ classname="P",
1110
+ alias="gland_inputs_P",
1111
+ namespace=locals(),
1112
+ )
1113
+ gland_fluxes_E = LazyInOutSequenceImport(
1114
+ modulename="hydpy.models.gland.gland_fluxes",
1115
+ classname="E",
1116
+ alias="gland_fluxes_E",
1117
+ namespace=locals(),
1118
+ )
1119
+ gland_fluxes_EN = LazyInOutSequenceImport(
1120
+ modulename="hydpy.models.gland.gland_fluxes",
1121
+ classname="EN",
1122
+ alias="gland_fluxes_EN",
1123
+ namespace=locals(),
1124
+ )
1125
+ gland_fluxes_PN = LazyInOutSequenceImport(
1126
+ modulename="hydpy.models.gland.gland_fluxes",
1127
+ classname="PN",
1128
+ alias="gland_fluxes_PN",
1129
+ namespace=locals(),
1130
+ )
1131
+ gland_fluxes_PS = LazyInOutSequenceImport(
1132
+ modulename="hydpy.models.gland.gland_fluxes",
1133
+ classname="PS",
1134
+ alias="gland_fluxes_PS",
1135
+ namespace=locals(),
1136
+ )
1137
+ gland_fluxes_EI = LazyInOutSequenceImport(
1138
+ modulename="hydpy.models.gland.gland_fluxes",
1139
+ classname="EI",
1140
+ alias="gland_fluxes_EI",
1141
+ namespace=locals(),
1142
+ )
1143
+ gland_fluxes_ES = LazyInOutSequenceImport(
1144
+ modulename="hydpy.models.gland.gland_fluxes",
1145
+ classname="ES",
1146
+ alias="gland_fluxes_ES",
1147
+ namespace=locals(),
1148
+ )
1149
+ gland_fluxes_AE = LazyInOutSequenceImport(
1150
+ modulename="hydpy.models.gland.gland_fluxes",
1151
+ classname="AE",
1152
+ alias="gland_fluxes_AE",
1153
+ namespace=locals(),
1154
+ )
1155
+ gland_fluxes_PR = LazyInOutSequenceImport(
1156
+ modulename="hydpy.models.gland.gland_fluxes",
1157
+ classname="PR",
1158
+ alias="gland_fluxes_PR",
1159
+ namespace=locals(),
1160
+ )
1161
+ gland_fluxes_PR9 = LazyInOutSequenceImport(
1162
+ modulename="hydpy.models.gland.gland_fluxes",
1163
+ classname="PR9",
1164
+ alias="gland_fluxes_PR9",
1165
+ namespace=locals(),
1166
+ )
1167
+ gland_fluxes_PR1 = LazyInOutSequenceImport(
1168
+ modulename="hydpy.models.gland.gland_fluxes",
1169
+ classname="PR1",
1170
+ alias="gland_fluxes_PR1",
1171
+ namespace=locals(),
1172
+ )
1173
+ gland_fluxes_Q10 = LazyInOutSequenceImport(
1174
+ modulename="hydpy.models.gland.gland_fluxes",
1175
+ classname="Q10",
1176
+ alias="gland_fluxes_Q10",
1177
+ namespace=locals(),
1178
+ )
1179
+ gland_fluxes_Perc = LazyInOutSequenceImport(
1180
+ modulename="hydpy.models.gland.gland_fluxes",
1181
+ classname="Perc",
1182
+ alias="gland_fluxes_Perc",
1183
+ namespace=locals(),
1184
+ )
1185
+ gland_fluxes_Q9 = LazyInOutSequenceImport(
1186
+ modulename="hydpy.models.gland.gland_fluxes",
1187
+ classname="Q9",
1188
+ alias="gland_fluxes_Q9",
1189
+ namespace=locals(),
1190
+ )
1191
+ gland_fluxes_Q1 = LazyInOutSequenceImport(
1192
+ modulename="hydpy.models.gland.gland_fluxes",
1193
+ classname="Q1",
1194
+ alias="gland_fluxes_Q1",
1195
+ namespace=locals(),
1196
+ )
1197
+ gland_fluxes_FD = LazyInOutSequenceImport(
1198
+ modulename="hydpy.models.gland.gland_fluxes",
1199
+ classname="FD",
1200
+ alias="gland_fluxes_FD",
1201
+ namespace=locals(),
1202
+ )
1203
+ gland_fluxes_FR = LazyInOutSequenceImport(
1204
+ modulename="hydpy.models.gland.gland_fluxes",
1205
+ classname="FR",
1206
+ alias="gland_fluxes_FR",
1207
+ namespace=locals(),
1208
+ )
1209
+ gland_fluxes_FR2 = LazyInOutSequenceImport(
1210
+ modulename="hydpy.models.gland.gland_fluxes",
1211
+ classname="FR2",
1212
+ alias="gland_fluxes_FR2",
1213
+ namespace=locals(),
1214
+ )
1215
+ gland_fluxes_QR = LazyInOutSequenceImport(
1216
+ modulename="hydpy.models.gland.gland_fluxes",
1217
+ classname="QR",
1218
+ alias="gland_fluxes_QR",
1219
+ namespace=locals(),
1220
+ )
1221
+ gland_fluxes_QR2 = LazyInOutSequenceImport(
1222
+ modulename="hydpy.models.gland.gland_fluxes",
1223
+ classname="QR2",
1224
+ alias="gland_fluxes_QR2",
1225
+ namespace=locals(),
1226
+ )
1227
+ gland_fluxes_QD = LazyInOutSequenceImport(
1228
+ modulename="hydpy.models.gland.gland_fluxes",
1229
+ classname="QD",
1230
+ alias="gland_fluxes_QD",
1231
+ namespace=locals(),
1232
+ )
1233
+ gland_fluxes_QH = LazyInOutSequenceImport(
1234
+ modulename="hydpy.models.gland.gland_fluxes",
1235
+ classname="QH",
1236
+ alias="gland_fluxes_QH",
1237
+ namespace=locals(),
1238
+ )
1239
+ gland_fluxes_QV = LazyInOutSequenceImport(
1240
+ modulename="hydpy.models.gland.gland_fluxes",
1241
+ classname="QV",
1242
+ alias="gland_fluxes_QV",
1243
+ namespace=locals(),
1244
+ )
1245
+ gland_states_I = LazyInOutSequenceImport(
1246
+ modulename="hydpy.models.gland.gland_states",
1247
+ classname="I",
1248
+ alias="gland_states_I",
1249
+ namespace=locals(),
1250
+ )
1251
+ gland_states_S = LazyInOutSequenceImport(
1252
+ modulename="hydpy.models.gland.gland_states",
1253
+ classname="S",
1254
+ alias="gland_states_S",
1255
+ namespace=locals(),
1256
+ )
1257
+ gland_states_R = LazyInOutSequenceImport(
1258
+ modulename="hydpy.models.gland.gland_states",
1259
+ classname="R",
1260
+ alias="gland_states_R",
1261
+ namespace=locals(),
1262
+ )
1263
+ gland_states_R2 = LazyInOutSequenceImport(
1264
+ modulename="hydpy.models.gland.gland_states",
1265
+ classname="R2",
1266
+ alias="gland_states_R2",
1267
+ namespace=locals(),
1268
+ )
1269
+ gland_outlets_Q = LazyInOutSequenceImport(
1270
+ modulename="hydpy.models.gland.gland_outlets",
1271
+ classname="Q",
1272
+ alias="gland_outlets_Q",
1273
+ namespace=locals(),
1274
+ )
1275
+ hland_inputs_P = LazyInOutSequenceImport(
1276
+ modulename="hydpy.models.hland.hland_inputs",
1277
+ classname="P",
1278
+ alias="hland_inputs_P",
1279
+ namespace=locals(),
1280
+ )
1281
+ hland_inputs_T = LazyInOutSequenceImport(
1282
+ modulename="hydpy.models.hland.hland_inputs",
1283
+ classname="T",
1284
+ alias="hland_inputs_T",
1285
+ namespace=locals(),
1286
+ )
1287
+ hland_factors_ContriArea = LazyInOutSequenceImport(
1288
+ modulename="hydpy.models.hland.hland_factors",
1289
+ classname="ContriArea",
1290
+ alias="hland_factors_ContriArea",
1291
+ namespace=locals(),
1292
+ )
1293
+ hland_fluxes_InUZ = LazyInOutSequenceImport(
1294
+ modulename="hydpy.models.hland.hland_fluxes",
1295
+ classname="InUZ",
1296
+ alias="hland_fluxes_InUZ",
1297
+ namespace=locals(),
1298
+ )
1299
+ hland_fluxes_Perc = LazyInOutSequenceImport(
1300
+ modulename="hydpy.models.hland.hland_fluxes",
1301
+ classname="Perc",
1302
+ alias="hland_fluxes_Perc",
1303
+ namespace=locals(),
1304
+ )
1305
+ hland_fluxes_Q0 = LazyInOutSequenceImport(
1306
+ modulename="hydpy.models.hland.hland_fluxes",
1307
+ classname="Q0",
1308
+ alias="hland_fluxes_Q0",
1309
+ namespace=locals(),
1310
+ )
1311
+ hland_fluxes_Q1 = LazyInOutSequenceImport(
1312
+ modulename="hydpy.models.hland.hland_fluxes",
1313
+ classname="Q1",
1314
+ alias="hland_fluxes_Q1",
1315
+ namespace=locals(),
1316
+ )
1317
+ hland_fluxes_GR2 = LazyInOutSequenceImport(
1318
+ modulename="hydpy.models.hland.hland_fluxes",
1319
+ classname="GR2",
1320
+ alias="hland_fluxes_GR2",
1321
+ namespace=locals(),
1322
+ )
1323
+ hland_fluxes_RG2 = LazyInOutSequenceImport(
1324
+ modulename="hydpy.models.hland.hland_fluxes",
1325
+ classname="RG2",
1326
+ alias="hland_fluxes_RG2",
1327
+ namespace=locals(),
1328
+ )
1329
+ hland_fluxes_GR3 = LazyInOutSequenceImport(
1330
+ modulename="hydpy.models.hland.hland_fluxes",
1331
+ classname="GR3",
1332
+ alias="hland_fluxes_GR3",
1333
+ namespace=locals(),
1334
+ )
1335
+ hland_fluxes_RG3 = LazyInOutSequenceImport(
1336
+ modulename="hydpy.models.hland.hland_fluxes",
1337
+ classname="RG3",
1338
+ alias="hland_fluxes_RG3",
1339
+ namespace=locals(),
1340
+ )
1341
+ hland_fluxes_InRC = LazyInOutSequenceImport(
1342
+ modulename="hydpy.models.hland.hland_fluxes",
1343
+ classname="InRC",
1344
+ alias="hland_fluxes_InRC",
1345
+ namespace=locals(),
1346
+ )
1347
+ hland_fluxes_OutRC = LazyInOutSequenceImport(
1348
+ modulename="hydpy.models.hland.hland_fluxes",
1349
+ classname="OutRC",
1350
+ alias="hland_fluxes_OutRC",
1351
+ namespace=locals(),
1352
+ )
1353
+ hland_fluxes_RO = LazyInOutSequenceImport(
1354
+ modulename="hydpy.models.hland.hland_fluxes",
1355
+ classname="RO",
1356
+ alias="hland_fluxes_RO",
1357
+ namespace=locals(),
1358
+ )
1359
+ hland_fluxes_RA = LazyInOutSequenceImport(
1360
+ modulename="hydpy.models.hland.hland_fluxes",
1361
+ classname="RA",
1362
+ alias="hland_fluxes_RA",
1363
+ namespace=locals(),
1364
+ )
1365
+ hland_fluxes_RT = LazyInOutSequenceImport(
1366
+ modulename="hydpy.models.hland.hland_fluxes",
1367
+ classname="RT",
1368
+ alias="hland_fluxes_RT",
1369
+ namespace=locals(),
1370
+ )
1371
+ hland_fluxes_QT = LazyInOutSequenceImport(
1372
+ modulename="hydpy.models.hland.hland_fluxes",
1373
+ classname="QT",
1374
+ alias="hland_fluxes_QT",
1375
+ namespace=locals(),
1376
+ )
1377
+ hland_states_UZ = LazyInOutSequenceImport(
1378
+ modulename="hydpy.models.hland.hland_states",
1379
+ classname="UZ",
1380
+ alias="hland_states_UZ",
1381
+ namespace=locals(),
1382
+ )
1383
+ hland_states_LZ = LazyInOutSequenceImport(
1384
+ modulename="hydpy.models.hland.hland_states",
1385
+ classname="LZ",
1386
+ alias="hland_states_LZ",
1387
+ namespace=locals(),
1388
+ )
1389
+ hland_states_SG2 = LazyInOutSequenceImport(
1390
+ modulename="hydpy.models.hland.hland_states",
1391
+ classname="SG2",
1392
+ alias="hland_states_SG2",
1393
+ namespace=locals(),
1394
+ )
1395
+ hland_states_SG3 = LazyInOutSequenceImport(
1396
+ modulename="hydpy.models.hland.hland_states",
1397
+ classname="SG3",
1398
+ alias="hland_states_SG3",
1399
+ namespace=locals(),
1400
+ )
1401
+ hland_outlets_Q = LazyInOutSequenceImport(
1402
+ modulename="hydpy.models.hland.hland_outlets",
1403
+ classname="Q",
1404
+ alias="hland_outlets_Q",
1405
+ namespace=locals(),
1406
+ )
1407
+ kinw_inlets_Q = LazyInOutSequenceImport(
1408
+ modulename="hydpy.models.kinw.kinw_inlets",
1409
+ classname="Q",
1410
+ alias="kinw_inlets_Q",
1411
+ namespace=locals(),
1412
+ )
1413
+ kinw_fluxes_QZ = LazyInOutSequenceImport(
1414
+ modulename="hydpy.models.kinw.kinw_fluxes",
1415
+ classname="QZ",
1416
+ alias="kinw_fluxes_QZ",
1417
+ namespace=locals(),
1418
+ )
1419
+ kinw_fluxes_QZA = LazyInOutSequenceImport(
1420
+ modulename="hydpy.models.kinw.kinw_fluxes",
1421
+ classname="QZA",
1422
+ alias="kinw_fluxes_QZA",
1423
+ namespace=locals(),
1424
+ )
1425
+ kinw_fluxes_QA = LazyInOutSequenceImport(
1426
+ modulename="hydpy.models.kinw.kinw_fluxes",
1427
+ classname="QA",
1428
+ alias="kinw_fluxes_QA",
1429
+ namespace=locals(),
1430
+ )
1431
+ kinw_outlets_Q = LazyInOutSequenceImport(
1432
+ modulename="hydpy.models.kinw.kinw_outlets",
1433
+ classname="Q",
1434
+ alias="kinw_outlets_Q",
1435
+ namespace=locals(),
1436
+ )
1437
+ lland_inputs_Nied = LazyInOutSequenceImport(
1438
+ modulename="hydpy.models.lland.lland_inputs",
1439
+ classname="Nied",
1440
+ alias="lland_inputs_Nied",
1441
+ namespace=locals(),
1442
+ )
1443
+ lland_inputs_TemL = LazyInOutSequenceImport(
1444
+ modulename="hydpy.models.lland.lland_inputs",
1445
+ classname="TemL",
1446
+ alias="lland_inputs_TemL",
1447
+ namespace=locals(),
1448
+ )
1449
+ lland_inputs_RelativeHumidity = LazyInOutSequenceImport(
1450
+ modulename="hydpy.models.lland.lland_inputs",
1451
+ classname="RelativeHumidity",
1452
+ alias="lland_inputs_RelativeHumidity",
1453
+ namespace=locals(),
1454
+ )
1455
+ lland_inputs_WindSpeed = LazyInOutSequenceImport(
1456
+ modulename="hydpy.models.lland.lland_inputs",
1457
+ classname="WindSpeed",
1458
+ alias="lland_inputs_WindSpeed",
1459
+ namespace=locals(),
1460
+ )
1461
+ lland_inlets_Q = LazyInOutSequenceImport(
1462
+ modulename="hydpy.models.lland.lland_inlets",
1463
+ classname="Q",
1464
+ alias="lland_inlets_Q",
1465
+ namespace=locals(),
1466
+ )
1467
+ lland_factors_PossibleSunshineDuration = LazyInOutSequenceImport(
1468
+ modulename="hydpy.models.lland.lland_factors",
1469
+ classname="PossibleSunshineDuration",
1470
+ alias="lland_factors_PossibleSunshineDuration",
1471
+ namespace=locals(),
1472
+ )
1473
+ lland_factors_SunshineDuration = LazyInOutSequenceImport(
1474
+ modulename="hydpy.models.lland.lland_factors",
1475
+ classname="SunshineDuration",
1476
+ alias="lland_factors_SunshineDuration",
1477
+ namespace=locals(),
1478
+ )
1479
+ lland_fluxes_QZ = LazyInOutSequenceImport(
1480
+ modulename="hydpy.models.lland.lland_fluxes",
1481
+ classname="QZ",
1482
+ alias="lland_fluxes_QZ",
1483
+ namespace=locals(),
1484
+ )
1485
+ lland_fluxes_QZH = LazyInOutSequenceImport(
1486
+ modulename="hydpy.models.lland.lland_fluxes",
1487
+ classname="QZH",
1488
+ alias="lland_fluxes_QZH",
1489
+ namespace=locals(),
1490
+ )
1491
+ lland_fluxes_DailySunshineDuration = LazyInOutSequenceImport(
1492
+ modulename="hydpy.models.lland.lland_fluxes",
1493
+ classname="DailySunshineDuration",
1494
+ alias="lland_fluxes_DailySunshineDuration",
1495
+ namespace=locals(),
1496
+ )
1497
+ lland_fluxes_DailyPossibleSunshineDuration = LazyInOutSequenceImport(
1498
+ modulename="hydpy.models.lland.lland_fluxes",
1499
+ classname="DailyPossibleSunshineDuration",
1500
+ alias="lland_fluxes_DailyPossibleSunshineDuration",
1501
+ namespace=locals(),
1502
+ )
1503
+ lland_fluxes_GlobalRadiation = LazyInOutSequenceImport(
1504
+ modulename="hydpy.models.lland.lland_fluxes",
1505
+ classname="GlobalRadiation",
1506
+ alias="lland_fluxes_GlobalRadiation",
1507
+ namespace=locals(),
1508
+ )
1509
+ lland_fluxes_WindSpeed2m = LazyInOutSequenceImport(
1510
+ modulename="hydpy.models.lland.lland_fluxes",
1511
+ classname="WindSpeed2m",
1512
+ alias="lland_fluxes_WindSpeed2m",
1513
+ namespace=locals(),
1514
+ )
1515
+ lland_fluxes_QDGZ = LazyInOutSequenceImport(
1516
+ modulename="hydpy.models.lland.lland_fluxes",
1517
+ classname="QDGZ",
1518
+ alias="lland_fluxes_QDGZ",
1519
+ namespace=locals(),
1520
+ )
1521
+ lland_fluxes_QDGZ1 = LazyInOutSequenceImport(
1522
+ modulename="hydpy.models.lland.lland_fluxes",
1523
+ classname="QDGZ1",
1524
+ alias="lland_fluxes_QDGZ1",
1525
+ namespace=locals(),
1526
+ )
1527
+ lland_fluxes_QDGZ2 = LazyInOutSequenceImport(
1528
+ modulename="hydpy.models.lland.lland_fluxes",
1529
+ classname="QDGZ2",
1530
+ alias="lland_fluxes_QDGZ2",
1531
+ namespace=locals(),
1532
+ )
1533
+ lland_fluxes_QIGZ1 = LazyInOutSequenceImport(
1534
+ modulename="hydpy.models.lland.lland_fluxes",
1535
+ classname="QIGZ1",
1536
+ alias="lland_fluxes_QIGZ1",
1537
+ namespace=locals(),
1538
+ )
1539
+ lland_fluxes_QIGZ2 = LazyInOutSequenceImport(
1540
+ modulename="hydpy.models.lland.lland_fluxes",
1541
+ classname="QIGZ2",
1542
+ alias="lland_fluxes_QIGZ2",
1543
+ namespace=locals(),
1544
+ )
1545
+ lland_fluxes_QBGZ = LazyInOutSequenceImport(
1546
+ modulename="hydpy.models.lland.lland_fluxes",
1547
+ classname="QBGZ",
1548
+ alias="lland_fluxes_QBGZ",
1549
+ namespace=locals(),
1550
+ )
1551
+ lland_fluxes_QDGA1 = LazyInOutSequenceImport(
1552
+ modulename="hydpy.models.lland.lland_fluxes",
1553
+ classname="QDGA1",
1554
+ alias="lland_fluxes_QDGA1",
1555
+ namespace=locals(),
1556
+ )
1557
+ lland_fluxes_QDGA2 = LazyInOutSequenceImport(
1558
+ modulename="hydpy.models.lland.lland_fluxes",
1559
+ classname="QDGA2",
1560
+ alias="lland_fluxes_QDGA2",
1561
+ namespace=locals(),
1562
+ )
1563
+ lland_fluxes_QIGA1 = LazyInOutSequenceImport(
1564
+ modulename="hydpy.models.lland.lland_fluxes",
1565
+ classname="QIGA1",
1566
+ alias="lland_fluxes_QIGA1",
1567
+ namespace=locals(),
1568
+ )
1569
+ lland_fluxes_QIGA2 = LazyInOutSequenceImport(
1570
+ modulename="hydpy.models.lland.lland_fluxes",
1571
+ classname="QIGA2",
1572
+ alias="lland_fluxes_QIGA2",
1573
+ namespace=locals(),
1574
+ )
1575
+ lland_fluxes_QBGA = LazyInOutSequenceImport(
1576
+ modulename="hydpy.models.lland.lland_fluxes",
1577
+ classname="QBGA",
1578
+ alias="lland_fluxes_QBGA",
1579
+ namespace=locals(),
1580
+ )
1581
+ lland_fluxes_QAH = LazyInOutSequenceImport(
1582
+ modulename="hydpy.models.lland.lland_fluxes",
1583
+ classname="QAH",
1584
+ alias="lland_fluxes_QAH",
1585
+ namespace=locals(),
1586
+ )
1587
+ lland_fluxes_QA = LazyInOutSequenceImport(
1588
+ modulename="hydpy.models.lland.lland_fluxes",
1589
+ classname="QA",
1590
+ alias="lland_fluxes_QA",
1591
+ namespace=locals(),
1592
+ )
1593
+ lland_states_SDG1 = LazyInOutSequenceImport(
1594
+ modulename="hydpy.models.lland.lland_states",
1595
+ classname="SDG1",
1596
+ alias="lland_states_SDG1",
1597
+ namespace=locals(),
1598
+ )
1599
+ lland_states_SDG2 = LazyInOutSequenceImport(
1600
+ modulename="hydpy.models.lland.lland_states",
1601
+ classname="SDG2",
1602
+ alias="lland_states_SDG2",
1603
+ namespace=locals(),
1604
+ )
1605
+ lland_states_SIG1 = LazyInOutSequenceImport(
1606
+ modulename="hydpy.models.lland.lland_states",
1607
+ classname="SIG1",
1608
+ alias="lland_states_SIG1",
1609
+ namespace=locals(),
1610
+ )
1611
+ lland_states_SIG2 = LazyInOutSequenceImport(
1612
+ modulename="hydpy.models.lland.lland_states",
1613
+ classname="SIG2",
1614
+ alias="lland_states_SIG2",
1615
+ namespace=locals(),
1616
+ )
1617
+ lland_states_SBG = LazyInOutSequenceImport(
1618
+ modulename="hydpy.models.lland.lland_states",
1619
+ classname="SBG",
1620
+ alias="lland_states_SBG",
1621
+ namespace=locals(),
1622
+ )
1623
+ lland_outlets_Q = LazyInOutSequenceImport(
1624
+ modulename="hydpy.models.lland.lland_outlets",
1625
+ classname="Q",
1626
+ alias="lland_outlets_Q",
1627
+ namespace=locals(),
1628
+ )
1629
+ meteo_inputs_PossibleSunshineDuration = LazyInOutSequenceImport(
1630
+ modulename="hydpy.models.meteo.meteo_inputs",
1631
+ classname="PossibleSunshineDuration",
1632
+ alias="meteo_inputs_PossibleSunshineDuration",
1633
+ namespace=locals(),
1634
+ )
1635
+ meteo_inputs_SunshineDuration = LazyInOutSequenceImport(
1636
+ modulename="hydpy.models.meteo.meteo_inputs",
1637
+ classname="SunshineDuration",
1638
+ alias="meteo_inputs_SunshineDuration",
1639
+ namespace=locals(),
1640
+ )
1641
+ meteo_inputs_ClearSkySolarRadiation = LazyInOutSequenceImport(
1642
+ modulename="hydpy.models.meteo.meteo_inputs",
1643
+ classname="ClearSkySolarRadiation",
1644
+ alias="meteo_inputs_ClearSkySolarRadiation",
1645
+ namespace=locals(),
1646
+ )
1647
+ meteo_inputs_GlobalRadiation = LazyInOutSequenceImport(
1648
+ modulename="hydpy.models.meteo.meteo_inputs",
1649
+ classname="GlobalRadiation",
1650
+ alias="meteo_inputs_GlobalRadiation",
1651
+ namespace=locals(),
1652
+ )
1653
+ meteo_inputs_Temperature = LazyInOutSequenceImport(
1654
+ modulename="hydpy.models.meteo.meteo_inputs",
1655
+ classname="Temperature",
1656
+ alias="meteo_inputs_Temperature",
1657
+ namespace=locals(),
1658
+ )
1659
+ meteo_inputs_Precipitation = LazyInOutSequenceImport(
1660
+ modulename="hydpy.models.meteo.meteo_inputs",
1661
+ classname="Precipitation",
1662
+ alias="meteo_inputs_Precipitation",
1663
+ namespace=locals(),
1664
+ )
1665
+ meteo_factors_EarthSunDistance = LazyInOutSequenceImport(
1666
+ modulename="hydpy.models.meteo.meteo_factors",
1667
+ classname="EarthSunDistance",
1668
+ alias="meteo_factors_EarthSunDistance",
1669
+ namespace=locals(),
1670
+ )
1671
+ meteo_factors_SolarDeclination = LazyInOutSequenceImport(
1672
+ modulename="hydpy.models.meteo.meteo_factors",
1673
+ classname="SolarDeclination",
1674
+ alias="meteo_factors_SolarDeclination",
1675
+ namespace=locals(),
1676
+ )
1677
+ meteo_factors_SunsetHourAngle = LazyInOutSequenceImport(
1678
+ modulename="hydpy.models.meteo.meteo_factors",
1679
+ classname="SunsetHourAngle",
1680
+ alias="meteo_factors_SunsetHourAngle",
1681
+ namespace=locals(),
1682
+ )
1683
+ meteo_factors_SolarTimeAngle = LazyInOutSequenceImport(
1684
+ modulename="hydpy.models.meteo.meteo_factors",
1685
+ classname="SolarTimeAngle",
1686
+ alias="meteo_factors_SolarTimeAngle",
1687
+ namespace=locals(),
1688
+ )
1689
+ meteo_factors_TimeOfSunrise = LazyInOutSequenceImport(
1690
+ modulename="hydpy.models.meteo.meteo_factors",
1691
+ classname="TimeOfSunrise",
1692
+ alias="meteo_factors_TimeOfSunrise",
1693
+ namespace=locals(),
1694
+ )
1695
+ meteo_factors_TimeOfSunset = LazyInOutSequenceImport(
1696
+ modulename="hydpy.models.meteo.meteo_factors",
1697
+ classname="TimeOfSunset",
1698
+ alias="meteo_factors_TimeOfSunset",
1699
+ namespace=locals(),
1700
+ )
1701
+ meteo_factors_PossibleSunshineDuration = LazyInOutSequenceImport(
1702
+ modulename="hydpy.models.meteo.meteo_factors",
1703
+ classname="PossibleSunshineDuration",
1704
+ alias="meteo_factors_PossibleSunshineDuration",
1705
+ namespace=locals(),
1706
+ )
1707
+ meteo_factors_DailyPossibleSunshineDuration = LazyInOutSequenceImport(
1708
+ modulename="hydpy.models.meteo.meteo_factors",
1709
+ classname="DailyPossibleSunshineDuration",
1710
+ alias="meteo_factors_DailyPossibleSunshineDuration",
1711
+ namespace=locals(),
1712
+ )
1713
+ meteo_factors_UnadjustedSunshineDuration = LazyInOutSequenceImport(
1714
+ modulename="hydpy.models.meteo.meteo_factors",
1715
+ classname="UnadjustedSunshineDuration",
1716
+ alias="meteo_factors_UnadjustedSunshineDuration",
1717
+ namespace=locals(),
1718
+ )
1719
+ meteo_factors_SunshineDuration = LazyInOutSequenceImport(
1720
+ modulename="hydpy.models.meteo.meteo_factors",
1721
+ classname="SunshineDuration",
1722
+ alias="meteo_factors_SunshineDuration",
1723
+ namespace=locals(),
1724
+ )
1725
+ meteo_factors_DailySunshineDuration = LazyInOutSequenceImport(
1726
+ modulename="hydpy.models.meteo.meteo_factors",
1727
+ classname="DailySunshineDuration",
1728
+ alias="meteo_factors_DailySunshineDuration",
1729
+ namespace=locals(),
1730
+ )
1731
+ meteo_factors_PortionDailyRadiation = LazyInOutSequenceImport(
1732
+ modulename="hydpy.models.meteo.meteo_factors",
1733
+ classname="PortionDailyRadiation",
1734
+ alias="meteo_factors_PortionDailyRadiation",
1735
+ namespace=locals(),
1736
+ )
1737
+ meteo_factors_MeanTemperature = LazyInOutSequenceImport(
1738
+ modulename="hydpy.models.meteo.meteo_factors",
1739
+ classname="MeanTemperature",
1740
+ alias="meteo_factors_MeanTemperature",
1741
+ namespace=locals(),
1742
+ )
1743
+ meteo_fluxes_ExtraterrestrialRadiation = LazyInOutSequenceImport(
1744
+ modulename="hydpy.models.meteo.meteo_fluxes",
1745
+ classname="ExtraterrestrialRadiation",
1746
+ alias="meteo_fluxes_ExtraterrestrialRadiation",
1747
+ namespace=locals(),
1748
+ )
1749
+ meteo_fluxes_ClearSkySolarRadiation = LazyInOutSequenceImport(
1750
+ modulename="hydpy.models.meteo.meteo_fluxes",
1751
+ classname="ClearSkySolarRadiation",
1752
+ alias="meteo_fluxes_ClearSkySolarRadiation",
1753
+ namespace=locals(),
1754
+ )
1755
+ meteo_fluxes_UnadjustedGlobalRadiation = LazyInOutSequenceImport(
1756
+ modulename="hydpy.models.meteo.meteo_fluxes",
1757
+ classname="UnadjustedGlobalRadiation",
1758
+ alias="meteo_fluxes_UnadjustedGlobalRadiation",
1759
+ namespace=locals(),
1760
+ )
1761
+ meteo_fluxes_DailyGlobalRadiation = LazyInOutSequenceImport(
1762
+ modulename="hydpy.models.meteo.meteo_fluxes",
1763
+ classname="DailyGlobalRadiation",
1764
+ alias="meteo_fluxes_DailyGlobalRadiation",
1765
+ namespace=locals(),
1766
+ )
1767
+ meteo_fluxes_GlobalRadiation = LazyInOutSequenceImport(
1768
+ modulename="hydpy.models.meteo.meteo_fluxes",
1769
+ classname="GlobalRadiation",
1770
+ alias="meteo_fluxes_GlobalRadiation",
1771
+ namespace=locals(),
1772
+ )
1773
+ meteo_fluxes_MeanPrecipitation = LazyInOutSequenceImport(
1774
+ modulename="hydpy.models.meteo.meteo_fluxes",
1775
+ classname="MeanPrecipitation",
1776
+ alias="meteo_fluxes_MeanPrecipitation",
1777
+ namespace=locals(),
1778
+ )
1779
+ musk_inlets_Q = LazyInOutSequenceImport(
1780
+ modulename="hydpy.models.musk.musk_inlets",
1781
+ classname="Q",
1782
+ alias="musk_inlets_Q",
1783
+ namespace=locals(),
1784
+ )
1785
+ musk_fluxes_Inflow = LazyInOutSequenceImport(
1786
+ modulename="hydpy.models.musk.musk_fluxes",
1787
+ classname="Inflow",
1788
+ alias="musk_fluxes_Inflow",
1789
+ namespace=locals(),
1790
+ )
1791
+ musk_fluxes_Outflow = LazyInOutSequenceImport(
1792
+ modulename="hydpy.models.musk.musk_fluxes",
1793
+ classname="Outflow",
1794
+ alias="musk_fluxes_Outflow",
1795
+ namespace=locals(),
1796
+ )
1797
+ musk_outlets_Q = LazyInOutSequenceImport(
1798
+ modulename="hydpy.models.musk.musk_outlets",
1799
+ classname="Q",
1800
+ alias="musk_outlets_Q",
1801
+ namespace=locals(),
1802
+ )
1803
+ rconc_fluxes_Inflow = LazyInOutSequenceImport(
1804
+ modulename="hydpy.models.rconc.rconc_fluxes",
1805
+ classname="Inflow",
1806
+ alias="rconc_fluxes_Inflow",
1807
+ namespace=locals(),
1808
+ )
1809
+ rconc_fluxes_Outflow = LazyInOutSequenceImport(
1810
+ modulename="hydpy.models.rconc.rconc_fluxes",
1811
+ classname="Outflow",
1812
+ alias="rconc_fluxes_Outflow",
1813
+ namespace=locals(),
1814
+ )
1815
+ sw1d_inlets_LongQ = LazyInOutSequenceImport(
1816
+ modulename="hydpy.models.sw1d.sw1d_inlets",
1817
+ classname="LongQ",
1818
+ alias="sw1d_inlets_LongQ",
1819
+ namespace=locals(),
1820
+ )
1821
+ sw1d_inlets_LatQ = LazyInOutSequenceImport(
1822
+ modulename="hydpy.models.sw1d.sw1d_inlets",
1823
+ classname="LatQ",
1824
+ alias="sw1d_inlets_LatQ",
1825
+ namespace=locals(),
1826
+ )
1827
+ sw1d_receivers_WaterLevel = LazyInOutSequenceImport(
1828
+ modulename="hydpy.models.sw1d.sw1d_receivers",
1829
+ classname="WaterLevel",
1830
+ alias="sw1d_receivers_WaterLevel",
1831
+ namespace=locals(),
1832
+ )
1833
+ sw1d_factors_MaxTimeStep = LazyInOutSequenceImport(
1834
+ modulename="hydpy.models.sw1d.sw1d_factors",
1835
+ classname="MaxTimeStep",
1836
+ alias="sw1d_factors_MaxTimeStep",
1837
+ namespace=locals(),
1838
+ )
1839
+ sw1d_factors_TimeStep = LazyInOutSequenceImport(
1840
+ modulename="hydpy.models.sw1d.sw1d_factors",
1841
+ classname="TimeStep",
1842
+ alias="sw1d_factors_TimeStep",
1843
+ namespace=locals(),
1844
+ )
1845
+ sw1d_factors_WaterDepth = LazyInOutSequenceImport(
1846
+ modulename="hydpy.models.sw1d.sw1d_factors",
1847
+ classname="WaterDepth",
1848
+ alias="sw1d_factors_WaterDepth",
1849
+ namespace=locals(),
1850
+ )
1851
+ sw1d_factors_WaterLevel = LazyInOutSequenceImport(
1852
+ modulename="hydpy.models.sw1d.sw1d_factors",
1853
+ classname="WaterLevel",
1854
+ alias="sw1d_factors_WaterLevel",
1855
+ namespace=locals(),
1856
+ )
1857
+ sw1d_factors_WaterLevelUpstream = LazyInOutSequenceImport(
1858
+ modulename="hydpy.models.sw1d.sw1d_factors",
1859
+ classname="WaterLevelUpstream",
1860
+ alias="sw1d_factors_WaterLevelUpstream",
1861
+ namespace=locals(),
1862
+ )
1863
+ sw1d_factors_WaterLevelDownstream = LazyInOutSequenceImport(
1864
+ modulename="hydpy.models.sw1d.sw1d_factors",
1865
+ classname="WaterLevelDownstream",
1866
+ alias="sw1d_factors_WaterLevelDownstream",
1867
+ namespace=locals(),
1868
+ )
1869
+ sw1d_factors_WaterVolumeUpstream = LazyInOutSequenceImport(
1870
+ modulename="hydpy.models.sw1d.sw1d_factors",
1871
+ classname="WaterVolumeUpstream",
1872
+ alias="sw1d_factors_WaterVolumeUpstream",
1873
+ namespace=locals(),
1874
+ )
1875
+ sw1d_factors_WaterVolumeDownstream = LazyInOutSequenceImport(
1876
+ modulename="hydpy.models.sw1d.sw1d_factors",
1877
+ classname="WaterVolumeDownstream",
1878
+ alias="sw1d_factors_WaterVolumeDownstream",
1879
+ namespace=locals(),
1880
+ )
1881
+ sw1d_factors_WettedArea = LazyInOutSequenceImport(
1882
+ modulename="hydpy.models.sw1d.sw1d_factors",
1883
+ classname="WettedArea",
1884
+ alias="sw1d_factors_WettedArea",
1885
+ namespace=locals(),
1886
+ )
1887
+ sw1d_factors_WettedPerimeter = LazyInOutSequenceImport(
1888
+ modulename="hydpy.models.sw1d.sw1d_factors",
1889
+ classname="WettedPerimeter",
1890
+ alias="sw1d_factors_WettedPerimeter",
1891
+ namespace=locals(),
1892
+ )
1893
+ sw1d_fluxes_Inflow = LazyInOutSequenceImport(
1894
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1895
+ classname="Inflow",
1896
+ alias="sw1d_fluxes_Inflow",
1897
+ namespace=locals(),
1898
+ )
1899
+ sw1d_fluxes_Outflow = LazyInOutSequenceImport(
1900
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1901
+ classname="Outflow",
1902
+ alias="sw1d_fluxes_Outflow",
1903
+ namespace=locals(),
1904
+ )
1905
+ sw1d_fluxes_LateralFlow = LazyInOutSequenceImport(
1906
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1907
+ classname="LateralFlow",
1908
+ alias="sw1d_fluxes_LateralFlow",
1909
+ namespace=locals(),
1910
+ )
1911
+ sw1d_fluxes_NetInflow = LazyInOutSequenceImport(
1912
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1913
+ classname="NetInflow",
1914
+ alias="sw1d_fluxes_NetInflow",
1915
+ namespace=locals(),
1916
+ )
1917
+ sw1d_fluxes_DischargeUpstream = LazyInOutSequenceImport(
1918
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1919
+ classname="DischargeUpstream",
1920
+ alias="sw1d_fluxes_DischargeUpstream",
1921
+ namespace=locals(),
1922
+ )
1923
+ sw1d_fluxes_DischargeDownstream = LazyInOutSequenceImport(
1924
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1925
+ classname="DischargeDownstream",
1926
+ alias="sw1d_fluxes_DischargeDownstream",
1927
+ namespace=locals(),
1928
+ )
1929
+ sw1d_fluxes_DischargeVolume = LazyInOutSequenceImport(
1930
+ modulename="hydpy.models.sw1d.sw1d_fluxes",
1931
+ classname="DischargeVolume",
1932
+ alias="sw1d_fluxes_DischargeVolume",
1933
+ namespace=locals(),
1934
+ )
1935
+ sw1d_states_WaterVolume = LazyInOutSequenceImport(
1936
+ modulename="hydpy.models.sw1d.sw1d_states",
1937
+ classname="WaterVolume",
1938
+ alias="sw1d_states_WaterVolume",
1939
+ namespace=locals(),
1940
+ )
1941
+ sw1d_states_Discharge = LazyInOutSequenceImport(
1942
+ modulename="hydpy.models.sw1d.sw1d_states",
1943
+ classname="Discharge",
1944
+ alias="sw1d_states_Discharge",
1945
+ namespace=locals(),
1946
+ )
1947
+ sw1d_outlets_LongQ = LazyInOutSequenceImport(
1948
+ modulename="hydpy.models.sw1d.sw1d_outlets",
1949
+ classname="LongQ",
1950
+ alias="sw1d_outlets_LongQ",
1951
+ namespace=locals(),
1952
+ )
1953
+ sw1d_senders_WaterLevel = LazyInOutSequenceImport(
1954
+ modulename="hydpy.models.sw1d.sw1d_senders",
1955
+ classname="WaterLevel",
1956
+ alias="sw1d_senders_WaterLevel",
1957
+ namespace=locals(),
1958
+ )
1959
+ test_fluxes_Q = LazyInOutSequenceImport(
1960
+ modulename="hydpy.models.test.test_fluxes",
1961
+ classname="Q",
1962
+ alias="test_fluxes_Q",
1963
+ namespace=locals(),
1964
+ )
1965
+ test_states_S = LazyInOutSequenceImport(
1966
+ modulename="hydpy.models.test.test_states",
1967
+ classname="S",
1968
+ alias="test_states_S",
1969
+ namespace=locals(),
1970
+ )
1971
+ whmod_inputs_Precipitation = LazyInOutSequenceImport(
1972
+ modulename="hydpy.models.whmod.whmod_inputs",
1973
+ classname="Precipitation",
1974
+ alias="whmod_inputs_Precipitation",
1975
+ namespace=locals(),
1976
+ )
1977
+ whmod_inputs_Temperature = LazyInOutSequenceImport(
1978
+ modulename="hydpy.models.whmod.whmod_inputs",
1979
+ classname="Temperature",
1980
+ alias="whmod_inputs_Temperature",
1981
+ namespace=locals(),
1982
+ )
1983
+ whmod_fluxes_CisternInflow = LazyInOutSequenceImport(
1984
+ modulename="hydpy.models.whmod.whmod_fluxes",
1985
+ classname="CisternInflow",
1986
+ alias="whmod_fluxes_CisternInflow",
1987
+ namespace=locals(),
1988
+ )
1989
+ whmod_fluxes_CisternOverflow = LazyInOutSequenceImport(
1990
+ modulename="hydpy.models.whmod.whmod_fluxes",
1991
+ classname="CisternOverflow",
1992
+ alias="whmod_fluxes_CisternOverflow",
1993
+ namespace=locals(),
1994
+ )
1995
+ whmod_fluxes_CisternDemand = LazyInOutSequenceImport(
1996
+ modulename="hydpy.models.whmod.whmod_fluxes",
1997
+ classname="CisternDemand",
1998
+ alias="whmod_fluxes_CisternDemand",
1999
+ namespace=locals(),
2000
+ )
2001
+ whmod_fluxes_CisternExtraction = LazyInOutSequenceImport(
2002
+ modulename="hydpy.models.whmod.whmod_fluxes",
2003
+ classname="CisternExtraction",
2004
+ alias="whmod_fluxes_CisternExtraction",
2005
+ namespace=locals(),
2006
+ )
2007
+ whmod_fluxes_ActualRecharge = LazyInOutSequenceImport(
2008
+ modulename="hydpy.models.whmod.whmod_fluxes",
2009
+ classname="ActualRecharge",
2010
+ alias="whmod_fluxes_ActualRecharge",
2011
+ namespace=locals(),
2012
+ )
2013
+ whmod_fluxes_DelayedRecharge = LazyInOutSequenceImport(
2014
+ modulename="hydpy.models.whmod.whmod_fluxes",
2015
+ classname="DelayedRecharge",
2016
+ alias="whmod_fluxes_DelayedRecharge",
2017
+ namespace=locals(),
2018
+ )
2019
+ whmod_states_CisternWater = LazyInOutSequenceImport(
2020
+ modulename="hydpy.models.whmod.whmod_states",
2021
+ classname="CisternWater",
2022
+ alias="whmod_states_CisternWater",
2023
+ namespace=locals(),
2024
+ )
2025
+ whmod_states_DeepWater = LazyInOutSequenceImport(
2026
+ modulename="hydpy.models.whmod.whmod_states",
2027
+ classname="DeepWater",
2028
+ alias="whmod_states_DeepWater",
2029
+ namespace=locals(),
2030
+ )
2031
+ wland_inputs_T = LazyInOutSequenceImport(
2032
+ modulename="hydpy.models.wland.wland_inputs",
2033
+ classname="T",
2034
+ alias="wland_inputs_T",
2035
+ namespace=locals(),
2036
+ )
2037
+ wland_inputs_P = LazyInOutSequenceImport(
2038
+ modulename="hydpy.models.wland.wland_inputs",
2039
+ classname="P",
2040
+ alias="wland_inputs_P",
2041
+ namespace=locals(),
2042
+ )
2043
+ wland_inputs_FXG = LazyInOutSequenceImport(
2044
+ modulename="hydpy.models.wland.wland_inputs",
2045
+ classname="FXG",
2046
+ alias="wland_inputs_FXG",
2047
+ namespace=locals(),
2048
+ )
2049
+ wland_inputs_FXS = LazyInOutSequenceImport(
2050
+ modulename="hydpy.models.wland.wland_inputs",
2051
+ classname="FXS",
2052
+ alias="wland_inputs_FXS",
2053
+ namespace=locals(),
2054
+ )
2055
+ wland_factors_DHS = LazyInOutSequenceImport(
2056
+ modulename="hydpy.models.wland.wland_factors",
2057
+ classname="DHS",
2058
+ alias="wland_factors_DHS",
2059
+ namespace=locals(),
2060
+ )
2061
+ wland_fluxes_PC = LazyInOutSequenceImport(
2062
+ modulename="hydpy.models.wland.wland_fluxes",
2063
+ classname="PC",
2064
+ alias="wland_fluxes_PC",
2065
+ namespace=locals(),
2066
+ )
2067
+ wland_fluxes_PS = LazyInOutSequenceImport(
2068
+ modulename="hydpy.models.wland.wland_fluxes",
2069
+ classname="PS",
2070
+ alias="wland_fluxes_PS",
2071
+ namespace=locals(),
2072
+ )
2073
+ wland_fluxes_PVE = LazyInOutSequenceImport(
2074
+ modulename="hydpy.models.wland.wland_fluxes",
2075
+ classname="PVE",
2076
+ alias="wland_fluxes_PVE",
2077
+ namespace=locals(),
2078
+ )
2079
+ wland_fluxes_PV = LazyInOutSequenceImport(
2080
+ modulename="hydpy.models.wland.wland_fluxes",
2081
+ classname="PV",
2082
+ alias="wland_fluxes_PV",
2083
+ namespace=locals(),
2084
+ )
2085
+ wland_fluxes_PQ = LazyInOutSequenceImport(
2086
+ modulename="hydpy.models.wland.wland_fluxes",
2087
+ classname="PQ",
2088
+ alias="wland_fluxes_PQ",
2089
+ namespace=locals(),
2090
+ )
2091
+ wland_fluxes_ETVE = LazyInOutSequenceImport(
2092
+ modulename="hydpy.models.wland.wland_fluxes",
2093
+ classname="ETVE",
2094
+ alias="wland_fluxes_ETVE",
2095
+ namespace=locals(),
2096
+ )
2097
+ wland_fluxes_ETV = LazyInOutSequenceImport(
2098
+ modulename="hydpy.models.wland.wland_fluxes",
2099
+ classname="ETV",
2100
+ alias="wland_fluxes_ETV",
2101
+ namespace=locals(),
2102
+ )
2103
+ wland_fluxes_ES = LazyInOutSequenceImport(
2104
+ modulename="hydpy.models.wland.wland_fluxes",
2105
+ classname="ES",
2106
+ alias="wland_fluxes_ES",
2107
+ namespace=locals(),
2108
+ )
2109
+ wland_fluxes_ET = LazyInOutSequenceImport(
2110
+ modulename="hydpy.models.wland.wland_fluxes",
2111
+ classname="ET",
2112
+ alias="wland_fluxes_ET",
2113
+ namespace=locals(),
2114
+ )
2115
+ wland_fluxes_GR = LazyInOutSequenceImport(
2116
+ modulename="hydpy.models.wland.wland_fluxes",
2117
+ classname="GR",
2118
+ alias="wland_fluxes_GR",
2119
+ namespace=locals(),
2120
+ )
2121
+ wland_fluxes_FXS = LazyInOutSequenceImport(
2122
+ modulename="hydpy.models.wland.wland_fluxes",
2123
+ classname="FXS",
2124
+ alias="wland_fluxes_FXS",
2125
+ namespace=locals(),
2126
+ )
2127
+ wland_fluxes_FXG = LazyInOutSequenceImport(
2128
+ modulename="hydpy.models.wland.wland_fluxes",
2129
+ classname="FXG",
2130
+ alias="wland_fluxes_FXG",
2131
+ namespace=locals(),
2132
+ )
2133
+ wland_fluxes_CDG = LazyInOutSequenceImport(
2134
+ modulename="hydpy.models.wland.wland_fluxes",
2135
+ classname="CDG",
2136
+ alias="wland_fluxes_CDG",
2137
+ namespace=locals(),
2138
+ )
2139
+ wland_fluxes_FGSE = LazyInOutSequenceImport(
2140
+ modulename="hydpy.models.wland.wland_fluxes",
2141
+ classname="FGSE",
2142
+ alias="wland_fluxes_FGSE",
2143
+ namespace=locals(),
2144
+ )
2145
+ wland_fluxes_FGS = LazyInOutSequenceImport(
2146
+ modulename="hydpy.models.wland.wland_fluxes",
2147
+ classname="FGS",
2148
+ alias="wland_fluxes_FGS",
2149
+ namespace=locals(),
2150
+ )
2151
+ wland_fluxes_FQS = LazyInOutSequenceImport(
2152
+ modulename="hydpy.models.wland.wland_fluxes",
2153
+ classname="FQS",
2154
+ alias="wland_fluxes_FQS",
2155
+ namespace=locals(),
2156
+ )
2157
+ wland_fluxes_RH = LazyInOutSequenceImport(
2158
+ modulename="hydpy.models.wland.wland_fluxes",
2159
+ classname="RH",
2160
+ alias="wland_fluxes_RH",
2161
+ namespace=locals(),
2162
+ )
2163
+ wland_fluxes_R = LazyInOutSequenceImport(
2164
+ modulename="hydpy.models.wland.wland_fluxes",
2165
+ classname="R",
2166
+ alias="wland_fluxes_R",
2167
+ namespace=locals(),
2168
+ )
2169
+ wland_states_DVE = LazyInOutSequenceImport(
2170
+ modulename="hydpy.models.wland.wland_states",
2171
+ classname="DVE",
2172
+ alias="wland_states_DVE",
2173
+ namespace=locals(),
2174
+ )
2175
+ wland_states_DV = LazyInOutSequenceImport(
2176
+ modulename="hydpy.models.wland.wland_states",
2177
+ classname="DV",
2178
+ alias="wland_states_DV",
2179
+ namespace=locals(),
2180
+ )
2181
+ wland_states_HGE = LazyInOutSequenceImport(
2182
+ modulename="hydpy.models.wland.wland_states",
2183
+ classname="HGE",
2184
+ alias="wland_states_HGE",
2185
+ namespace=locals(),
2186
+ )
2187
+ wland_states_DG = LazyInOutSequenceImport(
2188
+ modulename="hydpy.models.wland.wland_states",
2189
+ classname="DG",
2190
+ alias="wland_states_DG",
2191
+ namespace=locals(),
2192
+ )
2193
+ wland_states_HQ = LazyInOutSequenceImport(
2194
+ modulename="hydpy.models.wland.wland_states",
2195
+ classname="HQ",
2196
+ alias="wland_states_HQ",
2197
+ namespace=locals(),
2198
+ )
2199
+ wland_states_HS = LazyInOutSequenceImport(
2200
+ modulename="hydpy.models.wland.wland_states",
2201
+ classname="HS",
2202
+ alias="wland_states_HS",
2203
+ namespace=locals(),
2204
+ )
2205
+ wland_outlets_Q = LazyInOutSequenceImport(
2206
+ modulename="hydpy.models.wland.wland_outlets",
2207
+ classname="Q",
2208
+ alias="wland_outlets_Q",
2209
+ namespace=locals(),
2210
+ )
2211
+ wq_factors_WaterDepth = LazyInOutSequenceImport(
2212
+ modulename="hydpy.models.wq.wq_factors",
2213
+ classname="WaterDepth",
2214
+ alias="wq_factors_WaterDepth",
2215
+ namespace=locals(),
2216
+ )
2217
+ wq_factors_WaterLevel = LazyInOutSequenceImport(
2218
+ modulename="hydpy.models.wq.wq_factors",
2219
+ classname="WaterLevel",
2220
+ alias="wq_factors_WaterLevel",
2221
+ namespace=locals(),
2222
+ )
2223
+ wq_factors_WettedArea = LazyInOutSequenceImport(
2224
+ modulename="hydpy.models.wq.wq_factors",
2225
+ classname="WettedArea",
2226
+ alias="wq_factors_WettedArea",
2227
+ namespace=locals(),
2228
+ )
2229
+ wq_factors_WettedPerimeter = LazyInOutSequenceImport(
2230
+ modulename="hydpy.models.wq.wq_factors",
2231
+ classname="WettedPerimeter",
2232
+ alias="wq_factors_WettedPerimeter",
2233
+ namespace=locals(),
2234
+ )
2235
+ wq_factors_SurfaceWidth = LazyInOutSequenceImport(
2236
+ modulename="hydpy.models.wq.wq_factors",
2237
+ classname="SurfaceWidth",
2238
+ alias="wq_factors_SurfaceWidth",
2239
+ namespace=locals(),
2240
+ )
2241
+ wq_factors_DischargeDerivative = LazyInOutSequenceImport(
2242
+ modulename="hydpy.models.wq.wq_factors",
2243
+ classname="DischargeDerivative",
2244
+ alias="wq_factors_DischargeDerivative",
2245
+ namespace=locals(),
2246
+ )
2247
+ wq_factors_Celerity = LazyInOutSequenceImport(
2248
+ modulename="hydpy.models.wq.wq_factors",
2249
+ classname="Celerity",
2250
+ alias="wq_factors_Celerity",
2251
+ namespace=locals(),
2252
+ )
2253
+ wq_fluxes_Discharge = LazyInOutSequenceImport(
2254
+ modulename="hydpy.models.wq.wq_fluxes",
2255
+ classname="Discharge",
2256
+ alias="wq_fluxes_Discharge",
2257
+ namespace=locals(),
2258
+ )
2259
+
2260
+ __all__ = [
2261
+ "arma_inlets_Q",
2262
+ "arma_fluxes_QIn",
2263
+ "arma_fluxes_QOut",
2264
+ "arma_outlets_Q",
2265
+ "conv_inlets_Inputs",
2266
+ "conv_fluxes_ActualConstant",
2267
+ "conv_fluxes_ActualFactor",
2268
+ "conv_outlets_Outputs",
2269
+ "dam_inlets_Q",
2270
+ "dam_inlets_S",
2271
+ "dam_inlets_R",
2272
+ "dam_inlets_E",
2273
+ "dam_receivers_Q",
2274
+ "dam_receivers_D",
2275
+ "dam_receivers_S",
2276
+ "dam_receivers_R",
2277
+ "dam_receivers_OWL",
2278
+ "dam_receivers_RWL",
2279
+ "dam_factors_WaterLevel",
2280
+ "dam_factors_OuterWaterLevel",
2281
+ "dam_factors_RemoteWaterLevel",
2282
+ "dam_factors_WaterLevelDifference",
2283
+ "dam_factors_EffectiveWaterLevelDifference",
2284
+ "dam_fluxes_Precipitation",
2285
+ "dam_fluxes_AdjustedPrecipitation",
2286
+ "dam_fluxes_PotentialEvaporation",
2287
+ "dam_fluxes_AdjustedEvaporation",
2288
+ "dam_fluxes_ActualEvaporation",
2289
+ "dam_fluxes_Inflow",
2290
+ "dam_fluxes_Exchange",
2291
+ "dam_fluxes_TotalRemoteDischarge",
2292
+ "dam_fluxes_NaturalRemoteDischarge",
2293
+ "dam_fluxes_RemoteDemand",
2294
+ "dam_fluxes_RemoteFailure",
2295
+ "dam_fluxes_RequiredRemoteRelease",
2296
+ "dam_fluxes_AllowedRemoteRelief",
2297
+ "dam_fluxes_RequiredRemoteSupply",
2298
+ "dam_fluxes_PossibleRemoteRelief",
2299
+ "dam_fluxes_ActualRemoteRelief",
2300
+ "dam_fluxes_RequiredRelease",
2301
+ "dam_fluxes_TargetedRelease",
2302
+ "dam_fluxes_ActualRelease",
2303
+ "dam_fluxes_MissingRemoteRelease",
2304
+ "dam_fluxes_ActualRemoteRelease",
2305
+ "dam_fluxes_FloodDischarge",
2306
+ "dam_fluxes_FreeDischarge",
2307
+ "dam_fluxes_MaxForcedDischarge",
2308
+ "dam_fluxes_MaxFreeDischarge",
2309
+ "dam_fluxes_ForcedDischarge",
2310
+ "dam_fluxes_Outflow",
2311
+ "dam_states_WaterVolume",
2312
+ "dam_outlets_Q",
2313
+ "dam_outlets_S",
2314
+ "dam_outlets_R",
2315
+ "dam_senders_D",
2316
+ "dam_senders_S",
2317
+ "dam_senders_R",
2318
+ "dummy_inlets_Q",
2319
+ "dummy_fluxes_Q",
2320
+ "dummy_outlets_Q",
2321
+ "evap_inputs_ReferenceEvapotranspiration",
2322
+ "evap_inputs_RelativeHumidity",
2323
+ "evap_inputs_WindSpeed",
2324
+ "evap_inputs_AtmosphericPressure",
2325
+ "evap_inputs_NormalAirTemperature",
2326
+ "evap_inputs_NormalEvapotranspiration",
2327
+ "evap_factors_MeanAirTemperature",
2328
+ "evap_factors_WindSpeed2m",
2329
+ "evap_factors_DailyWindSpeed2m",
2330
+ "evap_factors_WindSpeed10m",
2331
+ "evap_factors_DailyRelativeHumidity",
2332
+ "evap_factors_SunshineDuration",
2333
+ "evap_factors_PossibleSunshineDuration",
2334
+ "evap_factors_DailySunshineDuration",
2335
+ "evap_factors_DailyPossibleSunshineDuration",
2336
+ "evap_factors_PsychrometricConstant",
2337
+ "evap_factors_AdjustedCloudCoverage",
2338
+ "evap_fluxes_GlobalRadiation",
2339
+ "evap_fluxes_ClearSkySolarRadiation",
2340
+ "evap_fluxes_DailyGlobalRadiation",
2341
+ "evap_fluxes_MeanReferenceEvapotranspiration",
2342
+ "evap_fluxes_MeanPotentialEvapotranspiration",
2343
+ "evap_states_CloudCoverage",
2344
+ "exch_inlets_Total",
2345
+ "exch_receivers_WaterLevel",
2346
+ "exch_receivers_WaterLevels",
2347
+ "exch_factors_DeltaWaterLevel",
2348
+ "exch_fluxes_PotentialExchange",
2349
+ "exch_fluxes_ActualExchange",
2350
+ "exch_fluxes_OriginalInput",
2351
+ "exch_fluxes_AdjustedInput",
2352
+ "exch_outlets_Exchange",
2353
+ "exch_outlets_Branched",
2354
+ "ga_inputs_Rainfall",
2355
+ "ga_inputs_CapillaryRise",
2356
+ "ga_inputs_Evaporation",
2357
+ "ga_fluxes_TotalInfiltration",
2358
+ "ga_fluxes_TotalPercolation",
2359
+ "ga_fluxes_TotalSoilWaterAddition",
2360
+ "ga_fluxes_TotalWithdrawal",
2361
+ "ga_fluxes_TotalSurfaceRunoff",
2362
+ "gland_inputs_P",
2363
+ "gland_fluxes_E",
2364
+ "gland_fluxes_EN",
2365
+ "gland_fluxes_PN",
2366
+ "gland_fluxes_PS",
2367
+ "gland_fluxes_EI",
2368
+ "gland_fluxes_ES",
2369
+ "gland_fluxes_AE",
2370
+ "gland_fluxes_PR",
2371
+ "gland_fluxes_PR9",
2372
+ "gland_fluxes_PR1",
2373
+ "gland_fluxes_Q10",
2374
+ "gland_fluxes_Perc",
2375
+ "gland_fluxes_Q9",
2376
+ "gland_fluxes_Q1",
2377
+ "gland_fluxes_FD",
2378
+ "gland_fluxes_FR",
2379
+ "gland_fluxes_FR2",
2380
+ "gland_fluxes_QR",
2381
+ "gland_fluxes_QR2",
2382
+ "gland_fluxes_QD",
2383
+ "gland_fluxes_QH",
2384
+ "gland_fluxes_QV",
2385
+ "gland_states_I",
2386
+ "gland_states_S",
2387
+ "gland_states_R",
2388
+ "gland_states_R2",
2389
+ "gland_outlets_Q",
2390
+ "hland_inputs_P",
2391
+ "hland_inputs_T",
2392
+ "hland_factors_ContriArea",
2393
+ "hland_fluxes_InUZ",
2394
+ "hland_fluxes_Perc",
2395
+ "hland_fluxes_Q0",
2396
+ "hland_fluxes_Q1",
2397
+ "hland_fluxes_GR2",
2398
+ "hland_fluxes_RG2",
2399
+ "hland_fluxes_GR3",
2400
+ "hland_fluxes_RG3",
2401
+ "hland_fluxes_InRC",
2402
+ "hland_fluxes_OutRC",
2403
+ "hland_fluxes_RO",
2404
+ "hland_fluxes_RA",
2405
+ "hland_fluxes_RT",
2406
+ "hland_fluxes_QT",
2407
+ "hland_states_UZ",
2408
+ "hland_states_LZ",
2409
+ "hland_states_SG2",
2410
+ "hland_states_SG3",
2411
+ "hland_outlets_Q",
2412
+ "kinw_inlets_Q",
2413
+ "kinw_fluxes_QZ",
2414
+ "kinw_fluxes_QZA",
2415
+ "kinw_fluxes_QA",
2416
+ "kinw_outlets_Q",
2417
+ "lland_inputs_Nied",
2418
+ "lland_inputs_TemL",
2419
+ "lland_inputs_RelativeHumidity",
2420
+ "lland_inputs_WindSpeed",
2421
+ "lland_inlets_Q",
2422
+ "lland_factors_PossibleSunshineDuration",
2423
+ "lland_factors_SunshineDuration",
2424
+ "lland_fluxes_QZ",
2425
+ "lland_fluxes_QZH",
2426
+ "lland_fluxes_DailySunshineDuration",
2427
+ "lland_fluxes_DailyPossibleSunshineDuration",
2428
+ "lland_fluxes_GlobalRadiation",
2429
+ "lland_fluxes_WindSpeed2m",
2430
+ "lland_fluxes_QDGZ",
2431
+ "lland_fluxes_QDGZ1",
2432
+ "lland_fluxes_QDGZ2",
2433
+ "lland_fluxes_QIGZ1",
2434
+ "lland_fluxes_QIGZ2",
2435
+ "lland_fluxes_QBGZ",
2436
+ "lland_fluxes_QDGA1",
2437
+ "lland_fluxes_QDGA2",
2438
+ "lland_fluxes_QIGA1",
2439
+ "lland_fluxes_QIGA2",
2440
+ "lland_fluxes_QBGA",
2441
+ "lland_fluxes_QAH",
2442
+ "lland_fluxes_QA",
2443
+ "lland_states_SDG1",
2444
+ "lland_states_SDG2",
2445
+ "lland_states_SIG1",
2446
+ "lland_states_SIG2",
2447
+ "lland_states_SBG",
2448
+ "lland_outlets_Q",
2449
+ "meteo_inputs_PossibleSunshineDuration",
2450
+ "meteo_inputs_SunshineDuration",
2451
+ "meteo_inputs_ClearSkySolarRadiation",
2452
+ "meteo_inputs_GlobalRadiation",
2453
+ "meteo_inputs_Temperature",
2454
+ "meteo_inputs_Precipitation",
2455
+ "meteo_factors_EarthSunDistance",
2456
+ "meteo_factors_SolarDeclination",
2457
+ "meteo_factors_SunsetHourAngle",
2458
+ "meteo_factors_SolarTimeAngle",
2459
+ "meteo_factors_TimeOfSunrise",
2460
+ "meteo_factors_TimeOfSunset",
2461
+ "meteo_factors_PossibleSunshineDuration",
2462
+ "meteo_factors_DailyPossibleSunshineDuration",
2463
+ "meteo_factors_UnadjustedSunshineDuration",
2464
+ "meteo_factors_SunshineDuration",
2465
+ "meteo_factors_DailySunshineDuration",
2466
+ "meteo_factors_PortionDailyRadiation",
2467
+ "meteo_factors_MeanTemperature",
2468
+ "meteo_fluxes_ExtraterrestrialRadiation",
2469
+ "meteo_fluxes_ClearSkySolarRadiation",
2470
+ "meteo_fluxes_UnadjustedGlobalRadiation",
2471
+ "meteo_fluxes_DailyGlobalRadiation",
2472
+ "meteo_fluxes_GlobalRadiation",
2473
+ "meteo_fluxes_MeanPrecipitation",
2474
+ "musk_inlets_Q",
2475
+ "musk_fluxes_Inflow",
2476
+ "musk_fluxes_Outflow",
2477
+ "musk_outlets_Q",
2478
+ "rconc_fluxes_Inflow",
2479
+ "rconc_fluxes_Outflow",
2480
+ "sw1d_inlets_LongQ",
2481
+ "sw1d_inlets_LatQ",
2482
+ "sw1d_receivers_WaterLevel",
2483
+ "sw1d_factors_MaxTimeStep",
2484
+ "sw1d_factors_TimeStep",
2485
+ "sw1d_factors_WaterDepth",
2486
+ "sw1d_factors_WaterLevel",
2487
+ "sw1d_factors_WaterLevelUpstream",
2488
+ "sw1d_factors_WaterLevelDownstream",
2489
+ "sw1d_factors_WaterVolumeUpstream",
2490
+ "sw1d_factors_WaterVolumeDownstream",
2491
+ "sw1d_factors_WettedArea",
2492
+ "sw1d_factors_WettedPerimeter",
2493
+ "sw1d_fluxes_Inflow",
2494
+ "sw1d_fluxes_Outflow",
2495
+ "sw1d_fluxes_LateralFlow",
2496
+ "sw1d_fluxes_NetInflow",
2497
+ "sw1d_fluxes_DischargeUpstream",
2498
+ "sw1d_fluxes_DischargeDownstream",
2499
+ "sw1d_fluxes_DischargeVolume",
2500
+ "sw1d_states_WaterVolume",
2501
+ "sw1d_states_Discharge",
2502
+ "sw1d_outlets_LongQ",
2503
+ "sw1d_senders_WaterLevel",
2504
+ "test_fluxes_Q",
2505
+ "test_states_S",
2506
+ "whmod_inputs_Precipitation",
2507
+ "whmod_inputs_Temperature",
2508
+ "whmod_fluxes_CisternInflow",
2509
+ "whmod_fluxes_CisternOverflow",
2510
+ "whmod_fluxes_CisternDemand",
2511
+ "whmod_fluxes_CisternExtraction",
2512
+ "whmod_fluxes_ActualRecharge",
2513
+ "whmod_fluxes_DelayedRecharge",
2514
+ "whmod_states_CisternWater",
2515
+ "whmod_states_DeepWater",
2516
+ "wland_inputs_T",
2517
+ "wland_inputs_P",
2518
+ "wland_inputs_FXG",
2519
+ "wland_inputs_FXS",
2520
+ "wland_factors_DHS",
2521
+ "wland_fluxes_PC",
2522
+ "wland_fluxes_PS",
2523
+ "wland_fluxes_PVE",
2524
+ "wland_fluxes_PV",
2525
+ "wland_fluxes_PQ",
2526
+ "wland_fluxes_ETVE",
2527
+ "wland_fluxes_ETV",
2528
+ "wland_fluxes_ES",
2529
+ "wland_fluxes_ET",
2530
+ "wland_fluxes_GR",
2531
+ "wland_fluxes_FXS",
2532
+ "wland_fluxes_FXG",
2533
+ "wland_fluxes_CDG",
2534
+ "wland_fluxes_FGSE",
2535
+ "wland_fluxes_FGS",
2536
+ "wland_fluxes_FQS",
2537
+ "wland_fluxes_RH",
2538
+ "wland_fluxes_R",
2539
+ "wland_states_DVE",
2540
+ "wland_states_DV",
2541
+ "wland_states_HGE",
2542
+ "wland_states_DG",
2543
+ "wland_states_HQ",
2544
+ "wland_states_HS",
2545
+ "wland_outlets_Q",
2546
+ "wq_factors_WaterDepth",
2547
+ "wq_factors_WaterLevel",
2548
+ "wq_factors_WettedArea",
2549
+ "wq_factors_WettedPerimeter",
2550
+ "wq_factors_SurfaceWidth",
2551
+ "wq_factors_DischargeDerivative",
2552
+ "wq_factors_Celerity",
2553
+ "wq_fluxes_Discharge",
2554
+ ]