Compute derivative of density wrt pressure at constant enthalpy ! This function returns the derivative of density wrt pressure at constant enthalpy 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 */
| 252 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 253 | */ |
| 254 | double BaseSolver::ddph(ExternalThermodynamicState* const properties) { |
| 255 | // Base function returns an error if called - should be redeclared by the solver object |
| 256 | errorMessage((char*)"Internal error: ddph() not implemented in the Solver object"); |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | //! Compute dynamic viscosity |
| 261 | /*! |
no test coverage detected