Skip to content
Snippets Groups Projects
Commit bfb08d5a authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

output time difference at end of loop

parent 65e89b0a
No related branches found
No related tags found
No related merge requests found
......@@ -197,14 +197,13 @@ class _fluid_particle_base(_code):
'time0 = time1;\n')
self.main += 'for (int max_iter = iteration+niter_todo; iteration < max_iter; iteration++)\n'
self.main += '{\n'
self.main += output_time_difference
self.main += 'if (iteration % niter_stat == 0) do_stats();\n'
if self.particle_species > 0:
self.main += 'if (iteration % niter_part == 0) do_particle_stats();\n'
self.main += self.particle_loop
self.main += self.fluid_loop
self.main += '}\n'
self.main += output_time_difference
self.main += '}\n'
self.main += 'do_stats();\n'
self.main += 'do_particle_stats();\n'
if self.particle_species > 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment