REFPROP backend can calculate molar mass

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-06-30 17:10:52 +02:00
parent 3d3cf9dea6
commit 4810f8256e

View File

@@ -49,6 +49,13 @@ public:
double value2
);
long double calc_molar_mass(void){
if (!_molar_mass){
calc_molar_mass();
}
return _molar_mass.pt();
};
/// Returns true if REFPROP is supported on this platform
bool REFPROP_supported(void);