createFluidMeshes.H
Go to the documentation of this file.
1  const wordList fluidNames(rp["fluid"]);
2 
3  PtrList<fvMesh> fluidRegions(fluidNames.size());
4 
6  {
7  Info<< "Create fluid mesh for region " << fluidNames[i]
8  << " for time = " << runTime.timeName() << nl << endl;
9 
10  fluidRegions.set
11  (
12  i,
13  new fvMesh
14  (
15  IOobject
16  (
17  fluidNames[i],
18  runTime.timeName(),
19  runTime,
20  IOobject::MUST_READ
21  )
22  )
23  );
24  }
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
regionProperties rp(runTime)
forAll(fluidNames, i)
static const char nl
Definition: Ostream.H:262
List< word > wordList
A List of words.
Definition: fileName.H:54
messageStream Info
PtrList< fvMesh > fluidRegions(fluidNames.size())
const wordList fluidNames(rp["fluid"])