Compute thermal conductivity ! This function returns the thermal conductivity 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 */
| 308 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 309 | */ |
| 310 | double BaseSolver::lambda(ExternalThermodynamicState* const properties) { |
| 311 | // Base function returns an error if called - should be redeclared by the solver object |
| 312 | errorMessage((char*)"Internal error: lambda() not implemented in the Solver object"); |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | //! Compute pressure |
| 317 | /*! |
no test coverage detected