Skip to content
Snippets Groups Projects
Commit 04824fb8 authored by Henry Weller's avatar Henry Weller
Browse files

createTurbulenceFields: Construct fields and turbulence model for every time step processed

parent 37b92a6e
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,6 @@ int main(int argc, char *argv[]) ...@@ -50,7 +50,6 @@ int main(int argc, char *argv[])
instantList timeDirs = timeSelector::select0(runTime, args); instantList timeDirs = timeSelector::select0(runTime, args);
#include "createMesh.H" #include "createMesh.H"
#include "createFields.H"
forAll(timeDirs, timeI) forAll(timeDirs, timeI)
{ {
...@@ -58,7 +57,7 @@ int main(int argc, char *argv[]) ...@@ -58,7 +57,7 @@ int main(int argc, char *argv[])
Info<< "Time = " << runTime.timeName() << endl; Info<< "Time = " << runTime.timeName() << endl;
// Cache the turbulence fields #include "createFields.H"
Info<< "\nRetrieving field k from turbulence model" << endl; Info<< "\nRetrieving field k from turbulence model" << endl;
const volScalarField k(RASModel->k()); const volScalarField k(RASModel->k());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment