You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v521 [BENCHMARKED] - added :TimeOfConcentrationMethod support
new :TimeOfConcentrationMethod
- parse support (ParseInput.cpp)
- new enum added to Options (RavenInclude.h)
- new subbasin _basin_length and _mean_slope members (SubBasin.h/.cpp)
- new routine CSubBasin::CalculateTOC (SubBasin.h/.cpp)
bug fixes:
added QA/QC for bad HRU index in reservoir parsing (ParseHRUFile.cpp)
fixed destructor bug in CustomOutput.cpp
if (fabs((HRUarea - lakearea) / lakearea) > 0.2) {
1942
-
string warn="CReservoirParse: specified :LakeArea and corresponding HRU area (in .rvh file) do not seem to agree for reservoir in subbasin "+to_string(SBID);
if (fabs((HRUarea - lakearea) / lakearea) > 0.2) {
1943
+
string warn="CReservoirParse: specified :LakeArea and corresponding HRU area (in .rvh file) do not seem to agree for reservoir in subbasin "+to_string(SBID);
1944
+
WriteWarning(warn.c_str(), Options.noisy);
1945
+
}
1946
+
}
1947
+
else {
1948
+
ExitGracefullyIf(max_depth==DOESNT_EXIST,"CReservoir::Parse: invalid HRU ID in :Reservoir command",BAD_DATA_WARN);
0 commit comments