CoolProp
REFPROPBackend.h
1 /*
2  * AbstractBackend.h
3  *
4  * Created on: 20 Dec 2013
5  * Author: jowr
6  */
7 
8 #ifndef REFPROPBACKEND_H_
9 #define REFPROPBACKEND_H_
10 
11 #include "REFPROPMixtureBackend.h"
12 #include "DataStructures.h"
13 
14 namespace CoolProp {
15 
22 {
23  public:
25  REFPROPBackend(const std::string& fluid_name);
26  std::string backend_name(void) {
27  return get_backend_string(REFPROP_BACKEND_PURE);
28  }
29 
30  virtual ~REFPROPBackend();
31 };
32 
33 } /* namespace CoolProp */
34 #endif /* REFPROPBACKEND_H_ */
This backend is used for pure and pseudo-pure fluids powered by REFPROP.
Definition: REFPROPBackend.h:21
std::string backend_name(void)
Get a string representation of the backend - for instance "HelmholtzEOSMixtureBackend" for the core m...
Definition: REFPROPBackend.h:26
Definition: REFPROPMixtureBackend.h:18
This file contains flash routines in which the state is unknown, and a solver of some kind must be us...
Definition: AbstractState.h:19