Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
applications
utilities
postProcessing
wall
wallHeatFlux
createFields.H
Go to the documentation of this file.
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 <
finiteVolume/compressibleCreatePhi.H
>
33
34
autoPtr<compressible::RASModel>
RASModel
35
(
36
compressible::RASModel::New
37
(
38
rho
,
39
U
,
40
phi
,
41
thermo
()
42
)
43
);
44
45
// ************************ vim: set sw=4 sts=4 et: ************************ //