FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

readTurbulenceProperties.H

Go to the documentation of this file.
00001     Info<< "Reading turbulenceProperties\n" << endl;
00002 
00003     IOdictionary turbulenceProperties
00004     (
00005         IOobject
00006         (
00007             "turbulenceProperties",
00008             runTime.constant(),
00009             mesh,
00010             IOobject::MUST_READ,
00011             IOobject::NO_WRITE
00012         )
00013     );
00014 
00015     volVectorField force =
00016         U/dimensionedScalar("dt", dimTime, runTime.deltaT().value());
00017 
00018     Kmesh K(mesh);
00019     UOprocess forceGen(K, runTime.deltaT().value(), turbulenceProperties);
00020 
00021 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines