mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Fix some typos
This commit is contained in:
@ -85,8 +85,8 @@ int main(int argc, char *argv[])
|
||||
(
|
||||
dynamicTreeDataPoint(pointList),
|
||||
overallBb, // overall search domain
|
||||
20, // max levels; n/a
|
||||
100, // maximum ratio of cubes v.s. cells
|
||||
20, // max levels
|
||||
100, // maximum ratio of cubes v.s. cells
|
||||
100.0 // max. duplicity; n/a since no bounding boxes.
|
||||
);
|
||||
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
wmake/rules/General/CGAL
|
||||
|
||||
-lboost_thread
|
||||
-lboost_thread-mt
|
||||
|
||||
@ -881,7 +881,7 @@ void Foam::globalMeshData::calcGlobalEdgeSlaves() const
|
||||
// the transformations.
|
||||
|
||||
|
||||
// 1. collect point connectivity - basically recreating globalPoints ouput.
|
||||
// 1. collect point connectivity - basically recreating globalPoints output.
|
||||
// All points will now have a string of points. The transforms are
|
||||
// in respect to the master.
|
||||
List<labelPairList> allPointConnectivity;
|
||||
|
||||
@ -51,7 +51,7 @@ Description
|
||||
The exchange needs
|
||||
- a field of data
|
||||
- a mapDistribute which does all parallel exchange and transformations
|
||||
This appens remote data to the end of the field
|
||||
This appends remote data to the end of the field.
|
||||
- a set of indices which indicate where to get untransformed data in the
|
||||
field
|
||||
- a set of indices which indicate where to get transformed data in the
|
||||
|
||||
@ -138,7 +138,7 @@ void Foam::ParticleCollector<CloudType>::initConcentricCircles()
|
||||
|
||||
radius_ = this->coeffDict().lookup("radius");
|
||||
nSector_ = readLabel(this->coeffDict().lookup("nSector"));
|
||||
|
||||
|
||||
label nS = nSector_;
|
||||
|
||||
vector refDir;
|
||||
@ -406,7 +406,7 @@ void Foam::ParticleCollector<CloudType>::write()
|
||||
|
||||
Field<scalar> faceMassTotal(mass_.size());
|
||||
Field<scalar> faceMassFlowRate(massFlowRate_.size());
|
||||
|
||||
|
||||
forAll(faces_, faceI)
|
||||
{
|
||||
scalarList allProcMass(Pstream::nProcs());
|
||||
|
||||
@ -169,14 +169,14 @@ private:
|
||||
//- Collect parcels in polygon collectors
|
||||
label collectParcelPolygon
|
||||
(
|
||||
const point& position,
|
||||
const point& position,
|
||||
const vector& U
|
||||
) const;
|
||||
|
||||
//- Collect parcels in concentric circle collectors
|
||||
label collectParcelConcentricCircles
|
||||
(
|
||||
const point& position,
|
||||
const point& position,
|
||||
const vector& U
|
||||
) const;
|
||||
|
||||
|
||||
@ -230,7 +230,7 @@ void Foam::hierarchGeomDecomp::findBinary
|
||||
if (returnReduce(hasNotChanged, andOp<bool>()))
|
||||
{
|
||||
WarningIn("hierarchGeomDecomp::findBinary(..)")
|
||||
<< "unable to find desired deomposition split, making do!"
|
||||
<< "unable to find desired decomposition split, making do!"
|
||||
<< endl;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -69,7 +69,7 @@ Description
|
||||
|
||||
The modes of operation are:
|
||||
\table
|
||||
Mode | calcTotal | calcCoeff
|
||||
Mode | calcTotal | calcCoeff
|
||||
static pressure | no | no
|
||||
total pressure | yes | no
|
||||
pressure coefficient | no | yes
|
||||
|
||||
@ -89,7 +89,7 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Construct by mapping given
|
||||
//- Construct by mapping given
|
||||
// inclinedFilmNusseltHeightFvPatchScalarField onto a new patch
|
||||
inclinedFilmNusseltHeightFvPatchScalarField
|
||||
(
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::radiation::radiationModel::New
|
||||
Info<< "Radiation model not active: radiationProperties not found"
|
||||
<< endl;
|
||||
}
|
||||
|
||||
|
||||
Info<< "Selecting radiationModel " << modelType << endl;
|
||||
|
||||
TConstructorTable::iterator cstrIter =
|
||||
|
||||
Reference in New Issue
Block a user