secs -> seconds

This commit is contained in:
Axel Kohlmeyer
2020-06-30 13:56:35 -04:00
parent d4c7455197
commit eafcc06670
6 changed files with 8 additions and 8 deletions

View File

@ -410,9 +410,9 @@ FixRigidSmall::FixRigidSmall(LAMMPS *lmp, int narg, char **arg) :
if (comm->me == 0) {
if (screen)
fprintf(screen," create bodies CPU = %g secs\n",time2-time1);
fprintf(screen," create bodies CPU = %g seconds\n",time2-time1);
if (logfile)
fprintf(logfile," create bodies CPU = %g secs\n",time2-time1);
fprintf(logfile," create bodies CPU = %g seconds\n",time2-time1);
}
// set nlocal_body and allocate bodies I own

View File

@ -229,9 +229,9 @@ FixShake::FixShake(LAMMPS *lmp, int narg, char **arg) :
if (comm->me == 0) {
if (screen)
fprintf(screen," find clusters CPU = %g secs\n",time2-time1);
fprintf(screen," find clusters CPU = %g seconds\n",time2-time1);
if (logfile)
fprintf(logfile," find clusters CPU = %g secs\n",time2-time1);
fprintf(logfile," find clusters CPU = %g seconds\n",time2-time1);
}
// initialize list of SHAKE clusters to constrain

View File

@ -897,7 +897,7 @@ void ReadData::command(int narg, char **arg)
MPI_Barrier(world);
if (comm->me == 0)
utils::logmesg(lmp,fmt::format(" read_data CPU = {:.3f} secs\n",
utils::logmesg(lmp,fmt::format(" read_data CPU = {:.3f} seconds\n",
MPI_Wtime()-time1));
}

View File

@ -511,7 +511,7 @@ void ReadRestart::command(int narg, char **arg)
MPI_Barrier(world);
if (comm->me == 0)
utils::logmesg(lmp,fmt::format(" read_restart CPU = {:.3f} secs\n",
utils::logmesg(lmp,fmt::format(" read_restart CPU = {:.3f} seconds\n",
MPI_Wtime()-time1));
}

View File

@ -779,6 +779,6 @@ void Replicate::command(int narg, char **arg)
MPI_Barrier(world);
if (me == 0)
utils::logmesg(lmp,fmt::format(" replicate CPU = {:.3f} secs\n",
utils::logmesg(lmp,fmt::format(" replicate CPU = {:.3f} seconds\n",
MPI_Wtime()-time1));
}

View File

@ -1314,6 +1314,6 @@ void Special::fix_alteration()
void Special::timer_output(double time1)
{
if (comm->me == 0)
utils::logmesg(lmp,fmt::format(" special bonds CPU = {:.3f} secs\n",
utils::logmesg(lmp,fmt::format(" special bonds CPU = {:.3f} seconds\n",
MPI_Wtime()-time1));
}