Small update to cubics docs

This commit is contained in:
Ian Bell
2016-10-23 22:18:36 -06:00
parent e54b916751
commit e0fbc7123e

View File

@@ -27,7 +27,7 @@ public:
AbstractCubicAlphaFunction(double a0, double Tr_over_Tci) : a0(a0), Tr_over_Tci(Tr_over_Tci), sqrt_Tr_Tci(sqrt(Tr_over_Tci)) {};
};
/// An implementation of AbstractCubicAlphaFunction for the Twu alpha function
/// An implementation of AbstractCubicAlphaFunction for the baseline alpha function of PR or SRK
class BasicMathiasCopemanAlphaFunction : public AbstractCubicAlphaFunction {
double m; ///< The term coming from the function of omega
public: