Compute density ! This function returns the density from the state specified by the properties input Must be re-implemented in the specific solver @param properties ExternalThermodynamicState property struct corresponding to current state */
| 224 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 225 | */ |
| 226 | double BaseSolver::d(ExternalThermodynamicState* const properties) { |
| 227 | // Base function returns an error if called - should be redeclared by the solver object |
| 228 | errorMessage((char*)"Internal error: d() not implemented in the Solver object"); |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | //! Compute derivative of density wrt enthalpy at constant pressure |
| 233 | /*! |
no test coverage detected