Compute derivative of density wrt enthalpy at constant pressure ! This function returns the derivative of density wrt enthalpy at constant pressure 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 */
| 238 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 239 | */ |
| 240 | double BaseSolver::ddhp(ExternalThermodynamicState* const properties) { |
| 241 | // Base function returns an error if called - should be redeclared by the solver object |
| 242 | errorMessage((char*)"Internal error: ddhp() not implemented in the Solver object"); |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | //! Compute derivative of density wrt pressure at constant enthalpy |
| 247 | /*! |
no test coverage detected