secs -> seconds
This commit is contained in:
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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));
|
||||
}
|
||||
|
||||
|
||||
@ -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));
|
||||
}
|
||||
|
||||
|
||||
@ -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));
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user