Compute derivative of dls wrt pressure ! This function returns the derivative of dls wrt pressure 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 */
| 469 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 470 | */ |
| 471 | double BaseSolver::ddldp(ExternalSaturationProperties* const properties) { |
| 472 | // Base function returns an error if called - should be redeclared by the solver object |
| 473 | errorMessage((char*)"Internal error: ddldp() not implemented in the Solver object"); |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | //! Compute derivative of dvs wrt pressure |
| 478 | /*! |
no test coverage detected