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

Merge branch 'test27fix' into 'master'

Fix to make test27cells still give 48 neighbours

Small change as test27fix we want to still output the weighted number of neighbours as described by other people.

See merge request !381
parents a09b7e2a 70e99f3e
No related branches found
No related tags found
1 merge request!381Fix to make test27cells still give 48 neighbours
......@@ -204,6 +204,10 @@ void zero_particle_fields(struct cell *c) {
void end_calculation(struct cell *c) {
for (int pid = 0; pid < c->count; pid++) {
hydro_end_density(&c->parts[pid]);
/* Recover the common "Neighbour number" definition */
c->parts[pid].density.wcount *= pow_dimension(c->parts[pid].h);
c->parts[pid].density.wcount *= kernel_norm;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment