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) 2013-2017 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -359,7 +359,7 @@ Foam::lduPrimitiveMesh::lduPrimitiveMesh
+ procMesh.lduAddr().lowerAddr().size();
}
// Count how faces get added. Interfaces inbetween get merged.
// Count how faces get added. Interfaces in between get merged.
// Merged interfaces: map from two coarse processors back to
// - procMeshes

View File

@ -933,7 +933,7 @@ void Foam::polyMesh::addPatches
// parallelData depends on the processorPatch ordering so force
// recalculation. Problem: should really be done in removeBoundary but
// there is some info in parallelData which might be interesting inbetween
// there is some info in parallelData which might be interesting in between
// removeBoundary and addPatches.
globalMeshDataPtr_.clear();

View File

@ -1101,7 +1101,7 @@ bool Foam::primitiveMesh::checkUpperTriangular
if ((debug || report) && nMultipleCells > 0)
{
Info<< " <<Found " << nMultipleCells
<< " neighbouring cells with multiple inbetween faces." << endl;
<< " neighbouring cells with multiple in between faces." << endl;
}
if (error)

View File

@ -53,7 +53,7 @@ dynamicRefineFvMeshCoeffs
field gamma;
// Which cells to un/refine: based on point values (simple averaging).
// - refine pointCells of point value inbetween minLevel..maxLevel
// - refine pointCells of point value in between minLevel..maxLevel
// - unrefine pointCells that are within nBufferLayers of points marked
// for refinement.
minLevel 0.01;

View File

@ -34,7 +34,7 @@ Description
refineInterval 1;
// Field to be refinement on
field alpha.water;
// Refine field inbetween lower..upper
// Refine field in between lower..upper
lowerRefineLevel 0.001;
upperRefineLevel 0.999;
// If value < unrefineLevel (default=great) unrefine

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
@ -598,7 +598,7 @@ void Foam::createShellMesh::setRefinement
// << endl;
}
// Add inbetween faces and face on top
// Add in between faces and face on top
forAll(patch_.localFaces(), facei)
{
// Get face in original ordering
@ -645,7 +645,7 @@ void Foam::createShellMesh::setRefinement
faceToFaceMap.append(facei+1); // unflipped
faceToEdgeMap.append(-1);
//Pout<< "Added inbetween face " << newF
//Pout<< "Added in between face " << newF
// << " coords:" << UIndirectList<point>(meshMod.points(), newF)
// << " at layer " << layerI
// << " own " << own

View File

@ -582,7 +582,7 @@ void Foam::cellCuts::calcFaceCuts() const
label fp1 = f.fcIndex(fp);
// Get the three items: current vertex, next vertex and edge
// inbetween
// in between
label v0 = f[fp];
label v1 = f[fp1];
label edgeI = findEdge(facei, v0, v1);

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
@ -107,7 +107,7 @@ class geomCellLooper
vector& e1
) const;
//- Return true if the cut edge at loop[index] is inbetween the cuts
//- Return true if the cut edge at loop[index] is in between the cuts
// through the edge end points.
bool edgeEndsCut(const labelList&, const label index) const;

View File

@ -192,7 +192,7 @@ void Foam::topoCellLooper::walkFace
// Returns list of vertices on 'superEdge' i.e. list of edges connected by
// non-feature points. First and last are feature points, ones inbetween are
// non-feature points. First and last are feature points, ones in between are
// not.
Foam::labelList Foam::topoCellLooper::getSuperEdge
(
@ -326,7 +326,7 @@ void Foam::topoCellLooper::walkAcrossFace
if (sz == 2)
{
// No non-feature point inbetween feature points.
// No non-feature point in between feature points.
// Mark edge.
vertI = -1;
@ -634,7 +634,7 @@ void Foam::topoCellLooper::walkSplitHex
}
else if (nextFaces.size() == 2)
{
// Split face. Get edge inbetween.
// Split face. Get edge in between.
facei = -1;
edgeI =

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
@ -95,7 +95,7 @@ class topoCellLooper
//- Returns list of vertices on 'superEdge' i.e. list of edges connected
// by non-feature points. First and last are feature points, ones
// inbetween are not.
// in between are not.
labelList getSuperEdge
(
const cellFeatures& features,

View File

@ -235,7 +235,7 @@ displacementInterpolationMotionSolver
// Sort the points
// ~~~~~~~~~~~~~~~
// Count all the points inbetween rangeI and rangeI+1
// Count all the points in between rangeI and rangeI+1
labelList nRangePoints(rangeToCoord.size(), 0);
forAll(meshCoords, pointi)

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
@ -27,7 +27,7 @@ Class
Description
Mesh motion solver for a polyMesh.
Scales inbetween motion prescribed on faceZones. Works out per point
Scales in between motion prescribed on faceZones. Works out per point
the distance between the bounding face zones (in all three directions)
at the start and then every time step
- moves the faceZones based on tables

View File

@ -538,7 +538,7 @@ void Foam::faceCoupleInfo::setCutEdgeToPoints(const labelList& cutToMasterEdges)
else if (stringedEdges.size() > 1)
{
// String up the edges between e[0] and e[1]. Store the points
// inbetween e[0] and e[1] (all in cutFaces() labels)
// in between e[0] and e[1] (all in cutFaces() labels)
DynamicList<label> splitPoints(stringedEdges.size()-1);
@ -1428,7 +1428,7 @@ void Foam::faceCoupleInfo::perfectPointMatch
const bool slaveFacesOrdered
)
{
// Calculate the set of cut faces inbetween master and slave patch assuming
// Calculate the set of cut faces in between master and slave patch assuming
// perfect match (and optional face ordering on slave)
if (debug)
@ -1692,7 +1692,7 @@ void Foam::faceCoupleInfo::subDivisionMatch
// Do masterEdges to cutEdges :
// - mark all edges between two masterEdge endpoints. (geometric test since
// this is the only distinction)
// - this gives the borders inbetween which all cutfaces come from
// - this gives the borders in between which all cutfaces come from
// a single master face.
if (debug)
{
@ -1790,7 +1790,7 @@ void Foam::faceCoupleInfo::subDivisionMatch
writeEdges(cutToMasterEdges, cutToSlaveEdges);
}
// Rework cutToMasterEdges into list of points inbetween two endpoints
// Rework cutToMasterEdges into list of points in between two endpoints
// (cutEdgeToPoints_)
setCutEdgeToPoints(cutToMasterEdges);

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
@ -200,7 +200,7 @@ class faceCoupleInfo
//- For edges originating from splitting of edges:
// given the two endpoints of the unsplit edge give the list
// of inbetween vertices
// of in between vertices
edgeLookup cutEdgeToPoints_;
@ -282,7 +282,7 @@ class faceCoupleInfo
) const;
//- From (many-to-one) map of cut edges to master edges determine
// points inbetween. I.e. just string up the edges. Stores this
// points in between. I.e. just string up the edges. Stores this
// all on cutEdgeToPoints_
void setCutEdgeToPoints(const labelList& cutToMasterEdges);

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
@ -393,7 +393,7 @@ Foam::labelList Foam::polyMeshAdder::getFaceOrder
// Extends face f with split points. cutEdgeToPoints gives for every
// edge the points introduced inbetween the endpoints.
// edge the points introduced in between the endpoints.
void Foam::polyMeshAdder::insertVertices
(
const edgeLookup& cutEdgeToPoints,
@ -758,7 +758,7 @@ void Foam::polyMeshAdder::mergePrimitives
// - get map from master edge to split edges.
// - check all faces to find any edge that is split.
{
// From two cut-points to labels of cut-points inbetween.
// From two cut-points to labels of cut-points in between.
// (in order: from e[0] to e[1]
const edgeLookup& cutEdgeToPoints = coupleInfo.cutEdgeToPoints();

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
@ -118,7 +118,7 @@ private:
);
//- Extends face f with split points. cutEdgeToPoints gives for every
// edge the points introduced inbetween the endpoints.
// edge the points introduced in between the endpoints.
static void insertVertices
(
const edgeLookup& cutEdgeToPoints,

View File

@ -1634,7 +1634,7 @@ void Foam::addPatchCellLayer::setRefinement
if (newFp >= 3)
{
// Add face inbetween faces patchFacei and nbrFacei
// Add face in between faces patchFacei and nbrFacei
// (possibly -1 for external edges)
newFace.setSize(newFp);

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
@ -188,7 +188,7 @@ public:
void updateMesh(const mapPolyMesh&);
//- Play commands into polyTopoChange to reinsert original faces.
// No other topo changes can be done inbetween setRefinement and
// No other topo changes can be done in between setRefinement and
// setUnrefinement. Can be called multiple times to undo parts
// of the last setRefinement call.
// Gets the master face labels whose sets need to be restored.

View File

@ -2465,7 +2465,7 @@ Foam::labelList Foam::hexRef8::consistentSlowRefinement
}
// Just seed with all faces inbetween different refinement levels for now
// Just seed with all faces in between different refinement levels for now
// (alternatively only seed faces on cellsToRefine but that gives problems
// if no cells to refine)
forAll(faceNeighbour, facei)
@ -2993,7 +2993,7 @@ Foam::labelList Foam::hexRef8::consistentSlowRefinement2
// Create some initial seeds to start walking from. This is only if there
// are no facesToCheck.
// Just seed with all faces inbetween different refinement levels for now
// Just seed with all faces in between different refinement levels for now
forAll(faceNeighbour, facei)
{
// Check if face already handled in loop above

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
@ -462,7 +462,7 @@ void Foam::refinementHistory::add
markCommonCells(cellToCluster);
// Unblock all faces inbetween same cluster
// Unblock all faces in between same cluster
label nUnblocked = 0;
@ -506,7 +506,7 @@ void Foam::refinementHistory::apply
labelList cellToCluster;
label nClusters = markCommonCells(cellToCluster);
// Unblock all faces inbetween same cluster
// Unblock all faces in between same cluster
labelList clusterToProc(nClusters, -1);

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
@ -906,7 +906,7 @@ void Foam::removeFaces::setRefinement
// Now all unaffected edges will have labelMax, all affected edges the
// number of unremoved faces.
// Filter for edges inbetween two remaining boundary faces that
// Filter for edges in between two remaining boundary faces that
// make too big an angle.
forAll(nFacesPerEdge, edgeI)
{

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
@ -177,7 +177,7 @@ class timeVaryingMappedFixedValueFvPatchField
//- Helper function to find the field files
fileName findFieldFile(const word& timeName) const;
//- Find boundary data inbetween current time and interpolate
//- Find boundary data in between current time and interpolate
void checkTable();

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
@ -144,7 +144,7 @@ void Foam::MGridGenGAMGAgglomeration::detectSharedFaces
sharedFaces.clear();
sharedFaces.resize(addr.lowerAddr().size()/100);
// Detect any faces inbetween same value
// Detect any faces in between same value
forAll(lower, facei)
{
label lowerData = value[lower[facei]];
@ -258,7 +258,7 @@ Foam::MGridGenGAMGAgglomeration::MGridGenGAMGAgglomeration
getNbrAgglom(addr, interfaces, nbrGlobalAgglom, cellToNbrAgglom);
// Mark all faces inbetween cells with same nbragglomeration
// Mark all faces in between cells with same nbragglomeration
labelHashSet sharedFaces(addr.size()/100);
detectSharedFaces(mesh, cellToNbrAgglom, sharedFaces);

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2012-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -170,7 +170,7 @@ public:
// Utility functions
//- Find boundary data inbetween current time and interpolate
//- Find boundary data in between current time and interpolate
void checkTable();

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
@ -518,7 +518,7 @@ private:
) const;
//- Make namedSurfaceIndex consistent with cellToZone
// - clear out any blocked faces inbetween same cell zone.
// - clear out any blocked faces in between same cell zone.
void makeConsistentFaceIndex
(
const labelList& cellToZone,

View File

@ -1326,7 +1326,7 @@ bool Foam::meshRefinement::calcRegionToZone
{
bool changed = false;
// Check whether inbetween different regions
// Check whether in between different regions
if (ownRegion != neiRegion)
{
// Jump. Change one of the sides to my type.
@ -3088,10 +3088,10 @@ Foam::autoPtr<Foam::mapPolyMesh> Foam::meshRefinement::zonify
}
// Make sure namedSurfaceIndex is unset inbetween same cell cell zones.
// Make sure namedSurfaceIndex is unset in between same cell cell zones.
if (!allowFreeStandingZoneFaces)
{
Info<< "Only keeping zone faces inbetween different cellZones."
Info<< "Only keeping zone faces in between different cellZones."
<< nl << endl;
makeConsistentFaceIndex(cellToZone, namedSurfaceIndex);

View File

@ -365,7 +365,7 @@ void Foam::refinementFeatures::findHigherLevel
label pointi = candidateMap[candidateI];
// pt is inbetween shell[minDistI] and shell[minDistI+1]
// pt is in between shell[minDistI] and shell[minDistI+1]
maxLevel[pointi] = levels[minDistI+1];
}
}

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
@ -291,7 +291,7 @@ void Foam::shellSurfaces::findHigherLevel
label pointi = candidateMap[candidateI];
// pt is inbetween shell[minDistI] and shell[minDistI+1]
// pt is in between shell[minDistI] and shell[minDistI+1]
maxLevel[pointi] = levels[minDistI+1];
}
}

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
@ -152,7 +152,7 @@ public:
return keepPoints_;
}
//- Are zone faces allowed only inbetween different cell zones
//- Are zone faces allowed only in between different cell zones
// or also just free standing?
bool allowFreeStandingZoneFaces() const
{

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
@ -186,7 +186,7 @@ private:
const label celli
) const;
//- Get faces (and its 'owner') inbetween cells of differing type
//- Get faces (and its 'owner') in between cells of differing type
// (meshType and non-meshType).
void getMeshOutside(const label meshType, faceList&, labelList&) const;

View File

@ -75,7 +75,7 @@ Foam::pointIndexHit Foam::searchableBox::findNearest
) const
{
// Point can be inside or outside. For every component direction can be
// left of min, right of max or inbetween.
// left of min, right of max or in between.
// - outside points: project first one x plane (either min().x()
// or max().x()), then onto y plane and finally z. You should be left
// with intersection point

View File

@ -112,7 +112,7 @@ Foam::pointIndexHit Foam::searchableCylinder::findNearest
}
else
{
// inbetween endcaps. Might either be nearer endcaps or cylinder wall
// in between endcaps. Might either be nearer endcaps or cylinder wall
// distance to endpoint: parallel or parallel-magDir
// distance to cylinder wall: magV-radius_

View File

@ -346,7 +346,7 @@ void Foam::searchableExtrudedCircle::findParametricNearest
info.setSize(lambdas.size());
info = pointIndexHit();
// Given the current lambdas interpolate radial direction inbetween
// Given the current lambdas interpolate radial direction in between
// endpoints (all projected onto the starting coordinate system)
quaternion qStart;
vector radialStart;

View File

@ -84,7 +84,7 @@ Foam::pointIndexHit Foam::searchablePlate::findNearest
) const
{
// For every component direction can be
// left of min, right of max or inbetween.
// left of min, right of max or in between.
// - outside points: project first one x plane (either min().x()
// or max().x()), then onto y plane and finally z. You should be left
// with intersection point

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -85,7 +85,7 @@ class regionToCell
// Private Member Functions
//- Mark faces inbetween selected and unselected elements
//- Mark faces in between selected and unselected elements
void markRegionFaces
(
const boolList& selectedCell,

View File

@ -360,7 +360,7 @@ bool Foam::orientedSurface::orientConsistent(triSurface& s)
bool anyFlipped = false;
// Do initial flipping to make triangles consistent. Otherwise if the
// nearest is e.g. on an edge inbetween inconsistent triangles it might
// nearest is e.g. on an edge in between inconsistent triangles it might
// make the wrong decision.
if (s.size() > 0)
{
@ -450,7 +450,7 @@ bool Foam::orientedSurface::orient
)
{
// Do initial flipping to make triangles consistent. Otherwise if the
// nearest is e.g. on an edge inbetween inconsistent triangles it might
// nearest is e.g. on an edge in between inconsistent triangles it might
// make the wrong decision.
bool topoFlipped = orientConsistent(s);
@ -521,7 +521,7 @@ bool Foam::orientedSurface::orient
)
{
// Do initial flipping to make triangles consistent. Otherwise if the
// nearest is e.g. on an edge inbetween inconsistent triangles it might
// nearest is e.g. on an edge in between inconsistent triangles it might
// make the wrong decision.
bool topoFlipped = orientConsistent(s);

View File

@ -409,7 +409,7 @@ bool Foam::pointToPointPlanarInterpolation::findTime
}
else
{
Pout<< "findTime : Found time " << timeVal << " inbetween"
Pout<< "findTime : Found time " << timeVal << " in between"
<< " index:" << lo << " time:" << times[lo].value()
<< " and index:" << hi << " time:" << times[hi].value()
<< endl;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -90,7 +90,7 @@ class hierarchGeomDecomp
scalarField& sortedWeightedSizes
);
//- Find index of t in list inbetween indices left and right
//- Find index of t in list in between indices left and right
static label findLower
(
const List<scalar>&,

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
@ -269,7 +269,7 @@ void Foam::multiLevelDecomp::decompose
for (label blockI = 0; blockI < n; blockI++)
{
// Count the number inbetween blocks of nNext size
// Count the number in between blocks of nNext size
label nPoints = 0;
labelList nOutsideConnections(n, 0);

View File

@ -92,7 +92,7 @@ bool Foam::polyLineSet::trackToBoundary
samplingCells.append(singleParticle.cell());
samplingFaces.append(-1);
// Convert trackPt to fraction inbetween sampleI and sampleI+1
// Convert trackPt to fraction in between sampleI and sampleI+1
scalar dist =
mag(trackPt - sampleCoords_[sampleI])
/ mag(sampleCoords_[sampleI+1] - sampleCoords_[sampleI]);

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
@ -61,7 +61,7 @@ class polyLineSet
// Private Member Functions
//- Sample till hits boundary. Called with singleParticle at position
// inbetween sampleCoords_[sampleI] and sampleCoords_[sampleI+1].
// in between sampleCoords_[sampleI] and sampleCoords_[sampleI+1].
// Returns false if end of samples reached.
bool trackToBoundary
(

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
@ -157,7 +157,7 @@ class isoSurface
) const;
//- Get location of iso value as fraction inbetween s0,s1
//- Get location of iso value as fraction in between s0,s1
scalar isoFraction
(
const scalar s0,

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
@ -109,7 +109,7 @@ class isoSurfaceCell
// Private Member Functions
//- Get location of iso value as fraction inbetween s0,s1
//- Get location of iso value as fraction in between s0,s1
scalar isoFraction
(
const scalar s0,