diff --git a/src/equation_of_state.h b/src/equation_of_state.h index 13ee246789f052c57a9801c899ff87e7faf4d158..76b8bb922133c9c4f29453a14068fe3f9044d66f 100644 --- a/src/equation_of_state.h +++ b/src/equation_of_state.h @@ -185,7 +185,8 @@ struct eos_parameters { /** * @brief Returns the internal energy given density and entropy * - * Since we are using an isothermal EoS, the entropy and density values are ignored. + * Since we are using an isothermal EoS, the entropy and density values are + * ignored. * Computes \f$u = u_{cst}\f$. * * @param density The density \f$\rho\f$. @@ -232,7 +233,8 @@ __attribute__((always_inline)) INLINE static float gas_entropy_from_pressure( /** * @brief Returns the sound speed given density and entropy * - * Since we are using an isothermal EoS, the entropy and density values are ignored. + * Since we are using an isothermal EoS, the entropy and density values are + * ignored. * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$. * * @param density The density \f$\rho\f$. @@ -293,7 +295,8 @@ gas_internal_energy_from_pressure(float density, float pressure) { /** * @brief Returns the sound speed given density and internal energy * - * Since we are using an isothermal EoS, the energy and density values are ignored. + * Since we are using an isothermal EoS, the energy and density values are + * ignored. * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$. * * @param density The density \f$\rho\f$ @@ -309,7 +312,8 @@ gas_soundspeed_from_internal_energy(float density, float u) { /** * @brief Returns the sound speed given density and pressure * - * Since we are using an isothermal EoS, the pressure and density values are ignored. + * Since we are using an isothermal EoS, the pressure and density values are + * ignored. * Computes \f$c = \sqrt{u_{cst} \gamma (\gamma-1)}\f$. * * @param density The density \f$\rho\f$