MCPcopy Create free account
hub / github.com/CoolProp/CoolProp / AbstractState_build_phase_envelope

Function AbstractState_build_phase_envelope

src/CoolPropLib.cpp:901–911  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

899}
900
901EXPORT_CODE void CONVENTION AbstractState_build_phase_envelope(const long handle, const char* level, long* errcode, char* message_buffer,
902 const long buffer_length) {
903 *errcode = 0;
904 fpu_reset_guard guard;
905 try {
906 shared_ptr<CoolProp::AbstractState>& AS = handle_manager.get(handle);
907 AS->build_phase_envelope(level);
908 } catch (...) {
909 HandleException(errcode, message_buffer, buffer_length);
910 }
911}
912
913EXPORT_CODE void CONVENTION AbstractState_get_phase_envelope_data(const long handle, const long length, double* T, double* p, double* rhomolar_vap,
914 double* rhomolar_liq, double* x, double* y, long* errcode, char* message_buffer,

Callers

nothing calls this directly

Calls 3

HandleExceptionFunction · 0.85
build_phase_envelopeMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected