Exposes values for minimum and maximum fractions for incompressibles

Closes https://github.com/CoolProp/CoolProp/issues/233

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-11-23 20:18:39 -05:00
parent 951aa83efc
commit 383b045bb1
5 changed files with 17 additions and 1 deletions

View File

@@ -119,6 +119,9 @@ public:
long double calc_cvmass(void){return fluid->cv(_T, _p, _fractions[0]);};
long double calc_Tmax(void){return fluid->getTmax();};
long double calc_Tmin(void){return fluid->getTmin();};
long double calc_fraction_min(void){return fluid->getxmin();};
long double calc_fraction_max(void){return fluid->getxmax();};
};
} /* namespace CoolProp */