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

Method fugacity_coefficient

src/AbstractState.cpp:931–934  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected