BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / DNS / dnsFoam / readTurbulenceProperties.H
blob0d6b417d5ab7084596f490151e2fa393516703f0
1     Info<< "Reading turbulenceProperties\n" << endl;
3     IOdictionary turbulenceProperties
4     (
5         IOobject
6         (
7             "turbulenceProperties",
8             runTime.constant(),
9             mesh,
10             IOobject::MUST_READ_IF_MODIFIED,
11             IOobject::NO_WRITE
12         )
13     );
15     volVectorField force
16     (
17         U/dimensionedScalar("dt", dimTime, runTime.deltaTValue())
18     );
20     Kmesh K(mesh);
21     UOprocess forceGen(K, runTime.deltaTValue(), turbulenceProperties);