Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
c091d856
Commit
c091d856
authored
Dec 03, 2009
by
Mark Olesen
Browse files
pedantic changes: 'forAll (' -> 'forAll(' in applications/
- to match coding guidelines
parent
58b7e641
Changes
74
Hide whitespace changes
Inline
Side-by-side
applications/solvers/combustion/dieselEngineFoam/createFields.H
View file @
c091d856
...
...
@@ -88,7 +88,7 @@ volScalarField DpDt =
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/combustion/reactingFoam/createFields.H
View file @
c091d856
...
...
@@ -77,7 +77,7 @@ volScalarField DpDt =
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/combustion/rhoReactingFoam/createFields.H
View file @
c091d856
...
...
@@ -77,7 +77,7 @@ volScalarField DpDt =
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/lagrangian/coalChemistryFoam/createFields.H
View file @
c091d856
...
...
@@ -28,7 +28,7 @@
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/lagrangian/porousExplicitSourceReactingParcelFoam/createFields.H
View file @
c091d856
...
...
@@ -84,7 +84,7 @@
Info
<<
"Creating multi-variate interpolation scheme
\n
"
<<
endl
;
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/lagrangian/reactingParcelFoam/createFields.H
View file @
c091d856
...
...
@@ -90,7 +90,7 @@
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
forAll
(
Y
,
i
)
forAll
(
Y
,
i
)
{
fields
.
add
(
Y
[
i
]);
}
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/interfacialModels/dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C
View file @
c091d856
...
...
@@ -89,7 +89,7 @@ Foam::tmp<Foam::volScalarField> Foam::GidaspowErgunWenYu::K
volScalarField
&
KWenYu
=
tKWenYu
();
// Ergun
forAll
(
beta
,
cellj
)
forAll
(
beta
,
cellj
)
{
if
(
beta
[
cellj
]
<=
0
.
8
)
{
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/interfacialModels/dragModels/SyamlalOBrien/SyamlalOBrien.C
View file @
c091d856
...
...
@@ -73,7 +73,7 @@ Foam::tmp<Foam::volScalarField> Foam::SyamlalOBrien::K
volScalarField
A
=
pow
(
beta
,
4
.
14
);
volScalarField
B
=
0
.
8
*
pow
(
beta
,
1
.
28
);
forAll
(
beta
,
celli
)
forAll
(
beta
,
celli
)
{
if
(
beta
[
celli
]
>
0
.
85
)
{
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/kineticTheoryModels/frictionalStressModel/Schaeffer/SchaefferFrictionalStress.C
View file @
c091d856
...
...
@@ -125,7 +125,7 @@ Foam::tmp<Foam::volScalarField> Foam::SchaefferFrictionalStress::muf
volScalarField
&
muff
=
tmuf
();
forAll
(
D
,
celli
)
forAll
(
D
,
celli
)
{
if
(
alpha
[
celli
]
>
alphaMax
.
value
()
-
5e-2
)
{
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/packingLimiter.H
View file @
c091d856
...
...
@@ -7,20 +7,20 @@
labelListList
neighbour
=
mesh
.
cellCells
();
scalarField
cellVolumes
=
mesh
.
cellVolumes
();
forAll
(
alphaEx
,
celli
)
forAll
(
alphaEx
,
celli
)
{
// Finding the labels of the neighbouring cells
labelList
neighbourCell
=
neighbour
[
celli
];
// Initializing neighbouring cells contribution
scalar
neighboursEx
=
0
.
0
;
forAll
(
neighbourCell
,
cellj
)
forAll
(
neighbourCell
,
cellj
)
{
labelList
neighboursNeighbour
=
neighbour
[
neighbourCell
[
cellj
]];
scalar
neighboursNeighbourCellVolumes
=
0
.
0
;
forAll
(
neighboursNeighbour
,
cellk
)
forAll
(
neighboursNeighbour
,
cellk
)
{
neighboursNeighbourCellVolumes
+=
cellVolumes
[
neighboursNeighbour
[
cellk
]];
...
...
applications/test/nearWallDist-wave/testWallDist2.C
View file @
c091d856
...
...
@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
// Count walls
label
nWalls
=
0
;
forAll
(
mesh
.
boundary
(),
patchI
)
forAll
(
mesh
.
boundary
(),
patchI
)
{
const
fvPatch
&
patch
=
mesh
.
boundary
()[
patchI
];
...
...
@@ -87,13 +87,13 @@ int main(int argc, char *argv[])
labelList
changedFaces
(
nWalls
);
label
nChangedFaces
=
0
;
forAll
(
mesh
.
boundary
(),
patchI
)
forAll
(
mesh
.
boundary
(),
patchI
)
{
const
fvPatch
&
patch
=
mesh
.
boundary
()[
patchI
];
if
(
isA
<
wallFvPatch
>
(
patch
))
{
forAll
(
patch
.
Cf
(),
patchFaceI
)
forAll
(
patch
.
Cf
(),
patchFaceI
)
{
const
polyPatch
&
polyPatch
=
mesh
.
boundaryMesh
()[
patchI
];
...
...
@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
}
// Copy boundary values
forAll
(
wallDistUncorrected
.
boundaryField
(),
patchI
)
forAll
(
wallDistUncorrected
.
boundaryField
(),
patchI
)
{
fvPatchScalarField
&
patchField
=
wallDistUncorrected
.
boundaryField
()[
patchI
];
...
...
applications/test/readCHEMKINIII/readCHEMKINIII.C
View file @
c091d856
...
...
@@ -72,7 +72,7 @@ int main(int argc, char *argv[])
PtrList
<
gasReaction
>
testReactions
(
nReactions
);
forAll
(
testReactions
,
i
)
forAll
(
testReactions
,
i
)
{
testReactions
.
set
(
...
...
applications/test/router/processorRouter.C
View file @
c091d856
...
...
@@ -53,7 +53,7 @@ labelList procNeighbours(const polyMesh& mesh)
label
nNeighbours
=
0
;
forAll
(
mesh
.
boundaryMesh
(),
patchI
)
forAll
(
mesh
.
boundaryMesh
(),
patchI
)
{
if
(
isA
<
processorPolyPatch
>
(
mesh
.
boundaryMesh
()[
patchI
]))
{
...
...
@@ -65,7 +65,7 @@ labelList procNeighbours(const polyMesh& mesh)
nNeighbours
=
0
;
forAll
(
mesh
.
boundaryMesh
(),
patchI
)
forAll
(
mesh
.
boundaryMesh
(),
patchI
)
{
if
(
isA
<
processorPolyPatch
>
(
mesh
.
boundaryMesh
()[
patchI
]))
{
...
...
applications/utilities/mesh/advanced/refinementLevel/refinementLevel.C
View file @
c091d856
...
...
@@ -216,7 +216,7 @@ int main(int argc, char *argv[])
List
<
polyPatch
*>
p
(
patches
.
size
());
forAll
(
p
,
patchI
)
forAll
(
p
,
patchI
)
{
p
[
patchI
]
=
patches
[
patchI
].
clone
(
fMesh
.
boundaryMesh
()).
ptr
();
}
...
...
applications/utilities/mesh/conversion/cfx4ToFoam/cfx4ToFoam.C
View file @
c091d856
...
...
@@ -81,7 +81,7 @@ int main(int argc, char *argv[])
word
blockName
;
label
nx
,
ny
,
nz
;
forAll
(
blocks
,
blockI
)
forAll
(
blocks
,
blockI
)
{
cfxFile
>>
blockName
;
cfxFile
>>
nx
>>
ny
>>
nz
;
...
...
@@ -101,7 +101,7 @@ int main(int argc, char *argv[])
{
label
no
,
blkNo
,
patchLabel
;
forAll
(
cfxPatchTypes
,
patchI
)
forAll
(
cfxPatchTypes
,
patchI
)
{
// Grab patch type and name
cfxFile
>>
cfxPatchTypes
[
patchI
]
>>
cfxPatchNames
[
patchI
]
>>
no
;
...
...
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
patchRanges
[
patchI
].
setSize
(
6
);
labelList
&
curRange
=
patchRanges
[
patchI
];
forAll
(
curRange
,
rI
)
forAll
(
curRange
,
rI
)
{
cfxFile
>>
curRange
[
rI
];
}
...
...
@@ -147,7 +147,7 @@ int main(int argc, char *argv[])
Info
<<
"Reading block points"
<<
endl
;
forAll
(
blocks
,
blockI
)
forAll
(
blocks
,
blockI
)
{
Info
<<
"block "
<<
blockI
<<
" is a "
;
blocks
[
blockI
].
readPoints
(
cfxFile
);
...
...
@@ -176,7 +176,7 @@ int main(int argc, char *argv[])
faceListList
rawPatches
(
npatch
);
forAll
(
rawPatches
,
patchI
)
forAll
(
rawPatches
,
patchI
)
{
const
word
&
patchType
=
cfxPatchTypes
[
patchI
];
...
...
@@ -214,7 +214,7 @@ int main(int argc, char *argv[])
// For efficiency, create merge pairs in the first pass
labelListListList
glueMergePairs
(
glueMasterPatches
.
size
());
forAll
(
glueMasterPatches
,
glueI
)
forAll
(
glueMasterPatches
,
glueI
)
{
const
label
masterPatch
=
glueMasterPatches
[
glueI
];
const
label
slavePatch
=
glueSlavePatches
[
glueI
];
...
...
@@ -247,14 +247,14 @@ int main(int argc, char *argv[])
scalar
sqrMergeTol
=
GREAT
;
forAll
(
blockPFaces
,
blockPFaceLabel
)
forAll
(
blockPFaces
,
blockPFaceLabel
)
{
const
labelList
&
blockPFacePoints
=
blockPFaces
[
blockPFaceLabel
];
forAll
(
blockPFacePoints
,
blockPFacePointI
)
forAll
(
blockPFacePoints
,
blockPFacePointI
)
{
forAll
(
blockPFacePoints
,
blockPFacePointI2
)
forAll
(
blockPFacePoints
,
blockPFacePointI2
)
{
if
(
blockPFacePointI
!=
blockPFacePointI2
)
{
...
...
@@ -281,7 +281,7 @@ int main(int argc, char *argv[])
// N-squared point search over all points of all faces of
// master block over all point of all faces of slave block
forAll
(
blockPFaces
,
blockPFaceLabel
)
forAll
(
blockPFaces
,
blockPFaceLabel
)
{
const
labelList
&
blockPFacePoints
=
blockPFaces
[
blockPFaceLabel
];
...
...
@@ -289,16 +289,16 @@ int main(int argc, char *argv[])
labelList
&
cp
=
curPairs
[
blockPFaceLabel
];
cp
.
setSize
(
blockPFacePoints
.
size
());
forAll
(
blockPFacePoints
,
blockPFacePointI
)
forAll
(
blockPFacePoints
,
blockPFacePointI
)
{
found
=
false
;
forAll
(
blockNFaces
,
blockNFaceLabel
)
forAll
(
blockNFaces
,
blockNFaceLabel
)
{
const
labelList
&
blockNFacePoints
=
blockNFaces
[
blockNFaceLabel
];
forAll
(
blockNFacePoints
,
blockNFacePointI
)
forAll
(
blockNFacePoints
,
blockNFacePointI
)
{
if
(
...
...
@@ -360,7 +360,7 @@ int main(int argc, char *argv[])
changedPointMerge
=
false
;
nPasses
++
;
forAll
(
glueMasterPatches
,
glueI
)
forAll
(
glueMasterPatches
,
glueI
)
{
const
label
masterPatch
=
glueMasterPatches
[
glueI
];
const
label
slavePatch
=
glueSlavePatches
[
glueI
];
...
...
@@ -372,14 +372,14 @@ int main(int argc, char *argv[])
const
labelListList
&
curPairs
=
glueMergePairs
[
glueI
];
forAll
(
blockPFaces
,
blockPFaceLabel
)
forAll
(
blockPFaces
,
blockPFaceLabel
)
{
const
labelList
&
blockPFacePoints
=
blockPFaces
[
blockPFaceLabel
];
const
labelList
&
cp
=
curPairs
[
blockPFaceLabel
];
forAll
(
cp
,
blockPFacePointI
)
forAll
(
cp
,
blockPFacePointI
)
{
label
PpointLabel
=
blockPFacePoints
[
blockPFacePointI
]
...
...
@@ -421,7 +421,7 @@ int main(int argc, char *argv[])
}
forAll
(
glueMasterPatches
,
glueI
)
forAll
(
glueMasterPatches
,
glueI
)
{
const
label
masterPatch
=
glueMasterPatches
[
glueI
];
const
label
slavePatch
=
glueSlavePatches
[
glueI
];
...
...
@@ -433,12 +433,12 @@ int main(int argc, char *argv[])
const
faceList
&
blockNFaces
=
rawPatches
[
slavePatch
];
forAll
(
blockPFaces
,
blockPFaceLabel
)
forAll
(
blockPFaces
,
blockPFaceLabel
)
{
const
labelList
&
blockPFacePoints
=
blockPFaces
[
blockPFaceLabel
];
forAll
(
blockPFacePoints
,
blockPFacePointI
)
forAll
(
blockPFacePoints
,
blockPFacePointI
)
{
label
PpointLabel
=
blockPFacePoints
[
blockPFacePointI
]
...
...
@@ -455,12 +455,12 @@ int main(int argc, char *argv[])
}
}
forAll
(
blockNFaces
,
blockNFaceLabel
)
forAll
(
blockNFaces
,
blockNFaceLabel
)
{
const
labelList
&
blockNFacePoints
=
blockNFaces
[
blockNFaceLabel
];
forAll
(
blockNFacePoints
,
blockNFacePointI
)
forAll
(
blockNFacePoints
,
blockNFacePointI
)
{
label
NpointLabel
=
blockNFacePoints
[
blockNFacePointI
]
...
...
@@ -483,7 +483,7 @@ int main(int argc, char *argv[])
// given old point label
label
nNewPoints
=
0
;
forAll
(
pointMergeList
,
pointLabel
)
forAll
(
pointMergeList
,
pointLabel
)
{
if
(
pointMergeList
[
pointLabel
]
>
pointLabel
)
{
...
...
@@ -513,11 +513,11 @@ int main(int argc, char *argv[])
pointField
points
(
nMeshPoints
);
forAll
(
blocks
,
blockI
)
forAll
(
blocks
,
blockI
)
{
const
pointField
&
blockPoints
=
blocks
[
blockI
].
points
();
forAll
(
blockPoints
,
blockPointLabel
)
forAll
(
blockPoints
,
blockPointLabel
)
{
points
[
...
...
@@ -544,15 +544,15 @@ int main(int argc, char *argv[])
label
nCreatedCells
=
0
;
forAll
(
blocks
,
blockI
)
forAll
(
blocks
,
blockI
)
{
labelListList
curBlockCells
=
blocks
[
blockI
].
blockCells
();
forAll
(
curBlockCells
,
blockCellI
)
forAll
(
curBlockCells
,
blockCellI
)
{
labelList
cellPoints
(
curBlockCells
[
blockCellI
].
size
());
forAll
(
cellPoints
,
pointI
)
forAll
(
cellPoints
,
pointI
)
{
cellPoints
[
pointI
]
=
pointMergeList
...
...
@@ -579,7 +579,7 @@ int main(int argc, char *argv[])
label
nCreatedPatches
=
0
;
forAll
(
rawPatches
,
patchI
)
forAll
(
rawPatches
,
patchI
)
{
if
(
rawPatches
[
patchI
].
size
()
&&
cfxPatchTypes
[
patchI
]
!=
"BLKBDY"
)
{
...
...
@@ -610,14 +610,14 @@ int main(int argc, char *argv[])
label
oldSize
=
renumberedPatch
.
size
();
renumberedPatch
.
setSize
(
oldSize
+
curRawPatch
.
size
());
forAll
(
curRawPatch
,
faceI
)
forAll
(
curRawPatch
,
faceI
)
{
const
face
&
oldFace
=
curRawPatch
[
faceI
];
face
&
newFace
=
renumberedPatch
[
oldSize
+
faceI
];
newFace
.
setSize
(
oldFace
.
size
());
forAll
(
oldFace
,
pointI
)
forAll
(
oldFace
,
pointI
)
{
newFace
[
pointI
]
=
pointMergeList
...
...
@@ -634,14 +634,14 @@ int main(int argc, char *argv[])
faceList
&
renumberedPatch
=
boundary
[
nCreatedPatches
];
renumberedPatch
.
setSize
(
curRawPatch
.
size
());
forAll
(
curRawPatch
,
faceI
)
forAll
(
curRawPatch
,
faceI
)
{
const
face
&
oldFace
=
curRawPatch
[
faceI
];
face
&
newFace
=
renumberedPatch
[
faceI
];
newFace
.
setSize
(
oldFace
.
size
());
forAll
(
oldFace
,
pointI
)
forAll
(
oldFace
,
pointI
)
{
newFace
[
pointI
]
=
pointMergeList
...
...
applications/utilities/mesh/conversion/cfx4ToFoam/hexBlock.C
View file @
c091d856
...
...
@@ -58,7 +58,7 @@ hexBlock::hexBlock(const label nx, const label ny, const label nz)
void
hexBlock
::
readPoints
(
Istream
&
is
)
{
forAll
(
points_
,
i
)
forAll
(
points_
,
i
)
{
is
>>
points_
[
i
].
x
()
>>
points_
[
i
].
y
()
>>
points_
[
i
].
z
();
}
...
...
@@ -376,7 +376,7 @@ faceList hexBlock::patchFaces(const label direc, const labelList& range) const
else
if
(
blockHandedness_
==
left
)
{
// turn all faces inside out
forAll
(
result
,
faceI
)
forAll
(
result
,
faceI
)
{
result
[
faceI
]
=
result
[
faceI
].
reverseFace
();
}
...
...
applications/utilities/mesh/conversion/fluent3DMeshToFoam/fluent3DMeshToFoam.L
View file @
c091d856
...
...
@@ -473,7 +473,7 @@ endOfSection {space}")"{space}
// set size of label list
curFaceLabels.setSize(strtol(YYText(), &endPtr, 16));
forAll
(curFaceLabels, i)
forAll(curFaceLabels, i)
{
curFaceLabels[i] = strtol(endPtr, &endPtr, 16) - 1;
}
...
...
@@ -837,7 +837,7 @@ int main(int argc, char *argv[])
// faces and move to neighbour
boolList fm(faces.size(), false);
forAll
(faces, facei)
forAll(faces, facei)
{
if
(
...
...
applications/utilities/mesh/conversion/fluentMeshToFoam/create3DCellShape.C
View file @
c091d856
...
...
@@ -155,7 +155,7 @@ cellShape create3DCellShape
bool
found
=
false
;
forAll
(
localFaces
,
meshFaceI
)
forAll
(
localFaces
,
meshFaceI
)
{
if
(
localFaces
[
meshFaceI
].
size
()
==
firstModelFace
.
size
())
{
...
...
@@ -166,7 +166,7 @@ cellShape create3DCellShape
meshFaceUsed
[
meshFaceI
]
=
true
;
forAll
(
curMeshFace
,
pointI
)
forAll
(
curMeshFace
,
pointI
)
{
pointLabels
[
firstModelFace
[
pointI
]]
=
curMeshFace
[
pointI
];
}
...
...
@@ -199,7 +199,7 @@ cellShape create3DCellShape
found
=
false
;
// Loop through mesh faces until a match is found
forAll
(
localFaces
,
meshFaceI
)
forAll
(
localFaces
,
meshFaceI
)
{
if
(
...
...
@@ -220,7 +220,7 @@ cellShape create3DCellShape
// try matching the face
label
nMatchedLabels
=
0
;
forAll
(
meshFaceLabels
,
pointI
)
forAll
(
meshFaceLabels
,
pointI
)
{
if
(
...
...
@@ -241,7 +241,7 @@ cellShape create3DCellShape
if
(
found
)
{
// match found. Insert mesh face
forAll
(
meshFaceLabels
,
pointI
)
forAll
(
meshFaceLabels
,
pointI
)
{
pointLabels
[
curModelFace
[
pointI
]]
=
meshFaceLabels
[
pointI
];
...
...
applications/utilities/mesh/conversion/fluentMeshToFoam/extrudedQuadCellShape.C
View file @
c091d856
...
...
@@ -73,7 +73,7 @@ cellShape extrudedQuadCellShape
// make a list of outward-pointing faces
labelListList
localFaces
(
4
);
forAll
(
faceLabels
,
faceI
)
forAll
(
faceLabels
,
faceI
)
{
const
label
curFaceLabel
=
faceLabels
[
faceI
];
...
...
@@ -100,7 +100,7 @@ cellShape extrudedQuadCellShape
{
// Reverse the face. Note: it is necessary to reverse by
// hand to preserve connectivity of a 2-D mesh.
//
//
localFaces
[
faceI
].
setSize
(
curFace
.
size
());
forAllReverse
(
curFace
,
i
)
...
...
applications/utilities/mesh/conversion/fluentMeshToFoam/extrudedTriangleCellShape.C
View file @
c091d856
...
...
@@ -75,7 +75,7 @@ cellShape extrudedTriangleCellShape
// make a list of outward-pointing faces
labelListList
localFaces
(
3
);
forAll
(
faceLabels
,
faceI
)
forAll
(
faceLabels
,
faceI
)
{
const
label
curFaceLabel
=
faceLabels
[
faceI
];
...
...
@@ -102,7 +102,7 @@ cellShape extrudedTriangleCellShape
{
// Reverse the face. Note: it is necessary to reverse by
// hand to preserve connectivity of a 2-D mesh.
//
//
localFaces
[
faceI
].
setSize
(
curFace
.
size
());
forAllReverse
(
curFace
,
i
)
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment