createFieldsLaplacian.H
Go to the documentation of this file.
1 Info << "Reading field T\n"
2  << endl;
3 TPtr_.reset(
4  new volScalarField(
5  IOobject(
6  "T",
7  runTime.timeName(),
8  mesh,
9  IOobject::MUST_READ,
10  IOobject::AUTO_WRITE),
11  mesh));
12 
13 Info << "Reading transportProperties\n"
14  << endl;
15 
16 IOdictionary transportProperties(
17  IOobject(
18  "transportProperties",
19  runTime.constant(),
20  mesh,
21  IOobject::MUST_READ,
22  IOobject::NO_WRITE));
23 
24 Info << "Reading diffusivity DT\n"
25  << endl;
26 
27 DTPtr_.reset(
28  new dimensionedScalar(
29  "DT",
30  dimViscosity,
31  transportProperties));
mesh
fvMesh & mesh
Definition: createRefsHeatTransfer.H:4
runTime
Time & runTime
Definition: createRefsHeatTransfer.H:1