Compute entropy at bubble line ! This function returns the entropy at bubble 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 */
| 595 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 596 | */ |
| 597 | double BaseSolver::sl(ExternalSaturationProperties* const properties) { |
| 598 | // Base function returns an error if called - should be redeclared by the solver object |
| 599 | errorMessage((char*)"Internal error: sl() not implemented in the Solver object"); |
| 600 | return 0; |
| 601 | } |
| 602 | |
| 603 | //! Compute entropy at dew line |
| 604 | /*! |
no test coverage detected