Skip to content

Commit

Permalink
Merge pull request #360 from Rombur/screen_output
Browse files Browse the repository at this point in the history
Improve output on screen
  • Loading branch information
Rombur authored Jan 30, 2025
2 parents 9bd40ef + 1aba2d8 commit 5203e17
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions application/adamantine.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1010,8 +1010,8 @@ run(MPI_Comm const &communicator, boost::property_tree::ptree const &database,
if ((rank == 0) && (verbose_output == true))
{
std::cout << "n_time_step: " << n_time_step << " time: " << time
<< " n_dofs: " << thermal_physics->get_dof_handler().n_dofs()
<< std::endl;
<< " n_dofs after mesh refinement: "
<< thermal_physics->get_dof_handler().n_dofs() << std::endl;
}
}

Expand Down Expand Up @@ -1138,7 +1138,8 @@ run(MPI_Comm const &communicator, boost::property_tree::ptree const &database,
if ((rank == 0) && (verbose_output == true) &&
(activation_end - activation_start > 0) && use_thermal_physics)
{
std::cout << "n_dofs after cell activation: "
std::cout << "n_time_step: " << n_time_step << " time: " << time
<< " n_dofs after cell activation: "
<< thermal_physics->get_dof_handler().n_dofs() << std::endl;
}
}
Expand Down

0 comments on commit 5203e17

Please sign in to comment.