Compute density at bubble line ! This function returns the density 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 */
| 525 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 526 | */ |
| 527 | double BaseSolver::dl(ExternalSaturationProperties* const properties) { |
| 528 | // Base function returns an error if called - should be redeclared by the solver object |
| 529 | errorMessage((char*)"Internal error: dl() not implemented in the Solver object"); |
| 530 | return 0; |
| 531 | } |
| 532 | |
| 533 | //! Compute density at dew line |
| 534 | /*! |
no test coverage detected