Compute pressure ! This function returns the pressure from the state specified by the properties input Must be re-implemented in the specific solver @param properties ExternalThermodynamicState property struct corresponding to current state */
| 322 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 323 | */ |
| 324 | double BaseSolver::p(ExternalThermodynamicState* const properties) { |
| 325 | // Base function returns an error if called - should be redeclared by the solver object |
| 326 | errorMessage((char*)"Internal error: p() not implemented in the Solver object"); |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | //! Compute phase flag |
| 331 | /*! |
no test coverage detected