git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12350 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -1429,7 +1429,7 @@ void MSM::particle_map()
|
||||
int flag = 0;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
|
||||
@ -310,7 +310,7 @@ void MSMCG::particle_map()
|
||||
int i;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
for (int j = 0; j < num_charged; j++) {
|
||||
i = is_charged[j];
|
||||
|
||||
@ -1877,7 +1877,7 @@ void PPPM::particle_map()
|
||||
int flag = 0;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
|
||||
@ -283,7 +283,7 @@ void PPPMCG::particle_map()
|
||||
double **x = atom->x;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
int flag = 0;
|
||||
for (int j = 0; j < num_charged; j++) {
|
||||
|
||||
@ -4210,7 +4210,7 @@ void PPPMDisp::particle_map(double delx, double dely, double delz,
|
||||
int nlocal = atom->nlocal;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
int flag = 0;
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
@ -79,7 +79,7 @@ void PPPMDispTIP4P::particle_map_c(double delx, double dely, double delz,
|
||||
int nlocal = atom->nlocal;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
int flag = 0;
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
@ -680,7 +680,7 @@ void PPPMStagger::particle_map()
|
||||
int nlocal = atom->nlocal;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
int flag = 0;
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
@ -74,7 +74,7 @@ void PPPMTIP4P::particle_map()
|
||||
int nlocal = atom->nlocal;
|
||||
|
||||
if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2]))
|
||||
error->one(FLERR,"Non-numeric box dimensions. Simulation unstable.");
|
||||
error->one(FLERR,"Non-numeric box dimensions - simulation unstable");
|
||||
|
||||
int flag = 0;
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
|
||||
Reference in New Issue
Block a user