mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
applications/solvers: Added call to validate the turbulence model after construction
See also commit 52d83407f3
This commit is contained in:
@ -72,6 +72,8 @@ int main(int argc, char *argv[])
|
||||
#include "CourantNo.H"
|
||||
#include "setInitialDeltaT.H"
|
||||
|
||||
turbulence->validate();
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Info<< "\nStarting time loop\n" << endl;
|
||||
|
||||
@ -69,6 +69,8 @@ int main(int argc, char *argv[])
|
||||
#include "createFvOptions.H"
|
||||
#include "initContinuityErrs.H"
|
||||
|
||||
turbulence->validate();
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Info<< "\nStarting time loop\n" << endl;
|
||||
|
||||
@ -60,6 +60,8 @@ int main(int argc, char *argv[])
|
||||
#include "compressibleCourantNo.H"
|
||||
#include "setInitialDeltaT.H"
|
||||
|
||||
turbulence->validate();
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Info<< "\nStarting time loop\n" << endl;
|
||||
|
||||
@ -54,6 +54,8 @@ int main(int argc, char *argv[])
|
||||
#include "createRadiationModel.H"
|
||||
#include "initContinuityErrs.H"
|
||||
|
||||
turbulence->validate();
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Info<< "\nStarting time loop\n" << endl;
|
||||
|
||||
@ -256,4 +256,6 @@ forAll(fluidRegions, i)
|
||||
i,
|
||||
new fv::IOoptionList(fluidRegions[i])
|
||||
);
|
||||
|
||||
turbulence[i].validate();
|
||||
}
|
||||
|
||||
@ -246,4 +246,6 @@ forAll(fluidRegions, i)
|
||||
i,
|
||||
new fv::IOoptionList(fluidRegions[i])
|
||||
);
|
||||
|
||||
turbulence[i].validate();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user