Compute velocity of sound ! This function returns the velocity of sound 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 */
| 168 | @param properties ExternalThermodynamicState property struct corresponding to current state |
| 169 | */ |
| 170 | double BaseSolver::a(ExternalThermodynamicState* const properties) { |
| 171 | // Base function returns an error if called - should be redeclared by the solver object |
| 172 | errorMessage((char*)"Internal error: a() not implemented in the Solver object"); |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | //! Compute isobaric expansion coefficient |
| 177 | /*! |
no test coverage detected