mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
Implemented access to mixture binary pairs in get_global_param_string
See https://github.com/CoolProp/CoolProp/issues/152 Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
@@ -30,6 +30,8 @@
|
||||
#include "Backends/Helmholtz/Fluids/FluidLibrary.h"
|
||||
#include "Backends/Incompressible/IncompressibleLibrary.h"
|
||||
#include "Backends/Helmholtz/HelmholtzEOSBackend.h"
|
||||
#include "Backends/Helmholtz/MixtureParameters.h"
|
||||
|
||||
|
||||
namespace CoolProp
|
||||
{
|
||||
@@ -869,6 +871,9 @@ std::string get_global_param_string(std::string ParamName)
|
||||
else if (!ParamName.compare("incompressible_list_solution")){
|
||||
return get_incompressible_list_solution();
|
||||
}
|
||||
else if (!ParamName.compare("mixture_binary_pairs_list")){
|
||||
return get_csv_mixture_binary_pairs();
|
||||
}
|
||||
else if (!ParamName.compare("parameter_list") )
|
||||
{
|
||||
return get_csv_parameter_list();
|
||||
|
||||
Reference in New Issue
Block a user