STYLE: remove trailing space, tabs

This commit is contained in:
OpenFOAM bot
2020-01-22 10:00:03 +01:00
parent f172309956
commit 596e4aef3f
76 changed files with 140 additions and 140 deletions

View File

@ -44,14 +44,14 @@ namespace fa
template<class Type>
scalar EulerFaD2dt2Scheme<Type>::deltaT_() const
{
return mesh().time().deltaT().value();
return mesh().time().deltaT().value();
}
template<class Type>
scalar EulerFaD2dt2Scheme<Type>::deltaT0_() const
{
return mesh().time().deltaT0().value();
return mesh().time().deltaT0().value();
}

View File

@ -61,11 +61,11 @@ class EulerFaD2dt2Scheme
{
// Private Member Functions
//- Return the current time-step
scalar deltaT_() const;
//- Return the current time-step
scalar deltaT_() const;
//- Return the previous time-step
scalar deltaT0_() const;
//- Return the previous time-step
scalar deltaT0_() const;
//- No copy construct
EulerFaD2dt2Scheme(const EulerFaD2dt2Scheme&) = delete;

View File

@ -48,7 +48,7 @@ Usage
type heatTransferCoeff;
libs ("libfieldFunctionObjects.so");
...
htcModel ReynoldsAnalogy;
htcModel ReynoldsAnalogy;
UInf (20 0 0);
Cp CpInf;
CpInf 1005;

View File

@ -42,8 +42,8 @@ Usage
type heatTransferCoeff;
libs ("libfieldFunctionObjects.so");
...
htcModel fixedReferenceTemperature;
TRef 300;
htcModel fixedReferenceTemperature;
TRef 300;
...
\endverbatim

View File

@ -42,7 +42,7 @@ Usage
type heatTransferCoeff;
libs ("libfieldFunctionObjects.so");
...
htcModel localReferenceTemperature;
htcModel localReferenceTemperature;
...
\endverbatim

View File

@ -338,7 +338,7 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os)
scalarListList mpe0(patchData_.size());
labelListList nps0(patchData_.size());
scalarListList mps0(patchData_.size());
forAll(patchData_, patchi)
{
label lsd = nEscape_[patchi].size();
@ -348,8 +348,8 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os)
mps0[patchi].setSize(lsd, Zero);
}
this->getModelProperty("nEscape", npe0);
this->getModelProperty("nEscape", npe0);
this->getModelProperty("massEscape", mpe0);
this->getModelProperty("nStick", nps0);
this->getModelProperty("massStick", mps0);

View File

@ -252,7 +252,7 @@ void Foam::StandardWallInteraction<CloudType>::info(Ostream& os)
scalarListList mpe0(nEscape_.size());
labelListList nps0(nEscape_.size());
scalarListList mps0(nEscape_.size());
forAll(nEscape_, patchi)
{
label lsd = nEscape_[patchi].size();
@ -261,7 +261,7 @@ void Foam::StandardWallInteraction<CloudType>::info(Ostream& os)
nps0[patchi].setSize(lsd, Zero);
mps0[patchi].setSize(lsd, Zero);
}
this->getModelProperty("nEscape", npe0);
this->getModelProperty("massEscape", mpe0);
this->getModelProperty("nStick", nps0);

View File

@ -1796,7 +1796,7 @@ Foam::label Foam::NURBS3DVolume::nUSymmetry() const
else
{
nU = (nU - 1)/2 + 1;
}
}
return nU;
}
@ -1811,7 +1811,7 @@ Foam::label Foam::NURBS3DVolume::nVSymmetry() const
else
{
nV = (nV - 1)/2 + 1;
}
}
return nV;
}
@ -1826,7 +1826,7 @@ Foam::label Foam::NURBS3DVolume::nWSymmetry() const
else
{
nW = (nW - 1)/2 + 1;
}
}
return nW;
}

View File

@ -58,7 +58,7 @@ class NURBS3DVolumeCylindrical
protected:
// Protected Data
//- Translation vector
vector origin_;