clean up whitespaces

remove extra spaces, convert tabs to spaces
This commit is contained in:
danielque
2018-07-05 16:25:40 +02:00
parent b5b04c0fb0
commit 1a8b4aa5c2
18 changed files with 67 additions and 67 deletions

View File

@ -88,7 +88,7 @@ int main(int argc, char *argv[])
runTime++;
particleCloud.clockM().start(1,"Global");
particleCloud.clockM().start(1,"Global");
Info<< "Time = " << runTime.timeName() << nl << endl;
@ -122,7 +122,7 @@ int main(int argc, char *argv[])
#include "rhoEqn.H"
}
rhoeps = rho * voidfraction;
rhoeps = rho * voidfraction;
// --- Pressure-velocity PIMPLE corrector loop
while (pimple.loop())
{
@ -133,7 +133,7 @@ int main(int argc, char *argv[])
// --- Pressure corrector loop
while (pimple.correct())
{
#include "molConc.H"
#include "molConc.H"
#include "pEqn.H"
}

View File

@ -3,9 +3,9 @@
forAll(Y, i)
{
volScalarField& Yi = Y[i];
dimensionedScalar mi("mi",dimensionSet(1, 0, 0, 0, -1),composition.W(i));
mi /= 1000.0; // g to kg
molarConc += rho * Yi / mi;
dimensionedScalar mi("mi",dimensionSet(1, 0, 0, 0, -1),composition.W(i));
mi /= 1000.0; // g to kg
molarConc += rho * Yi / mi;
}
}

View File

@ -166,7 +166,7 @@ bool cfdemCloudEnergy::evolve
if(verbose_) Info << "speciesExecute done" << endl;
clockM().stop("speciesExecute");
return true;
return true;
}
return false;
}

View File

@ -176,7 +176,7 @@ public:
double**const& mask
) const;
void setScalarSumCentre
void setScalarSumCentre
(
volScalarField& field,
double**& value,

View File

@ -46,7 +46,7 @@ tmp<volScalarField> chemistryModel::Smi(label i) const
tmp<volScalarField> chemistryModel::Sm() const
{
FatalError<<"the solver calls for Smi()\n"
FatalError<<"the solver calls for Sm()\n"
<<"please activate 'speciesModel' in 'chemistryModels'"
<<abort(FatalError);

View File

@ -94,11 +94,11 @@ public:
// Member Functions
virtual void execute() = 0;
virtual void execute() = 0;
virtual tmp<volScalarField> Smi (const label i) const;
virtual tmp<volScalarField> Smi(const label i) const;
virtual tmp<volScalarField> Sm () const;
virtual tmp<volScalarField> Sm() const;
};

View File

@ -64,7 +64,7 @@ public:
// Member Functions
void execute();
void execute();
};