createFields.H
Go to the documentation of this file.
1 Info<< "Reading thermophysical properties\n" << endl;
2 
3 autoPtr<psiThermo> pThermo
4 (
6 );
7 psiThermo& thermo = pThermo();
8 thermo.validate(args.executable(), "e");
9 
10 volScalarField& p = thermo.p();
11 
13 (
14  IOobject
15  (
16  "rho",
17  runTime.timeName(),
18  mesh
19  ),
20  thermo.rho()
21 );
22 
23 Info<< "Reading field U\n" << endl;
25 (
26  IOobject
27  (
28  "U",
29  runTime.timeName(),
30  mesh,
31  IOobject::MUST_READ,
32  IOobject::AUTO_WRITE
33  ),
34  mesh
35 );
36 
37 #include "compressibleCreatePhi.H"
38 
39 mesh.setFluxRequired(p.name());
40 
41 Info<< "Creating turbulence model\n" << endl;
42 autoPtr<compressible::turbulenceModel> turbulence
43 (
45  (
46  rho,
47  U,
48  phi,
49  thermo
50  )
51 );
52 
53 Info<< "Creating field kinetic energy K\n" << endl;
54 volScalarField K("K", 0.5*magSqr(U));
55 
56 #include "createMRF.H"
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
surfaceScalarField & phi
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))
dimensioned< scalar > magSqr(const dimensioned< Type > &)
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.