Minor updates to schemes and boundary conditions
This commit is contained in:
parent
d4af4d504f
commit
11cb6dafc5
3 changed files with 12 additions and 3 deletions
|
@ -170,8 +170,8 @@ void SRFTotalPressureFvPatchScalarField::updateCoeffs(const vectorField& Up)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const fvsPatchField<scalar>& phip =
|
const fvsPatchScalarField& phip =
|
||||||
patch().lookupPatchField<surfaceScalarField, scalar>(phiName_);
|
lookupPatchField<surfaceScalarField, scalar>(phiName_);
|
||||||
|
|
||||||
if (psiName_ == "none" && rhoName_ == "none")
|
if (psiName_ == "none" && rhoName_ == "none")
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,6 +37,15 @@ namespace Foam
|
||||||
Gamma,
|
Gamma,
|
||||||
GammaLimiter
|
GammaLimiter
|
||||||
)
|
)
|
||||||
|
|
||||||
|
makeLLimitedMultivariateSurfaceInterpolationScheme
|
||||||
|
(
|
||||||
|
Gamma01,
|
||||||
|
Limited01Limiter,
|
||||||
|
GammaLimiter,
|
||||||
|
NVDTVD,
|
||||||
|
magSqr
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|
|
@ -45,7 +45,7 @@ namespace Foam
|
||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class multivariateScheme Declaration
|
Class multivariateScheme Declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
template<class Type, class Scheme>
|
template<class Type, class Scheme>
|
||||||
|
|
Reference in a new issue