Compute specific heat capacity cp ! This function returns the specific heat capacity cp 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 */
| 196 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 197 | */ |
| 198 | double BaseSolver::cp(ExternalThermodynamicState* const properties) { |
| 199 | // Base function returns an error if called - should be redeclared by the solver object |
| 200 | errorMessage((char*)"Internal error: cp() not implemented in the Solver object"); |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | //! Compute specific heat capacity cv |
| 205 | /*! |
no test coverage detected