Compute total derivative of density ph ! This function returns the total derivative of density ph 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 */
| 364 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 365 | */ |
| 366 | double BaseSolver::d_der(ExternalThermodynamicState* const properties) { |
| 367 | // Base function returns an error if called - should be redeclared by the solver object |
| 368 | errorMessage((char*)"Internal error: d_der() not implemented in the Solver object"); |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | //! Compute isentropic enthalpy |
| 373 | /*! |
no test coverage detected