createFields.H
Go to the documentation of this file.
1 Info<< "Reading thermophysical properties\n" << endl;
2 
3 autoPtr<rhoThermo> pThermo(rhoThermo::New(mesh));
4 rhoThermo& thermo = pThermo();
5 thermo.validate(args.executable(), "h", "e");
6 
8 (
9  IOobject
10  (
11  "rho",
12  runTime.timeName(),
13  mesh,
14  IOobject::NO_READ,
15  IOobject::NO_WRITE
16  ),
17  thermo.rho()
18 );
19 
20 volScalarField& p = thermo.p();
21 
22 Info<< "Reading field U\n" << endl;
24 (
25  IOobject
26  (
27  "U",
28  runTime.timeName(),
29  mesh,
30  IOobject::MUST_READ,
31  IOobject::AUTO_WRITE
32  ),
33  mesh
34 );
35 
36 #include "compressibleCreatePhi.H"
37 
38 
39 Info<< "Creating turbulence model\n" << endl;
40 autoPtr<compressible::turbulenceModel> turbulence
41 (
43  (
44  rho,
45  U,
46  phi,
47  thermo
48  )
49 );
50 
51 
52 #include "readGravitationalAcceleration.H"
53 #include "readhRef.H"
54 #include "gh.H"
55 
56 
57 Info<< "Reading field p_rgh\n" << endl;
59 (
60  IOobject
61  (
62  "p_rgh",
63  runTime.timeName(),
64  mesh,
65  IOobject::MUST_READ,
66  IOobject::AUTO_WRITE
67  ),
68  mesh
69 );
70 
71 // Force p_rgh to be consistent with p
72 p_rgh = p - rho*gh;
73 
74 mesh.setFluxRequired(p_rgh.name());
75 
76 Info<< "Creating field dpdt\n" << endl;
78 (
79  IOobject
80  (
81  "dpdt",
82  runTime.timeName(),
83  mesh
84  ),
85  mesh,
86  dimensionedScalar("dpdt", p.dimensions()/dimTime, 0)
87 );
88 
89 Info<< "Creating field kinetic energy K\n" << endl;
90 volScalarField K("K", 0.5*magSqr(U));
91 
92 #include "createMRF.H"
93 #include "createRadiationModel.H"
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
surfaceScalarField & phi
volScalarField p_rgh(IOobject("p_rgh", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:55
CGAL::Exact_predicates_exact_constructions_kernel K
const word & executable() const
Name of executable without the path.
Definition: argListI.H:30
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
rho
Definition: createFields.H:81
dynamicFvMesh & mesh
volVectorField U(IOobject("U", runTime.timeName(), runTime, IOobject::NO_READ, IOobject::NO_WRITE), mesh, dimensionedVector("zero", dimVelocity, Zero))
volScalarField & dpdt
dimensioned< scalar > magSqr(const dimensioned< Type > &)
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
const volScalarField & gh
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
Definition: dimensionSets.H:51
messageStream Info
Info<< "Reading thermophysical properties\n"<< endl;autoPtr< psiThermo > pThermo(psiThermo::New(mesh))
Foam::argList args(argc, argv)
Creates and initialises the face-flux field phi.