ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / basic / laplacianFoam / createFields.H
blob616afe1a885d3324aec5389b820e90edfd105db6
1     Info<< "Reading field T\n" << endl;
3     volScalarField T
4     (
5         IOobject
6         (
7             "T",
8             runTime.timeName(),
9             mesh,
10             IOobject::MUST_READ,
11             IOobject::AUTO_WRITE
12         ),
13         mesh
14     );
17     Info<< "Reading transportProperties\n" << endl;
19     IOdictionary transportProperties
20     (
21         IOobject
22         (
23             "transportProperties",
24             runTime.constant(),
25             mesh,
26             IOobject::MUST_READ_IF_MODIFIED,
27             IOobject::NO_WRITE
28         )
29     );
32     Info<< "Reading diffusivity DT\n" << endl;
34     dimensionedScalar DT
35     (
36         transportProperties.lookup("DT")
37     );