Skip to content
Snippets Groups Projects
Commit a25a7023 authored by Bert Vandenbroucke's avatar Bert Vandenbroucke
Browse files

Pressure is now also updated by hydro_set_internal_energy and hydro_set_entropy.

parent c10ad9db
No related branches found
No related tags found
1 merge request!265Gizmo set internal energy
......@@ -524,6 +524,7 @@ __attribute__((always_inline)) INLINE static void hydro_set_internal_energy(
/* conserved.energy is NOT the specific energy (u), but the total thermal
energy (u*m) */
p->conserved.energy = u * p->conserved.mass;
p->primitives.P = hydro_gamma_minus_one * p->primitives.rho * u;
}
/**
......@@ -540,4 +541,5 @@ __attribute__((always_inline)) INLINE static void hydro_set_entropy(
p->conserved.energy = gas_internal_energy_from_entropy(p->primitives.rho, S) *
p->conserved.mass;
p->primitives.P = gas_pressure_from_entropy(p->primitives.rho, S);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment