| 401 | } |
| 402 | |
| 403 | double CoolPropSolver::cp(ExternalThermodynamicState* const properties) { |
| 404 | // Base function returns an error if called - should be redeclared by the solver object |
| 405 | errorMessage((char*)"Internal error: cp() not implemented in the Solver object"); |
| 406 | //throw NotImplementedError((char*)"Internal error: cp() not implemented in the Solver object"); |
| 407 | return -_HUGE; |
| 408 | } |
| 409 | |
| 410 | double CoolPropSolver::cv(ExternalThermodynamicState* const properties) { |
| 411 | // Base function returns an error if called - should be redeclared by the solver object |
no test coverage detected