initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / DNS / dnsFoam / readTurbulenceProperties.H
blob9f4d8368a87a1c720bb184ad8ca83008575cdb70
1     Info<< "Reading turbulenceProperties\n" << endl;
3     IOdictionary turbulenceProperties
4     (
5         IOobject
6         (
7             "turbulenceProperties",
8             runTime.constant(),
9             mesh,
10             IOobject::MUST_READ,
11             IOobject::NO_WRITE
12         )
13     );
15     volVectorField force =
16         U/dimensionedScalar("dt", dimTime, runTime.deltaT().value());
18     Kmesh K(mesh);
19     UOprocess forceGen(K, runTime.deltaT().value(), turbulenceProperties);