| 929 | return _gas_constant; |
| 930 | } |
| 931 | double AbstractState::fugacity_coefficient(std::size_t i) { |
| 932 | // TODO: Cache the fug. coeff for each component |
| 933 | return calc_fugacity_coefficient(i); |
| 934 | } |
| 935 | std::vector<double> AbstractState::fugacity_coefficients() { |
| 936 | // TODO: Cache the fug. coeff for each component |
| 937 | return calc_fugacity_coefficients(); |
no outgoing calls
no test coverage detected