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
Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git]
/
applications
/
utilities
/
postProcessing
/
wall
/
wallHeatFlux
/
createFields.H
blob
64eac51eaad8af1042699d1fec496c497dd68b6a
1
autoPtr<hCombustionThermo> thermo
2
(
3
hCombustionThermo::New(mesh)
4
);
5
6
const volScalarField& h = thermo->h();
7
8
volScalarField rho
9
(
10
IOobject
11
(
12
"rho",
13
runTime.timeName(),
14
mesh
15
),
16
thermo->rho()
17
);
18
19
volVectorField U
20
(
21
IOobject
22
(
23
"U",
24
runTime.timeName(),
25
mesh,
26
IOobject::MUST_READ,
27
IOobject::AUTO_WRITE
28
),
29
mesh
30
);
31
32
#include "compressibleCreatePhi.H"
33
34
autoPtr<compressible::RASModel> RASModel
35
(
36
compressible::RASModel::New
37
(
38
rho,
39
U,
40
phi,
41
thermo()
42
)
43
);