applications/solvers: Added call to validate the turbulence model after construction

See also commit 52d83407f3
This commit is contained in:
Henry Weller
2015-12-01 10:25:38 +00:00
parent 52d83407f3
commit 3dfe844d9a
55 changed files with 117 additions and 11 deletions

View File

@ -72,6 +72,8 @@ int main(int argc, char *argv[])
#include "CourantNo.H"
#include "setInitialDeltaT.H"
turbulence->validate();
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;

View File

@ -69,6 +69,8 @@ int main(int argc, char *argv[])
#include "createFvOptions.H"
#include "initContinuityErrs.H"
turbulence->validate();
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;

View File

@ -60,6 +60,8 @@ int main(int argc, char *argv[])
#include "compressibleCourantNo.H"
#include "setInitialDeltaT.H"
turbulence->validate();
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;

View File

@ -54,6 +54,8 @@ int main(int argc, char *argv[])
#include "createRadiationModel.H"
#include "initContinuityErrs.H"
turbulence->validate();
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nStarting time loop\n" << endl;

View File

@ -256,4 +256,6 @@ forAll(fluidRegions, i)
i,
new fv::IOoptionList(fluidRegions[i])
);
turbulence[i].validate();
}

View File

@ -246,4 +246,6 @@ forAll(fluidRegions, i)
i,
new fv::IOoptionList(fluidRegions[i])
);
turbulence[i].validate();
}