repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git]
/
applications
/
solvers
/
basic
/
laplacianFoam
/
createFields.H
blob
3359f2896c252cef7c7bc79f185856afda6c0132
1
Info<< "Reading field T\n" << endl;
2
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
);
15
16
17
Info<< "Reading transportProperties\n" << endl;
18
19
IOdictionary transportProperties
20
(
21
IOobject
22
(
23
"transportProperties",
24
runTime.constant(),
25
mesh,
26
IOobject::MUST_READ,
27
IOobject::NO_WRITE
28
)
29
);
30
31
32
Info<< "Reading diffusivity DT\n" << endl;
33
34
dimensionedScalar DT
35
(
36
transportProperties.lookup("DT")
37
);