Compute density at dew line ! This function returns the density at dew line from the state specified by the properties input Must be re-implemented in the specific solver @param properties ExternalSaturationProperties property struct corresponding to current state */
| 539 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 540 | */ |
| 541 | double BaseSolver::dv(ExternalSaturationProperties* const properties) { |
| 542 | // Base function returns an error if called - should be redeclared by the solver object |
| 543 | errorMessage((char*)"Internal error: dv() not implemented in the Solver object"); |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | //! Compute enthalpy at bubble line |
| 548 | /*! |
no test coverage detected