mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
removing Tbp
This commit is contained in:
@ -466,7 +466,6 @@ void Foam::ReactingMultiphaseParcel<ParcelType>::calcDevolatilisation
|
||||
(
|
||||
!td.cloud().devolatilisation().active()
|
||||
|| T < td.constProps().Tvap()
|
||||
|| T < td.constProps().Tbp()
|
||||
)
|
||||
{
|
||||
return;
|
||||
|
||||
@ -88,9 +88,6 @@ public:
|
||||
//- Constant volume flag - e.g. during mass transfer
|
||||
Switch constantVolume_;
|
||||
|
||||
//- Boiling point [K]
|
||||
const scalar Tbp_;
|
||||
|
||||
//- Vaporisation temperature [K]
|
||||
const scalar Tvap_;
|
||||
|
||||
@ -108,9 +105,6 @@ public:
|
||||
//- Return const access to the constant volume flag
|
||||
inline Switch constantVolume() const;
|
||||
|
||||
//- Return const access to the boiling point
|
||||
inline scalar Tbp() const;
|
||||
|
||||
//- Return const access to the vaporisation temperature
|
||||
inline scalar Tvap() const;
|
||||
};
|
||||
|
||||
@ -35,7 +35,6 @@ inline Foam::ReactingParcel<ParcelType>::constantProperties::constantProperties
|
||||
ThermoParcel<ParcelType>::constantProperties(parentDict),
|
||||
pMin_(dimensionedScalar(this->dict().lookup("pMin")).value()),
|
||||
constantVolume_(this->dict().lookup("constantVolume")),
|
||||
Tbp_(dimensionedScalar(this->dict().lookup("Tbp")).value()),
|
||||
Tvap_(dimensionedScalar(this->dict().lookup("Tvap")).value())
|
||||
{}
|
||||
|
||||
@ -138,14 +137,6 @@ Foam::ReactingParcel<ParcelType>::constantProperties::constantVolume() const
|
||||
}
|
||||
|
||||
|
||||
template<class ParcelType>
|
||||
inline Foam::scalar
|
||||
Foam::ReactingParcel<ParcelType>::constantProperties::Tbp() const
|
||||
{
|
||||
return Tbp_;
|
||||
}
|
||||
|
||||
|
||||
template<class ParcelType>
|
||||
inline Foam::scalar
|
||||
Foam::ReactingParcel<ParcelType>::constantProperties::Tvap() const
|
||||
|
||||
@ -54,7 +54,6 @@ constantProperties
|
||||
cp0 cp0 [ 0 2 -2 -1 0 ] 4187;
|
||||
epsilon0 epsilon0 [ 0 0 0 0 0 ] 1;
|
||||
f0 f0 [ 0 0 0 0 0 ] 0.5;
|
||||
Tbp Tbp [ 0 0 0 1 0 ] 400;
|
||||
Tvap Tvap [ 0 0 0 1 0 ] 400;
|
||||
LDevol LDevol [ 0 0 0 0 0 ] 0;
|
||||
hRetentionCoeff hRetentionCoeff [ 0 0 0 0 0 ] 1;
|
||||
|
||||
@ -50,7 +50,6 @@ constantProperties
|
||||
cp0 cp0 [ 0 2 -2 -1 0 ] 4187;
|
||||
epsilon0 epsilon0 [ 0 0 0 0 0 ] 1;
|
||||
f0 f0 [ 0 0 0 0 0 ] 0.5;
|
||||
Tbp Tbp [ 0 0 0 1 0 ] 393;
|
||||
Tvap Tvap [ 0 0 0 1 0 ] 273;
|
||||
constantVolume false;
|
||||
}
|
||||
|
||||
@ -50,7 +50,6 @@ constantProperties
|
||||
cp0 cp0 [ 0 2 -2 -1 0 ] 4100;
|
||||
epsilon0 epsilon0 [ 0 0 0 0 0 ] 1;
|
||||
f0 f0 [ 0 0 0 0 0 ] 0.5;
|
||||
Tbp Tbp [ 0 0 0 1 0 ] 393;
|
||||
Tvap Tvap [ 0 0 0 1 0 ] 273;
|
||||
constantVolume false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user