OpenFOAM
4.1
The OpenFOAM Foundation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
applications
utilities
postProcessing
dataConversion
foamToEnsight
checkData.H
Go to the documentation of this file.
1
// ignore special fields or fields that we don't handle
2
//
3
bool
variableGood
=
true
;
4
for
(
label
n1=0; n1<Times.size() &&
variableGood
; ++n1)
5
{
6
// ignore _0 fields
7
if
(fieldName.size() > 2 && fieldName(fieldName.size() - 2, 2) ==
"_0"
)
8
{
9
variableGood =
false
;
10
}
11
else
12
{
13
variableGood = IOobject
14
(
15
fieldName,
16
Times[n1].
name
(),
17
mesh
,
18
IOobject::NO_READ
19
).headerOk();
20
}
21
}
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition:
label.H:59
mesh
dynamicFvMesh & mesh
Definition:
createDynamicFvMesh.H:18
Foam::name
word name(const complex &)
Return a string representation of a complex.
Definition:
complex.C:47
variableGood
bool variableGood
Definition:
checkData.H:3
Generated by
1.8.11