mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
use primary tokens for logical operators instead of alternative tokens
don't start mixing tokens within a project
This commit is contained in:
@ -290,7 +290,7 @@ void gerhardsRecModel::readFieldSeries()
|
||||
for OpenFOAM versions prior to OpenFOAM-5.0
|
||||
Do this the other way around for OpenFOAM-5.0 and potentially later versions
|
||||
*/
|
||||
if (not header.headerOk())
|
||||
if (! header.headerOk())
|
||||
{
|
||||
FatalError
|
||||
<< "Field " << volScalarFieldNames_[i] << " not found"
|
||||
@ -314,7 +314,7 @@ void gerhardsRecModel::readFieldSeries()
|
||||
for OpenFOAM versions prior to OpenFOAM-5.0
|
||||
Do this the other way around for OpenFOAM-5.0 and potentially later versions
|
||||
*/
|
||||
if (not header.headerOk())
|
||||
if (! header.headerOk())
|
||||
{
|
||||
FatalError
|
||||
<< "Field " << volVectorFieldNames_[i] << " not found"
|
||||
@ -338,7 +338,7 @@ void gerhardsRecModel::readFieldSeries()
|
||||
for OpenFOAM versions prior to OpenFOAM-5.0
|
||||
Do this the other way around for OpenFOAM-5.0 and potentially later versions
|
||||
*/
|
||||
if (not header.headerOk())
|
||||
if (! header.headerOk())
|
||||
{
|
||||
FatalError
|
||||
<< "Field " << surfaceScalarFieldNames_[i] << " not found"
|
||||
@ -927,7 +927,7 @@ Switch gerhardsRecModel::checkSkipZero()
|
||||
}
|
||||
}
|
||||
|
||||
if (not foundZero)
|
||||
if (! foundZero)
|
||||
{
|
||||
skipZero_ = false;
|
||||
}
|
||||
|
||||
@ -115,7 +115,7 @@ void MarkovPath::getRecPath()
|
||||
Pstream::scatter(numRecIntervals);
|
||||
Pstream::scatter(recSteps_);
|
||||
|
||||
if (not Pstream::master())
|
||||
if (!Pstream::master())
|
||||
{
|
||||
virtualTimeIndexList_.setSize(numRecIntervals);
|
||||
}
|
||||
|
||||
@ -120,7 +120,7 @@ void multiIntervalPath::getRecPath()
|
||||
|
||||
Pstream::scatter(numRecIntervals);
|
||||
|
||||
if (not Pstream::master())
|
||||
if (!Pstream::master())
|
||||
{
|
||||
virtualTimeIndexList_.setSize(numRecIntervals);
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ void noPath::getRecPath()
|
||||
|
||||
Pstream::scatter(numRecIntervals);
|
||||
|
||||
if (not Pstream::master())
|
||||
if (!Pstream::master())
|
||||
{
|
||||
virtualTimeIndexList_.setSize(numRecIntervals);
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ void simpleRandomPath::getRecPath()
|
||||
|
||||
Pstream::scatter(numRecIntervals);
|
||||
|
||||
if(not Pstream::master())
|
||||
if(!Pstream::master())
|
||||
{
|
||||
virtualTimeIndexList_.setSize(numRecIntervals);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user