solvers::multiphaseEuler::phaseSystem::ddtCorrs: Removed unused argument

This commit is contained in:
Henry Weller
2023-03-30 16:03:58 +01:00
parent a8cb8a61da
commit 0641b16f1a
3 changed files with 3 additions and 12 deletions

View File

@ -1089,10 +1089,7 @@ Foam::MomentumTransferPhaseSystem<BasePhaseSystem>::alphaDByAf
template<class BasePhaseSystem>
Foam::PtrList<Foam::surfaceScalarField>
Foam::MomentumTransferPhaseSystem<BasePhaseSystem>::ddtCorrs
(
const bool includeVirtualMass
) const
Foam::MomentumTransferPhaseSystem<BasePhaseSystem>::ddtCorrs() const
{
PtrList<surfaceScalarField> ddtCorrs(this->phaseModels_.size());

View File

@ -241,10 +241,7 @@ public:
//- Return the flux corrections for the cell-based algorithm. These
// depend on phase mass/volume fluxes, and must therefore be evaluated
// inside the corrector loop.
virtual PtrList<surfaceScalarField> ddtCorrs
(
const bool includeVirtualMass = false
) const;
virtual PtrList<surfaceScalarField> ddtCorrs() const;
//- Set the cell and faces drag correction fields
virtual void dragCorrs

View File

@ -560,10 +560,7 @@ public:
) const = 0;
//- Return the flux corrections for the cell-based algorithm
virtual PtrList<surfaceScalarField> ddtCorrs
(
const bool includeVirtualMass = false
) const = 0;
virtual PtrList<surfaceScalarField> ddtCorrs() const = 0;
//- Set the cell and faces drag correction fields
virtual void dragCorrs