From d552d0c92cf7d6721c1253cff16506e3d5477770 Mon Sep 17 00:00:00 2001 From: Lew Rossman Date: Sat, 25 Sep 2021 09:32:20 -0400 Subject: [PATCH] Removes silent change to WQ option for 0 duration run --- src/input1.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/input1.c b/src/input1.c index e79da83..6145983 100644 --- a/src/input1.c +++ b/src/input1.c @@ -229,9 +229,6 @@ void adjustdata(Project *pr) // Report start time cannot be greater than simulation duration if (time->Rstart > time->Dur) time->Rstart = 0; - // No water quality analysis for single period run - if (time->Dur == 0) qual->Qualflag = NONE; - // If no quality timestep, then make it 1/10 of hydraulic timestep if (time->Qstep == 0) time->Qstep = time->Hstep / 10;