Compute derivative of hls wrt pressure ! This function returns the derivative of hls 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 */
| 497 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 498 | */ |
| 499 | double BaseSolver::dhldp(ExternalSaturationProperties* const properties) { |
| 500 | // Base function returns an error if called - should be redeclared by the solver object |
| 501 | errorMessage((char*)"Internal error: dhldp() not implemented in the Solver object"); |
| 502 | return 0; |
| 503 | } |
| 504 | |
| 505 | //! Compute derivative of hvs wrt pressure |
| 506 | /*! |
no test coverage detected