Compute compressibility ! This function returns the compressibility 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 */
| 294 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 295 | */ |
| 296 | double BaseSolver::kappa(ExternalThermodynamicState* const properties) { |
| 297 | // Base function returns an error if called - should be redeclared by the solver object |
| 298 | errorMessage((char*)"Internal error: kappa() not implemented in the Solver object"); |
| 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | //! Compute thermal conductivity |
| 303 | /*! |
no test coverage detected