forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4941 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
39443ba45c
commit
f4f63949b6
|
@ -254,7 +254,7 @@ void PairREAX::write_reax_positions()
|
|||
FORTRAN(rsmall, RSMALL).na_local = nlocal;
|
||||
|
||||
if (nlocal+nghost > ReaxParams::nat)
|
||||
error->one("reax_defs.h::NATDEF too small");
|
||||
error->one("Reax_defs.h setting for NATDEF is too small");
|
||||
|
||||
jx = 0;
|
||||
jy = ReaxParams::nat;
|
||||
|
@ -338,7 +338,7 @@ void PairREAX::write_reax_vlist()
|
|||
jjj = i+1;
|
||||
}
|
||||
if (nvpair >= nvpairmax)
|
||||
error->one("reax_defs.h::NNEIGHMAXDEF too small");
|
||||
error->one("Reax_defs.h setting for NNEIGHMAXDEF is too small");
|
||||
|
||||
FORTRAN(cbkpairs, CBKPAIRS).nvl1[nvpair] = iii;
|
||||
FORTRAN(cbkpairs, CBKPAIRS).nvl2[nvpair] = jjj;
|
||||
|
@ -397,7 +397,7 @@ void PairREAX::write_reax_vlist()
|
|||
jjj = j+1;
|
||||
|
||||
if (nvpair >= nvpairmax)
|
||||
error->one("reax_defs.h::NNEIGHMAXDEF too small");
|
||||
error->one("Reax_defs.h setting for NNEIGHMAXDEF is too small");
|
||||
|
||||
FORTRAN(cbkpairs, CBKPAIRS).nvl1[nvpair] = iii;
|
||||
FORTRAN(cbkpairs, CBKPAIRS).nvl2[nvpair] = jjj;
|
||||
|
|
|
@ -46,10 +46,6 @@ FixNEB::FixNEB(LAMMPS *lmp, int narg, char **arg) :
|
|||
|
||||
nreplica = universe->nworlds;
|
||||
ireplica = universe->iworld;
|
||||
if (nreplica == 1)
|
||||
error->all("Cannot use fix neb without multiple replicas");
|
||||
if (nreplica != universe->nprocs)
|
||||
error->all("Can only use NEB with 1-processor replicas");
|
||||
|
||||
if (ireplica > 0) procprev = universe->root_proc[ireplica-1];
|
||||
else procprev = -1;
|
||||
|
|
|
@ -92,7 +92,7 @@ void NEB::command(int narg, char **arg)
|
|||
|
||||
if (nreplica == 1) error->all("Cannot use NEB with a single replica");
|
||||
if (nreplica != universe->nprocs)
|
||||
error->all("Cannot use NEB with multi-processor replicas");
|
||||
error->all("Can only use NEB with 1-processor replicas");
|
||||
if (atom->sortfreq > 0)
|
||||
error->all("Cannot use NEB with atom_modify sort enabled");
|
||||
if (atom->map_style == 0)
|
||||
|
@ -233,7 +233,7 @@ void NEB::command(int narg, char **arg)
|
|||
void NEB::readfile(char *file)
|
||||
{
|
||||
if (me_universe == 0) {
|
||||
if (screen) fprintf(screen,"Reading NEB target file %s ...\n",file);
|
||||
if (screen) fprintf(screen,"Reading NEB coordinate file %s ...\n",file);
|
||||
open(file);
|
||||
}
|
||||
|
||||
|
@ -276,7 +276,7 @@ void NEB::readfile(char *file)
|
|||
|
||||
if (firstline) {
|
||||
if (atom->count_words(bufptr) == 4) firstline = 0;
|
||||
else error->all("Incorrect format in NEB target file");
|
||||
else error->all("Incorrect format in NEB coordinate file");
|
||||
}
|
||||
|
||||
sscanf(bufptr,"%d %lg %lg %lg",&tag,&xx,&yy,&zz);
|
||||
|
|
|
@ -171,7 +171,7 @@ FixSRD::FixSRD(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg)
|
|||
if (nevery <= 0) error->all("Illegal fix srd command");
|
||||
if (bigexist && biggroup < 0) error->all("Could not find fix srd group ID");
|
||||
if (gridsrd <= 0.0) error->all("Illegal fix srd command");
|
||||
if (temperature_srd <= 0.0) error->all("Invalid fix srd command");
|
||||
if (temperature_srd <= 0.0) error->all("Illegal fix srd command");
|
||||
if (seed <= 0) error->all("Illegal fix srd command");
|
||||
if (radfactor <= 0.0) error->all("Illegal fix srd command");
|
||||
if (maxbounceallow < 0) error->all("Illegal fix srd command");
|
||||
|
|
Loading…
Reference in New Issue