| 937 | return calc_fugacity_coefficients(); |
| 938 | } |
| 939 | double AbstractState::fugacity(std::size_t i) { |
| 940 | // TODO: Cache the fug. coeff for each component |
| 941 | return calc_fugacity(i); |
| 942 | } |
| 943 | double AbstractState::chemical_potential(std::size_t i) { |
| 944 | // TODO: Cache the chemical potential for each component |
| 945 | return calc_chemical_potential(i); |
no outgoing calls