OpenFOAM
6
The OpenFOAM Foundation
Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
+
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
v
w
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Related Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Typedefs
b
c
d
f
g
k
l
m
p
r
s
t
v
w
+
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
applications
solvers
compressible
sonicFoam
sonicLiquidFoam
createFields.H
Go to the documentation of this file.
1
#include "
readThermodynamicProperties.H
"
2
#include "
readTransportProperties.H
"
3
4
Info
<<
"Reading field p\n"
<<
endl
;
5
volScalarField
p
6
(
7
IOobject
8
(
9
"p"
,
10
runTime
.timeName(),
11
mesh
,
12
IOobject::MUST_READ,
13
IOobject::AUTO_WRITE
14
),
15
mesh
16
);
17
18
19
Info
<<
"Reading field U\n"
<<
endl
;
20
volVectorField
U
21
(
22
IOobject
23
(
24
"U"
,
25
runTime
.timeName(),
26
mesh
,
27
IOobject::MUST_READ,
28
IOobject::AUTO_WRITE
29
),
30
mesh
31
);
32
33
volScalarField
rho
34
(
35
IOobject
36
(
37
"rho"
,
38
runTime
.timeName(),
39
mesh
,
40
IOobject::NO_READ,
41
IOobject::AUTO_WRITE
42
),
43
rhoO +
psi
*
p
44
);
45
46
47
#include "
compressibleCreatePhi.H
"
48
49
mesh
.setFluxRequired(
p
.name());
runTime
engineTime & runTime
Definition:
createEngineTime.H:13
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition:
Ostream.H:256
U
volVectorField U(IOobject("U", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), mesh, dimensionedVector("zero", dimVelocity, Zero))
Foam::volVectorField
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition:
volFieldsFwd.H:55
Foam::volScalarField
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition:
volFieldsFwd.H:52
rho
rho
Definition:
createFields.H:81
mesh
dynamicFvMesh & mesh
Definition:
createDynamicFvMesh.H:18
readThermodynamicProperties.H
p
volScalarField & p
Definition:
createFields.H:23
Foam::Info
messageStream Info
readTransportProperties.H
compressibleCreatePhi.H
Creates and initialises the face-flux field phi.
psi
const volScalarField & psi
Definition:
createFields.H:26
Generated by
1.8.13