| 408 | } |
| 409 | |
| 410 | double CoolPropSolver::cv(ExternalThermodynamicState* const properties) { |
| 411 | // Base function returns an error if called - should be redeclared by the solver object |
| 412 | errorMessage((char*)"Internal error: cv() not implemented in the Solver object"); |
| 413 | //throw NotImplementedError((char*)"Internal error: cv() not implemented in the Solver object"); |
| 414 | return -_HUGE; |
| 415 | } |
| 416 | |
| 417 | double CoolPropSolver::d(ExternalThermodynamicState* const properties) { |
| 418 | // Base function returns an error if called - should be redeclared by the solver object |
no test coverage detected