Corrected comments: inbetween -> in between

This commit is contained in:
Henry Weller
2018-02-13 16:38:41 +00:00
parent f9617196ce
commit 0248dd81e3
53 changed files with 117 additions and 117 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -725,7 +725,7 @@ void Foam::meshDualiser::createFacesAroundBoundaryPoint
{
FatalErrorInFunction
<< "Different dual cells but no feature edge"
<< " inbetween point:" << pointi
<< " in between point:" << pointi
<< " coord:" << mesh_.points()[pointi]
<< abort(FatalError);
}
@ -1331,7 +1331,7 @@ void Foam::meshDualiser::setRefinement
// - single cells on either side: triangulate
// - multiple cells: create single face between unique cell pair. Only
// create face where cells differ on either side.
// - non-feature face : inbetween cell zones.
// - non-feature face : in between cell zones.
forAll(faceToDualPoint_, facei)
{
if (faceToDualPoint_[facei] != -1 && mesh_.isInternalFace(facei))

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -34,7 +34,7 @@ Description
Usually to preserve boundaries:
- all boundary faces are featureFaces
- all edges and points inbetween different patches are
- all edges and points in between different patches are
featureEdges/points.
In same way you can also preserve internal faces (e.g. faceZones)

View File

@ -44,8 +44,8 @@ Usage
Normally only constructs a single face between two cells. This single
face might be too distorted. splitAllFaces will create a single face for
every original cell the face passes through. The mesh will thus have
multiple faces inbetween two cells! (so is not strictly upper-triangular
anymore - checkMesh will complain)
multiple faces in between two cells! (so is not strictly
upper-triangular anymore - checkMesh will complain)
- \par -doNotPreserveFaceZones:
By default all faceZones are preserved by marking all faces, edges and
@ -362,7 +362,7 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"splitAllFaces",
"have multiple faces inbetween cells"
"have multiple faces in between cells"
);
argList::addBoolOption
(
@ -373,7 +373,7 @@ int main(int argc, char *argv[])
(
"doNotPreserveFaceZones",
"disable the default behaviour of preserving faceZones by having"
" multiple faces inbetween cells"
" multiple faces in between cells"
);
#include "setRootCase.H"

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -255,7 +255,7 @@ labelList getFaceOrder
// Determine face order such that inside region faces are sorted
// upper-triangular but inbetween region faces are handled like boundary faces.
// upper-triangular but in between region faces are handled like boundary faces.
labelList getRegionFaceOrder
(
const primitiveMesh& mesh,

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -31,7 +31,7 @@ Description
cell-face-cell walking without crossing
- boundary faces
- additional faces from faceset (-blockedFaces faceSet).
- any face inbetween differing cellZones (-cellZones)
- any face in between differing cellZones (-cellZones)
Output is:
- volScalarField with regions as different scalars (-detectOnly)