Skip to content
Snippets Groups Projects
Commit 167172c9 authored by Josh Borrow's avatar Josh Borrow
Browse files

Added extra factor of gamma in the soundspeed

parent 8f7b101c
No related branches found
No related tags found
1 merge request!540Add Pressure-Energy (P-U) SPH
......@@ -153,7 +153,7 @@ hydro_get_comoving_soundspeed(const struct part *restrict p) {
/* Compute the sound speed -- see theory section for justification */
/* IDEAL GAS ONLY -- P-U does not work with generic EoS. */
const float square_rooted = sqrtf(p->rho / p->pressure_bar);
const float square_rooted = sqrtf(hydro_gamma * p->rho / p->pressure_bar);
return p->u * hydro_gamma_minus_one * square_rooted;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment