Skip to content

Commit

Permalink
Log particle advection and update
Browse files Browse the repository at this point in the history
  • Loading branch information
gassmoeller committed Apr 12, 2024
1 parent 3c2c7a4 commit ecef89b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/particle/world.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,7 @@ namespace aspect
void
World<dim>::advance_timestep()
{
this->get_pcout() << " Advecting particles... " << std::flush;
do
{
advect_particles();
Expand All @@ -1308,6 +1309,7 @@ namespace aspect
TimerOutput::Scope timer_section(this->get_computing_timer(), "Particles: Exchange ghosts");
particle_handler->exchange_ghost_particles();
}
this->get_pcout() << " done." << std::endl;
}


Expand Down

0 comments on commit ecef89b

Please sign in to comment.