| 145 | } |
| 146 | |
| 147 | Isoline::Isoline(CoolProp::parameters key, CoolProp::parameters xkey, CoolProp::parameters ykey, double value, |
| 148 | const std::shared_ptr<CoolProp::AbstractState>& state) |
| 149 | : key_(key), xkey_(xkey), ykey_(ykey), value(value), state_(state) { |
| 150 | this->critical_state_ = Detail::get_critical_point(state); |
| 151 | } |
| 152 | |
| 153 | Range Isoline::get_sat_bounds(CoolProp::parameters key) const { |
| 154 | double s = 1e-7; |
nothing calls this directly
no test coverage detected