From 97721a9a100673388c8fba37332470014f675a62 Mon Sep 17 00:00:00 2001 From: James McClure Date: Sun, 7 Nov 2021 07:57:54 -0500 Subject: [PATCH] never rescale unsteady cases --- models/ColorModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/ColorModel.cpp b/models/ColorModel.cpp index df27a8f2..c7caa292 100644 --- a/models/ColorModel.cpp +++ b/models/ColorModel.cpp @@ -707,7 +707,7 @@ double ScaLBL_ColorModel::Run(int returntime){ analysis.basic(timestep, current_db, *Averages, Phi, Pressure, Velocity, fq, Den ); // allow initial ramp-up to get closer to steady state CURRENT_TIMESTEP += 2; - if (CURRENT_TIMESTEP > MIN_STEADY_TIMESTEPS && BC == 0){ + if (CURRENT_TIMESTEP > MIN_STEADY_TIMESTEPS && BoundaryCondition == 0){ analysis.finish(); double volB = Averages->gwb.V;