Skip to content
Snippets Groups Projects
Commit 1f006bf7 authored by Stefan Arridge's avatar Stefan Arridge
Browse files

In stats_collect_part_mapper in statistics.c, we don't collect gpe if gpart does not exist

parent fee943f7
No related branches found
No related tags found
1 merge request!278In stats_collect_part_mapper in statistics.c, we don't collect gpe if gpart does not exist
......@@ -155,7 +155,8 @@ void stats_collect_part_mapper(void *map_data, int nr_parts, void *extra_data) {
/* Collect energies. */
stats.E_kin += 0.5f * m * (v[0] * v[0] + v[1] * v[1] + v[2] * v[2]);
stats.E_pot_self += 0.f;
stats.E_pot_ext +=
if (gp != NULL)
stats.E_pot_ext +=
m * external_gravity_get_potential_energy(potential, phys_const, gp);
stats.E_int += m * hydro_get_internal_energy(p, dt);
stats.E_rad += cooling_get_radiated_energy(xp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment