diff --git a/examples/MultiTypes/multiTypes.yml b/examples/MultiTypes/multiTypes.yml index f5a5dbc80844928cf3a7a064d80d1902d60ed88d..a9e4e46744a703d45ce6344cdadc116a1d0f306d 100644 --- a/examples/MultiTypes/multiTypes.yml +++ b/examples/MultiTypes/multiTypes.yml @@ -39,5 +39,5 @@ PointMass: position_x: 50. # location of external point mass in internal units position_y: 50. position_z: 50. - mass: 1e11 # mass of external point mass in internal units + mass: 1e10 # mass of external point mass in internal units timestep_mult: 1e-2 diff --git a/examples/main.c b/examples/main.c index 615377b33f5614615afce0e32dfb97098c52064f..c2d3e3b8b926b72b0e24519da87e4139657b0bfb 100644 --- a/examples/main.c +++ b/examples/main.c @@ -492,7 +492,7 @@ int main(int argc, char *argv[]) { engine_init_particles(&e, flag_entropy_ICs); /* Write the state of the system before starting time integration. */ - //engine_dump_snapshot(&e); + engine_dump_snapshot(&e); /* Legend */ if (myrank == 0) @@ -605,7 +605,7 @@ int main(int argc, char *argv[]) { #endif /* Write final output. */ - //engine_dump_snapshot(&e); + engine_dump_snapshot(&e); #ifdef WITH_MPI if ((res = MPI_Finalize()) != MPI_SUCCESS)