mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
thermophysicalModels/specie/thermo/thermo/thermoI.H: Reverting change to filter K based on the nMoles
This commit is contained in:
@ -298,22 +298,15 @@ template<class Thermo, template<class> class Type>
|
|||||||
inline Foam::scalar
|
inline Foam::scalar
|
||||||
Foam::species::thermo<Thermo, Type>::K(const scalar p, const scalar T) const
|
Foam::species::thermo<Thermo, Type>::K(const scalar p, const scalar T) const
|
||||||
{
|
{
|
||||||
if (equal(this->nMoles(), SMALL))
|
scalar arg = -this->nMoles()*this->g(p, T)/(this->RR*T);
|
||||||
|
|
||||||
|
if (arg < 600.0)
|
||||||
{
|
{
|
||||||
return 1.0;
|
return exp(arg);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
scalar arg = -this->nMoles()*this->g(p, T)/(this->RR*T);
|
return VGREAT;
|
||||||
|
|
||||||
if (arg < 600.0)
|
|
||||||
{
|
|
||||||
return exp(arg);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return VGREAT;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user