mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: remove unused variable from phasePressureModel
This commit is contained in:
committed by
Sergio Ferraris
parent
99e20b3b6f
commit
a192095ce0
@ -58,8 +58,6 @@ Foam::RASModels::phasePressureModel::phasePressureModel
|
||||
propertiesName
|
||||
),
|
||||
|
||||
phase_(phase),
|
||||
|
||||
alphaMax_(coeffDict_.get<scalar>("alphaMax")),
|
||||
preAlphaExp_(coeffDict_.get<scalar>("preAlphaExp")),
|
||||
expMax_(coeffDict_.get<scalar>("expMax")),
|
||||
|
||||
@ -78,12 +78,7 @@ class phasePressureModel
|
||||
RASModel<EddyDiffusivity<phaseCompressibleTurbulenceModel>>
|
||||
>
|
||||
{
|
||||
// Private data
|
||||
|
||||
// Input Fields
|
||||
|
||||
const phaseModel& phase_;
|
||||
|
||||
// Private Data
|
||||
|
||||
// Kinetic Theory Model coefficients
|
||||
|
||||
@ -102,14 +97,15 @@ class phasePressureModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disabled
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
phasePressureModel(const phasePressureModel&);
|
||||
//- No copy construct
|
||||
phasePressureModel(const phasePressureModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const phasePressureModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const phasePressureModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -61,8 +61,6 @@ Foam::RASModels::phasePressureModel::phasePressureModel
|
||||
propertiesName
|
||||
),
|
||||
|
||||
phase_(phase),
|
||||
|
||||
alphaMax_(coeffDict_.get<scalar>("alphaMax")),
|
||||
preAlphaExp_(coeffDict_.get<scalar>("preAlphaExp")),
|
||||
expMax_(coeffDict_.get<scalar>("expMax")),
|
||||
|
||||
@ -82,12 +82,7 @@ class phasePressureModel
|
||||
>>>
|
||||
>
|
||||
{
|
||||
// Private data
|
||||
|
||||
// Input Fields
|
||||
|
||||
const phaseModel& phase_;
|
||||
|
||||
// Private Data
|
||||
|
||||
// Kinetic Theory Model coefficients
|
||||
|
||||
@ -106,6 +101,7 @@ class phasePressureModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disabled
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user