83 ev_init(eflag, vflag);
86 interface->setLocalAtoms(atom->nlocal, atom->type);
106 ev_tally(0, 0, atom->nlocal, 1,
interface->getEnergy(), 0.0, 0.0, 0.0, 0.0, 0.0);
110 for (
int i = 0; i < atom->nlocal; ++i) eatom[i] =
interface->getAtomicEnergy(i);
113 if (vflag_fdotr) virial_fdotr_compute();
124 if (narg < 1) error->all(FLERR,
"Illegal pair_style command");
140 while (iarg < narg) {
142 if (strcmp(arg[iarg],
"dir") == 0) {
143 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
145 directory = utils::strdup(arg[iarg + 1]);
148 }
else if (strcmp(arg[iarg],
"showew") == 0) {
149 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
150 showew = utils::logical(FLERR, arg[iarg + 1],
false, lmp) == 1;
153 }
else if (strcmp(arg[iarg],
"showewsum") == 0) {
154 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
155 showewsum = utils::inumeric(FLERR, arg[iarg + 1],
false, lmp);
158 }
else if (strcmp(arg[iarg],
"maxew") == 0) {
159 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
160 maxew = utils::inumeric(FLERR, arg[iarg + 1],
false, lmp);
163 }
else if (strcmp(arg[iarg],
"resetew") == 0) {
164 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
165 resetew = utils::logical(FLERR, arg[iarg + 1],
false, lmp) == 1;
168 }
else if (strcmp(arg[iarg],
"cflength") == 0) {
169 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
170 cflength = utils::numeric(FLERR, arg[iarg + 1],
false, lmp);
173 }
else if (strcmp(arg[iarg],
"cfenergy") == 0) {
174 if (iarg + 2 > narg) error->all(FLERR,
"Illegal pair_style command");
175 cfenergy = utils::numeric(FLERR, arg[iarg + 1],
false, lmp);
178 error->all(FLERR,
"Illegal pair_style command");
188 int n = atom->ntypes;
192 if (narg != 2 + n) error->all(FLERR,
"Incorrect args for pair coefficients");
194 if (strcmp(arg[0],
"*") != 0 || strcmp(arg[1],
"*") != 0)
195 error->all(FLERR,
"Incorrect args for pair coefficients");
197 int *map =
new int[n + 1];
198 for (
int i = 0; i < n; i++) map[i] = 0;
201 for (
int i = 2; i < narg; i++) {
202 if (strcmp(arg[i],
"NULL") != 0) {
204 emap += std::to_string(i - 1) +
":" + arg[i];
210 for (
int i = 1; i <= n; i++)
211 for (
int j = i; j <= n; j++)
212 if (map[i] > 0 && map[j] > 0) {
217 if (count == 0) error->all(FLERR,
"Incorrect args for pair coefficients");
265 int n = atom->ntypes;
267 memory->create(setflag, n + 1, n + 1,
"pair:setflag");
268 for (
int i = 1; i <= n; i++)
269 for (
int j = i; j <= n; j++) setflag[i][j] = 0;
271 memory->create(cutsq, n + 1, n + 1,
"pair:cutsq");
278 for (
int ii = 0; ii < list->inum; ++ii) {
279 int i = list->ilist[ii];
280 for (
int jj = 0; jj < list->numneigh[i]; ++jj) {
281 int j = list->firstneigh[i][jj];
283 double dx = atom->x[i][0] - atom->x[j][0];
284 double dy = atom->x[i][1] - atom->x[j][1];
285 double dz = atom->x[i][2] - atom->x[j][2];
286 double d2 = dx * dx + dy * dy + dz * dz;
287 if (d2 <= rc2) {
interface->addNeighbor(i, j, atom->tag[j], atom->type[j], dx, dy, dz, d2); }
295 long numCurrentEW = (long)
interface->getNumExtrapolationWarnings();
311 long *numEWPerProc =
nullptr;
312 if (comm->me == 0) numEWPerProc =
new long[comm->nprocs];
313 MPI_Gather(&numCurrentEW, 1, MPI_LONG, numEWPerProc, 1, MPI_LONG, 0, world);
316 for (
int i = 1; i < comm->nprocs; i++) {
317 if (numEWPerProc[i] > 0) {
321 MPI_Recv(&bs, 1, MPI_LONG, i, 0, world, &ms);
322 auto buf =
new char[bs];
324 MPI_Recv(buf, bs, MPI_BYTE, i, 0, world, &ms);
330 }
else if (numCurrentEW > 0) {
334 auto buf =
new char[bs];
337 MPI_Send(&bs, 1, MPI_LONG, 0, 0, world);
338 MPI_Send(buf, bs, MPI_BYTE, 0, 0, world);
342 if (comm->me == 0)
delete[] numEWPerProc;
352 utils::logmesg(lmp,
"### NNP EW SUMMARY ### TS: {:10d} EW {:10d} EWPERSTEP {:10.3e}\n",
353 update->ntimestep, globalEW,
double(globalEW) /
showewsum);
360 error->one(FLERR,
"Too many extrapolation warnings");