Compute derivative of Ts wrt pressure ! This function returns the derivative of Ts 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 */
| 455 | @param properties ExternalSaturationProperties property struct corresponding to current state |
| 456 | */ |
| 457 | double BaseSolver::dTp(ExternalSaturationProperties* const properties) { |
| 458 | // Base function returns an error if called - should be redeclared by the solver object |
| 459 | errorMessage((char*)"Internal error: dTp() not implemented in the Solver object"); |
| 460 | return 0; |
| 461 | } |
| 462 | |
| 463 | //! Compute derivative of dls wrt pressure |
| 464 | /*! |
no test coverage detected