| 899 | } |
| 900 | |
| 901 | EXPORT_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 | |
| 913 | EXPORT_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, |
nothing calls this directly
no test coverage detected