50 if(eflag || vflag) ev_setup(eflag,vflag);
51 else evflag = vflag_fdotr = eflag_global = eflag_atom = 0;
54 interface->setLocalAtoms(atom->nlocal, atom->type);
62 interface->setLocalAtomPositions(atom->x);
65 if(domain->nonperiodic == 0)
96 ev_tally(0,0,atom->nlocal,1,
interface->getEnergy(),0.0,0.0,0.0,0.0,0.0);
100 for (
int i = 0; i < atom->nlocal; ++i)
101 eatom[i] =
interface->getAtomicEnergy(i);
104 if (vflag_fdotr) virial_fdotr_compute();
151 double rc2 = cutoffRadius * cutoffRadius;
152 interface->allocateNeighborlists(list->numneigh);
154 #pragma omp parallel for
156 for (
int ii = 0; ii < list->inum; ++ii) {
157 int i = list->ilist[ii];
158 for (
int jj = 0; jj < list->numneigh[i]; ++jj) {
159 int j = list->firstneigh[i][jj];
161 double dx = atom->x[i][0] - atom->x[j][0];
162 double dy = atom->x[i][1] - atom->x[j][1];
163 double dz = atom->x[i][2] - atom->x[j][2];
164 double d2 = dx * dx + dy * dy + dz * dz;
166 if (!
interface->getGlobalStructureStatus())
168 interface->addNeighbor(i,j,atom->tag[j],atom->type[j],dx,dy,dz,d2);
170 interface->addNeighbor(i,j,atom->map(atom->tag[j]),atom->type[j],dx,dy,dz,d2);