createFields.H
Go to the documentation of this file.
1 Info<< "Reading field T\n" << endl;
2
4 (
5 IOobject
6 (
7 "T",
8 runTime.timeName(),
9 mesh,
10 IOobject::MUST_READ,
11 IOobject::AUTO_WRITE
12 ),
13 mesh
14 );
15
16 Info<< "Reading transportProperties\n" << endl;
17
18 IOdictionary transportProperties
19 (
20 IOobject
21 (
22 "transportProperties",
23 runTime.constant(),
24 mesh,
25 IOobject::MUST_READ_IF_MODIFIED,
26 IOobject::NO_WRITE
27 )
28 );
29
30
31 Info<< "Reading diffusivity DT\n" << endl;
32
33 dimensionedScalar DT("DT", dimViscosity, transportProperties);
const volScalarField & T
dynamicFvMesh & mesh
engineTime & runTime
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:82
messageStream Info
Information stream (stdout output on master, null elsewhere)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:372
IOdictionary transportProperties(IOobject("transportProperties", runTime.constant(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE))