mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: remove trailing space, tabs
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -48,7 +48,7 @@ Usage
|
||||
type heatTransferCoeff;
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
...
|
||||
htcModel ReynoldsAnalogy;
|
||||
htcModel ReynoldsAnalogy;
|
||||
UInf (20 0 0);
|
||||
Cp CpInf;
|
||||
CpInf 1005;
|
||||
|
||||
@ -42,8 +42,8 @@ Usage
|
||||
type heatTransferCoeff;
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
...
|
||||
htcModel fixedReferenceTemperature;
|
||||
TRef 300;
|
||||
htcModel fixedReferenceTemperature;
|
||||
TRef 300;
|
||||
...
|
||||
\endverbatim
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ Usage
|
||||
type heatTransferCoeff;
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
...
|
||||
htcModel localReferenceTemperature;
|
||||
htcModel localReferenceTemperature;
|
||||
...
|
||||
\endverbatim
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -58,7 +58,7 @@ class NURBS3DVolumeCylindrical
|
||||
protected:
|
||||
|
||||
// Protected Data
|
||||
|
||||
|
||||
//- Translation vector
|
||||
vector origin_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user