problems with how ideal gas constant R was defined on mac, David helped me fix it

This commit is contained in:
Trine Mykkeltvedt 2022-05-10 10:51:37 +02:00
parent eee1f72482
commit 03685e5bf2
2 changed files with 4 additions and 13 deletions

View File

@ -55,8 +55,6 @@ namespace Opm {
template <class Scalar>
class PengRobinson
{
//! The ideal gas constant [Pa * m^3/mol/K]
static const Scalar R;
PengRobinson()
{ }
@ -168,7 +166,7 @@ public:
if (!std::isfinite(scalarValue(b)) || b <= 0)
return std::numeric_limits<Scalar>::quiet_NaN();
const Evaluation& RT= R*T;
const Evaluation& RT= Constants<Scalar>::R*T;
const Evaluation& Astar = a*p/(RT*RT);
const Evaluation& Bstar = b*p/RT;
@ -253,7 +251,7 @@ public:
const Evaluation& p = params.pressure();
const Evaluation& Vm = params.molarVolume();
const Evaluation& RT = R*T;
const Evaluation& RT = Constants<Scalar>::R*T;
const Evaluation& Z = p*Vm/RT;
const Evaluation& Bstar = p*params.b() / RT;
@ -417,7 +415,7 @@ protected:
Scalar u = 2;
Scalar w = -1;
const Evaluation& RT = R*T;
const Evaluation& RT = Constants<Scalar>::R*T;
// calculate coefficients of the 4th order polynominal in
// monomial basis
@ -541,8 +539,6 @@ protected:
*/
};
template <class Scalar>
const Scalar PengRobinson<Scalar>::R = Constants<Scalar>::R;
/*
template <class Scalar>

View File

@ -65,9 +65,6 @@ class PengRobinsonParamsMixture
typedef MathToolbox<Scalar> Toolbox;
// the ideal gas constant
static const Scalar R;
public:
/*!
* \brief Update Peng-Robinson parameters for the pure components.
@ -98,7 +95,7 @@ public:
Scalar pc = FluidSystem::criticalPressure(i);
Scalar omega = FluidSystem::acentricFactor(i);
Scalar Tr = temperature/FluidSystem::criticalTemperature(i);
Scalar RTc = R*FluidSystem::criticalTemperature(i);
Scalar RTc = Constants<Scalar>::R*FluidSystem::criticalTemperature(i);
Scalar f_omega;
@ -246,8 +243,6 @@ private:
Scalar aCache_[numComponents][numComponents];
};
template <class Scalar, class FluidSystem, unsigned phaseIdx, bool useSpe5Relations>
const Scalar PengRobinsonParamsMixture<Scalar, FluidSystem, phaseIdx, useSpe5Relations>::R = Constants<Scalar>::R;
} // namespace Opm