Compute surface tension ! This function returns the surface tension 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 */
| 581 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 582 | */ |
| 583 | double BaseSolver::sigma(ExternalSaturationProperties* const properties) { |
| 584 | // Base function returns an error if called - should be redeclared by the solver object |
| 585 | errorMessage((char*)"Internal error: sigma() not implemented in the Solver object"); |
| 586 | return 0; |
| 587 | } |
| 588 | |
| 589 | //! Compute entropy at bubble line |
| 590 | /*! |
no test coverage detected