Unverified Commit eafcc066 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

secs -> seconds

parent d4c74551
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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));
}

+1 −1
Original line number Diff line number Diff line
@@ -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));
}

+1 −1
Original line number Diff line number Diff line
@@ -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));
}
Loading