Skip to content
Snippets Groups Projects
Commit aec32336 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Make use of the EoS functions everywhere in Gadget2-SPH.

parent 678d414c
No related branches found
No related tags found
1 merge request!255Cleanup rho dh and use of the EoS functions
...@@ -63,8 +63,8 @@ ...@@ -63,8 +63,8 @@
//#define WENDLAND_C6_KERNEL //#define WENDLAND_C6_KERNEL
/* SPH variant to use */ /* SPH variant to use */
#define MINIMAL_SPH //#define MINIMAL_SPH
//#define GADGET2_SPH #define GADGET2_SPH
//#define HOPKINS_PE_SPH //#define HOPKINS_PE_SPH
//#define DEFAULT_SPH //#define DEFAULT_SPH
//#define GIZMO_SPH //#define GIZMO_SPH
......
...@@ -127,12 +127,13 @@ __attribute__((always_inline)) INLINE static void hydro_set_internal_energy( ...@@ -127,12 +127,13 @@ __attribute__((always_inline)) INLINE static void hydro_set_internal_energy(
p->entropy = gas_entropy_from_internal_energy(p->rho, u); p->entropy = gas_entropy_from_internal_energy(p->rho, u);
/* Compute the pressure */ /* Compute the new pressure */
const float pressure = gas_pressure_from_entropy(p->rho, p->entropy); const float pressure = gas_pressure_from_internal_energy(p->rho, u);
/* Compute the new sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
/* Compute the sound speed from the pressure*/
const float rho_inv = 1.f / p->rho; const float rho_inv = 1.f / p->rho;
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv);
p->force.soundspeed = soundspeed; p->force.soundspeed = soundspeed;
p->force.P_over_rho2 = pressure * rho_inv * rho_inv; p->force.P_over_rho2 = pressure * rho_inv * rho_inv;
...@@ -155,9 +156,10 @@ __attribute__((always_inline)) INLINE static void hydro_set_entropy( ...@@ -155,9 +156,10 @@ __attribute__((always_inline)) INLINE static void hydro_set_entropy(
/* Compute the pressure */ /* Compute the pressure */
const float pressure = gas_pressure_from_entropy(p->rho, p->entropy); const float pressure = gas_pressure_from_entropy(p->rho, p->entropy);
/* Compute the sound speed from the pressure*/ /* Compute the new sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
const float rho_inv = 1.f / p->rho; const float rho_inv = 1.f / p->rho;
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv);
p->force.soundspeed = soundspeed; p->force.soundspeed = soundspeed;
p->force.P_over_rho2 = pressure * rho_inv * rho_inv; p->force.P_over_rho2 = pressure * rho_inv * rho_inv;
...@@ -290,14 +292,13 @@ __attribute__((always_inline)) INLINE static void hydro_prepare_force( ...@@ -290,14 +292,13 @@ __attribute__((always_inline)) INLINE static void hydro_prepare_force(
const float half_dt = (ti_current - (p->ti_begin + p->ti_end) / 2) * timeBase; const float half_dt = (ti_current - (p->ti_begin + p->ti_end) / 2) * timeBase;
const float pressure = hydro_get_pressure(p, half_dt); const float pressure = hydro_get_pressure(p, half_dt);
const float rho_inv = 1.f / p->rho; /* Compute the sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
/* Divide the pressure by the density and density gradient */ /* Divide the pressure by the density squared to get the SPH term */
const float rho_inv = 1.f / p->rho;
const float P_over_rho2 = pressure * rho_inv * rho_inv; const float P_over_rho2 = pressure * rho_inv * rho_inv;
/* Compute the sound speed */
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv);
/* Compute the Balsara switch */ /* Compute the Balsara switch */
const float balsara = const float balsara =
abs_div_v / (abs_div_v + curl_v + 0.0001f * soundspeed / fac_mu / p->h); abs_div_v / (abs_div_v + curl_v + 0.0001f * soundspeed / fac_mu / p->h);
...@@ -371,17 +372,16 @@ __attribute__((always_inline)) INLINE static void hydro_predict_extra( ...@@ -371,17 +372,16 @@ __attribute__((always_inline)) INLINE static void hydro_predict_extra(
const float dt_entr = (t1 - (p->ti_begin + p->ti_end) / 2) * timeBase; const float dt_entr = (t1 - (p->ti_begin + p->ti_end) / 2) * timeBase;
const float pressure = hydro_get_pressure(p, dt_entr); const float pressure = hydro_get_pressure(p, dt_entr);
const float rho_inv = 1.f / p->rho; /* Compute the new sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
/* Divide the pressure by the density and density gradient */ /* Divide the pressure by the density squared to get the SPH term */
const float rho_inv = 1.f / p->rho;
const float P_over_rho2 = pressure * rho_inv * rho_inv; const float P_over_rho2 = pressure * rho_inv * rho_inv;
/* Compute the new sound speed */
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv);
/* Update variables */ /* Update variables */
p->force.P_over_rho2 = P_over_rho2;
p->force.soundspeed = soundspeed; p->force.soundspeed = soundspeed;
p->force.P_over_rho2 = P_over_rho2;
} }
/** /**
...@@ -426,12 +426,15 @@ __attribute__((always_inline)) INLINE static void hydro_kick_extra( ...@@ -426,12 +426,15 @@ __attribute__((always_inline)) INLINE static void hydro_kick_extra(
/* Compute the pressure */ /* Compute the pressure */
const float pressure = gas_pressure_from_entropy(p->rho, p->entropy); const float pressure = gas_pressure_from_entropy(p->rho, p->entropy);
/* Compute the sound speed from the pressure*/ /* Compute the new sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
/* Divide the pressure by the density squared to get the SPH term */
const float rho_inv = 1.f / p->rho; const float rho_inv = 1.f / p->rho;
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv); const float P_over_rho2 = pressure * rho_inv * rho_inv;
p->force.soundspeed = soundspeed; p->force.soundspeed = soundspeed;
p->force.P_over_rho2 = pressure * rho_inv * rho_inv; p->force.P_over_rho2 = P_over_rho2;
} }
/** /**
...@@ -450,12 +453,15 @@ __attribute__((always_inline)) INLINE static void hydro_convert_quantities( ...@@ -450,12 +453,15 @@ __attribute__((always_inline)) INLINE static void hydro_convert_quantities(
/* Compute the pressure */ /* Compute the pressure */
const float pressure = gas_pressure_from_entropy(p->rho, p->entropy); const float pressure = gas_pressure_from_entropy(p->rho, p->entropy);
/* Compute the sound speed from the pressure*/ /* Compute the sound speed */
const float soundspeed = gas_soundspeed_from_pressure(p->rho, pressure);
/* Divide the pressure by the density squared to get the SPH term */
const float rho_inv = 1.f / p->rho; const float rho_inv = 1.f / p->rho;
const float soundspeed = sqrtf(hydro_gamma * pressure * rho_inv); const float P_over_rho2 = pressure * rho_inv * rho_inv;
p->force.soundspeed = soundspeed; p->force.soundspeed = soundspeed;
p->force.P_over_rho2 = pressure * rho_inv * rho_inv; p->force.P_over_rho2 = P_over_rho2;
} }
#endif /* SWIFT_GADGET2_HYDRO_H */ #endif /* SWIFT_GADGET2_HYDRO_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment