mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: spelling, doxygen
This commit is contained in:
@ -363,7 +363,7 @@ if
|
|||||||
|
|
||||||
if (pFaces[LINER][0].size() != newLinerFaces.size())
|
if (pFaces[LINER][0].size() != newLinerFaces.size())
|
||||||
{
|
{
|
||||||
Info<< "Transfered " << pFaces[LINER][0].size() - newLinerFaces.size()
|
Info<< "Transferred " << pFaces[LINER][0].size() - newLinerFaces.size()
|
||||||
<< " faces from liner region to cylinder head" << endl;
|
<< " faces from liner region to cylinder head" << endl;
|
||||||
pFaces[LINER][0] = newLinerFaces;
|
pFaces[LINER][0] = newLinerFaces;
|
||||||
}
|
}
|
||||||
@ -392,7 +392,7 @@ if
|
|||||||
|
|
||||||
if (pFaces[CYLINDERHEAD][0].size() != newCylinderHeadFaces.size())
|
if (pFaces[CYLINDERHEAD][0].size() != newCylinderHeadFaces.size())
|
||||||
{
|
{
|
||||||
Info<< "Transfered faces from cylinder-head region to linder" << endl;
|
Info<< "Transferred faces from cylinder-head region to linder" << endl;
|
||||||
pFaces[CYLINDERHEAD][0] = newCylinderHeadFaces;
|
pFaces[CYLINDERHEAD][0] = newCylinderHeadFaces;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -97,7 +97,7 @@ Foam::token::compound& Foam::token::transferCompoundToken(const Istream& is)
|
|||||||
if (data_.compoundPtr->empty())
|
if (data_.compoundPtr->empty())
|
||||||
{
|
{
|
||||||
FatalIOErrorInFunction(is)
|
FatalIOErrorInFunction(is)
|
||||||
<< "compound has already been transfered from token\n "
|
<< "compound has already been transferred from token\n "
|
||||||
<< info() << abort(FatalIOError);
|
<< info() << abort(FatalIOError);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@ -249,8 +249,8 @@ public:
|
|||||||
//- Return root path
|
//- Return root path
|
||||||
inline const fileName& rootPath() const;
|
inline const fileName& rootPath() const;
|
||||||
|
|
||||||
//- Return distributed flag (i.e. are rootPaths different on
|
//- Return distributed flag
|
||||||
// different machines)
|
//- (i.e. are rootPaths different on different machines)
|
||||||
inline bool distributed() const;
|
inline bool distributed() const;
|
||||||
|
|
||||||
//- Return case name (parallel run) or global case (serial run)
|
//- Return case name (parallel run) or global case (serial run)
|
||||||
|
|||||||
@ -601,7 +601,7 @@ bool Foam::fileOperations::uncollatedFileOperation::read
|
|||||||
if (masterOnly && Pstream::parRun())
|
if (masterOnly && Pstream::parRun())
|
||||||
{
|
{
|
||||||
// Master reads headerclassname from file. Make sure this gets
|
// Master reads headerclassname from file. Make sure this gets
|
||||||
// transfered as well as contents.
|
// transferred as well as contents.
|
||||||
Pstream::scatter(io.headerClassName());
|
Pstream::scatter(io.headerClassName());
|
||||||
Pstream::scatter(io.note());
|
Pstream::scatter(io.note());
|
||||||
|
|
||||||
|
|||||||
@ -176,7 +176,7 @@ void Foam::Cloud<ParticleType>::move
|
|||||||
pIter().stepFraction() = 0;
|
pIter().stepFraction() = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// List of lists of particles to be transfered for all of the
|
// List of lists of particles to be transferred for all of the
|
||||||
// neighbour processors
|
// neighbour processors
|
||||||
List<IDLList<ParticleType>> particleTransferLists
|
List<IDLList<ParticleType>> particleTransferLists
|
||||||
(
|
(
|
||||||
@ -292,19 +292,19 @@ void Foam::Cloud<ParticleType>::move
|
|||||||
pBufs.finishedSends(allNTrans);
|
pBufs.finishedSends(allNTrans);
|
||||||
|
|
||||||
|
|
||||||
bool transfered = false;
|
bool transferred = false;
|
||||||
|
|
||||||
for (const label n : allNTrans)
|
for (const label n : allNTrans)
|
||||||
{
|
{
|
||||||
if (n)
|
if (n)
|
||||||
{
|
{
|
||||||
transfered = true;
|
transferred = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
reduce(transfered, orOp<bool>());
|
reduce(transferred, orOp<bool>());
|
||||||
|
|
||||||
if (!transfered)
|
if (!transferred)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -217,7 +217,7 @@ private:
|
|||||||
//- Name of the radiative heat flux field
|
//- Name of the radiative heat flux field
|
||||||
const word qrName_;
|
const word qrName_;
|
||||||
|
|
||||||
//- Name of the species on which the mass transfered (default H2O)
|
//- Name of the species on which the mass transferred (default H2O)
|
||||||
const word specieName_;
|
const word specieName_;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user