BernardoTeufel

Results 3 issues of BernardoTeufel

NALRP v2.1 for the Mackenzie basin (drainage_region_0002_v2-1) was postprocessed as following: ``` bm.Remove_Small_Lakes( connected_lake_area_thresthold=20, non_connected_lake_area_thresthold=20, selected_lake_ids=[], gis_platform="purepy", ) ``` ``` bm.Decrease_River_Network_Resolution( minimum_subbasin_drainage_area=500, gis_platform="purepy", ) ``` Output while processing: ``` Obtain...

While running a test case for a single lake I noticed that lake volume and outflow was higher than expected from precipitation and evaporation. I suspected that runoff might be...

The following code causes floating overflow crash for extremely small `Qin` values (e.g., `2.e-114`): https://github.com/ESCOMP/mizuRoute/blob/64a49b0ffc3b584c253d8a8f93c9d01ebac5d6a6/route/build/src/hydraulic.f90#L409 Solved by changing the following line to: `if (Qin>1.e-50_dp) then` https://github.com/ESCOMP/mizuRoute/blob/64a49b0ffc3b584c253d8a8f93c9d01ebac5d6a6/route/build/src/hydraulic.f90#L356 Choice of `1.e-50_dp` was...

bug
high priority