| 373 | } |
| 374 | |
| 375 | double CoolPropSolver::Pr(ExternalThermodynamicState* const properties) { |
| 376 | // Base function returns an error if called - should be redeclared by the solver object |
| 377 | errorMessage((char*)"Internal error: Pr() not implemented in the Solver object"); |
| 378 | //throw NotImplementedError((char*)"Internal error: Pr() not implemented in the Solver object"); |
| 379 | return -_HUGE; |
| 380 | } |
| 381 | |
| 382 | double CoolPropSolver::T(ExternalThermodynamicState* const properties) { |
| 383 | // Base function returns an error if called - should be redeclared by the solver object |
nothing calls this directly
no test coverage detected