createMeshesPostProcess.H
Go to the documentation of this file.
1 #include "createMesh.H"
2 
3 IOdictionary filmDict
4 (
5  IOobject
6  (
7  "surfaceFilmProperties",
8  runTime.constant(),
9  runTime,
10  IOobject::MUST_READ,
11  IOobject::NO_WRITE,
12  false
13  )
14 );
15 
16 const word filmRegionName = filmDict.get<word>("region");
17 
18 fvMesh filmMesh
19 (
20  IOobject
21  (
23  runTime.timeName(),
24  runTime,
25  IOobject::MUST_READ
26  )
27 );
runTime
engineTime & runTime
Definition: createEngineTime.H:13
filmDict
IOdictionary filmDict(IOobject("surfaceFilmProperties", runTime.constant(), runTime, IOobject::MUST_READ, IOobject::NO_WRITE, false))
filmMesh
fvMesh filmMesh(IOobject(filmRegionName, runTime.timeName(), runTime, IOobject::MUST_READ))
filmRegionName
const word filmRegionName
Definition: createMeshesPostProcess.H:16
createMesh.H
Required Variables.