| 464 | } |
| 465 | |
| 466 | double CoolPropSolver::p(ExternalThermodynamicState* const properties) { |
| 467 | // Base function returns an error if called - should be redeclared by the solver object |
| 468 | errorMessage((char*)"Internal error: p() not implemented in the Solver object"); |
| 469 | //throw NotImplementedError((char*)"Internal error: p() not implemented in the Solver object"); |
| 470 | return -_HUGE; |
| 471 | } |
| 472 | |
| 473 | int CoolPropSolver::phase(ExternalThermodynamicState* const properties) { |
| 474 | // Base function returns an error if called - should be redeclared by the solver object |
no test coverage detected