createNamedDynamicFvMesh.H
Go to the documentation of this file.
2 
3  if (args.optionReadIfPresent("region", regionName))
4  {
6  << "Create mesh " << regionName << " for time = "
7  << runTime.timeName() << Foam::nl << Foam::endl;
8  }
9  else
10  {
11  regionName = Foam::fvMesh::defaultRegion;
13  << "Create mesh for time = "
14  << runTime.timeName() << Foam::nl << Foam::endl;
15  }
16 
17 
18  autoPtr<dynamicFvMesh> meshPtr
19  (
21  (
22  IOobject
23  (
24  regionName,
25  runTime.timeName(),
26  runTime,
27  IOobject::MUST_READ
28  )
29  )
30  );
31 
32  dynamicFvMesh& mesh = meshPtr();
Foam::word regionName
bool optionReadIfPresent(const word &opt, T &) const
Read a value from the named option if present.
Definition: argListI.H:198
static word defaultRegion
Return the default region name.
Definition: polyMesh.H:306
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
A class for handling words, derived from string.
Definition: word.H:59
static const char nl
Definition: Ostream.H:262
messageStream Info
Foam::argList args(argc, argv)
Foam::Info<< "Create mesh for time = "<< runTime.timeName()<< Foam::nl<< Foam::endl;}autoPtr< dynamicFvMesh > meshPtr(dynamicFvMesh::New(IOobject(regionName, runTime.timeName(), runTime, IOobject::MUST_READ)))