/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator https://www.lammps.org/, Sandia National Laboratories LAMMPS development team: developers@lammps.org Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ #include "pair_bpm_spring.h" #include "atom.h" #include "comm.h" #include "error.h" #include "force.h" #include "memory.h" #include "neigh_list.h" #include "neighbor.h" #include using namespace LAMMPS_NS; /* ---------------------------------------------------------------------- */ PairBPMSpring::PairBPMSpring(LAMMPS *_lmp) : Pair(_lmp), k(nullptr), ka(nullptr), cut(nullptr), gamma(nullptr) { writedata = 1; anharmonic_flag = 0; } /* ---------------------------------------------------------------------- */ PairBPMSpring::~PairBPMSpring() { if (allocated) { memory->destroy(setflag); memory->destroy(cutsq); memory->destroy(k); memory->destroy(ka); memory->destroy(cut); memory->destroy(gamma); } } /* ---------------------------------------------------------------------- */ void PairBPMSpring::compute(int eflag, int vflag) { int i, j, ii, jj, inum, jnum, itype, jtype; double xtmp, ytmp, ztmp, delx, dely, delz, dr, evdwl, fpair; double r, rsq, rinv, factor_lj; int *ilist, *jlist, *numneigh, **firstneigh; double vxtmp, vytmp, vztmp, delvx, delvy, delvz, dot, smooth; evdwl = 0.0; if (eflag || vflag) ev_setup(eflag, vflag); else evflag = vflag_fdotr = 0; double **x = atom->x; double **v = atom->v; double **f = atom->f; int *type = atom->type; int nlocal = atom->nlocal; int newton_pair = force->newton_pair; double *special_lj = force->special_lj; inum = list->inum; ilist = list->ilist; numneigh = list->numneigh; firstneigh = list->firstneigh; // loop over neighbors of my atoms for (ii = 0; ii < inum; ii++) { i = ilist[ii]; xtmp = x[i][0]; ytmp = x[i][1]; ztmp = x[i][2]; vxtmp = v[i][0]; vytmp = v[i][1]; vztmp = v[i][2]; itype = type[i]; jlist = firstneigh[i]; jnum = numneigh[i]; for (jj = 0; jj < jnum; jj++) { j = jlist[jj]; factor_lj = special_lj[sbmask(j)]; if (factor_lj == 0) continue; j &= NEIGHMASK; delx = xtmp - x[j][0]; dely = ytmp - x[j][1]; delz = ztmp - x[j][2]; rsq = delx * delx + dely * dely + delz * delz; jtype = type[j]; if (rsq < cutsq[itype][jtype]) { r = sqrt(rsq); rinv = 1.0 / r; dr = r - cut[itype][jtype]; fpair = -k[itype][jtype] * dr; if (anharmonic_flag) fpair += -ka[itype][jtype] * dr * dr * dr; smooth = rsq / cutsq[itype][jtype]; smooth *= smooth; smooth *= smooth; smooth = 1.0 - smooth; delvx = vxtmp - v[j][0]; delvy = vytmp - v[j][1]; delvz = vztmp - v[j][2]; dot = delx * delvx + dely * delvy + delz * delvz; fpair -= gamma[itype][jtype] * dot * smooth * rinv; fpair *= factor_lj * rinv; if (eflag) evdwl = 0.0; f[i][0] += delx * fpair; f[i][1] += dely * fpair; f[i][2] += delz * fpair; if (newton_pair || j < nlocal) { f[j][0] -= delx * fpair; f[j][1] -= dely * fpair; f[j][2] -= delz * fpair; } if (evflag) ev_tally(i, j, nlocal, newton_pair, evdwl, 0.0, fpair, delx, dely, delz); } } } if (vflag_fdotr) virial_fdotr_compute(); } /* ---------------------------------------------------------------------- allocate all arrays ------------------------------------------------------------------------- */ void PairBPMSpring::allocate() { allocated = 1; const int np1 = atom->ntypes + 1; memory->create(setflag, np1, np1, "pair:setflag"); for (int i = 1; i < np1; i++) for (int j = i; j < np1; j++) setflag[i][j] = 0; memory->create(cutsq, np1, np1, "pair:cutsq"); memory->create(k, np1, np1, "pair:k"); memory->create(ka, np1, np1, "pair:ka"); memory->create(cut, np1, np1, "pair:cut"); memory->create(gamma, np1, np1, "pair:gamma"); } /* ---------------------------------------------------------------------- global settings ------------------------------------------------------------------------- */ void PairBPMSpring::settings(int narg, char ** arg) { int iarg = 0; while (iarg < narg) { if (strcmp(arg[iarg], "anharmonic") == 0) { if (iarg + 1 >= narg) utils::missing_cmd_args(FLERR, "pair_coeff bpm/spring anharmonic", error); anharmonic_flag = utils::logical(FLERR, arg[iarg + 1], false, lmp); iarg += 2; } else error->all(FLERR, "Illegal pair_style command {}", arg[iarg]); } } /* ---------------------------------------------------------------------- set coeffs for one or more type pairs ------------------------------------------------------------------------- */ void PairBPMSpring::coeff(int narg, char **arg) { if ((!anharmonic_flag && narg != 5) || (anharmonic_flag && narg != 6)) error->all(FLERR, "Incorrect args for pair coefficients"); if (!allocated) allocate(); int ilo, ihi, jlo, jhi; utils::bounds(FLERR, arg[0], 1, atom->ntypes, ilo, ihi, error); utils::bounds(FLERR, arg[1], 1, atom->ntypes, jlo, jhi, error); double k_one = utils::numeric(FLERR, arg[2], false, lmp); double cut_one = utils::numeric(FLERR, arg[3], false, lmp); double gamma_one = utils::numeric(FLERR, arg[4], false, lmp); double ka_one = 0.0; if (anharmonic_flag) ka_one = utils::numeric(FLERR, arg[5], false, lmp); if (cut_one <= 0.0) error->all(FLERR, "Incorrect args for pair coefficients"); int count = 0; for (int i = ilo; i <= ihi; i++) { for (int j = MAX(jlo, i); j <= jhi; j++) { k[i][j] = k_one; cut[i][j] = cut_one; gamma[i][j] = gamma_one; ka[i][j] = ka_one; setflag[i][j] = 1; count++; } } if (count == 0) error->all(FLERR, "Incorrect args for pair coefficients"); } /* ---------------------------------------------------------------------- init specific to this pair style ------------------------------------------------------------------------- */ void PairBPMSpring::init_style() { if (comm->ghost_velocity == 0) error->all(FLERR, "Pair bpm/spring requires ghost atoms store velocity"); neighbor->add_request(this); } /* ---------------------------------------------------------------------- init for one type pair i,j and corresponding j,i ------------------------------------------------------------------------- */ double PairBPMSpring::init_one(int i, int j) { if (setflag[i][j] == 0) { cut[i][j] = mix_distance(cut[i][i], cut[j][j]); k[i][j] = mix_energy(k[i][i], k[j][j], cut[i][i], cut[j][j]); gamma[i][j] = mix_energy(gamma[i][i], gamma[j][j], cut[i][i], cut[j][j]); } cut[j][i] = cut[i][j]; k[j][i] = k[i][j]; gamma[j][i] = gamma[i][j]; ka[j][i] = ka[i][j]; return cut[i][j]; } /* ---------------------------------------------------------------------- proc 0 writes to restart file ------------------------------------------------------------------------- */ void PairBPMSpring::write_restart(FILE *fp) { write_restart_settings(fp); int i, j; for (i = 1; i <= atom->ntypes; i++) for (j = i; j <= atom->ntypes; j++) { fwrite(&setflag[i][j], sizeof(int), 1, fp); if (setflag[i][j]) { fwrite(&k[i][j], sizeof(double), 1, fp); fwrite(&cut[i][j], sizeof(double), 1, fp); fwrite(&gamma[i][j], sizeof(double), 1, fp); fwrite(&ka[i][j], sizeof(double), 1, fp); } } } /* ---------------------------------------------------------------------- proc 0 reads from restart file, bcasts ------------------------------------------------------------------------- */ void PairBPMSpring::read_restart(FILE *fp) { read_restart_settings(fp); allocate(); int i, j; int me = comm->me; for (i = 1; i <= atom->ntypes; i++) for (j = i; j <= atom->ntypes; j++) { if (me == 0) utils::sfread(FLERR, &setflag[i][j], sizeof(int), 1, fp, nullptr, error); MPI_Bcast(&setflag[i][j], 1, MPI_INT, 0, world); if (setflag[i][j]) { if (me == 0) { utils::sfread(FLERR, &k[i][j], sizeof(double), 1, fp, nullptr, error); utils::sfread(FLERR, &cut[i][j], sizeof(double), 1, fp, nullptr, error); utils::sfread(FLERR, &gamma[i][j], sizeof(double), 1, fp, nullptr, error); utils::sfread(FLERR, &ka[i][j], sizeof(double), 1, fp, nullptr, error); } MPI_Bcast(&k[i][j], 1, MPI_DOUBLE, 0, world); MPI_Bcast(&cut[i][j], 1, MPI_DOUBLE, 0, world); MPI_Bcast(&gamma[i][j], 1, MPI_DOUBLE, 0, world); MPI_Bcast(&ka[i][j], 1, MPI_DOUBLE, 0, world); } } } /* ---------------------------------------------------------------------- proc 0 writes to restart file ------------------------------------------------------------------------- */ void PairBPMSpring::write_restart_settings(FILE *fp) { fwrite(&anharmonic_flag, sizeof(int), 1, fp); } /* ---------------------------------------------------------------------- proc 0 reads from restart file, bcasts ------------------------------------------------------------------------- */ void PairBPMSpring::read_restart_settings(FILE *fp) { if (comm->me == 0) utils::sfread(FLERR, &anharmonic_flag, sizeof(int), 1, fp, nullptr, error); MPI_Bcast(&anharmonic_flag, 1, MPI_INT, 0, world); } /* ---------------------------------------------------------------------- proc 0 writes to data file ------------------------------------------------------------------------- */ void PairBPMSpring::write_data(FILE *fp) { if (anharmonic_flag) { for (int i = 1; i <= atom->ntypes; i++) fprintf(fp, "%d %g %g %g %g\n", i, k[i][i], cut[i][i], gamma[i][i], ka[i][i]); } else { for (int i = 1; i <= atom->ntypes; i++) fprintf(fp, "%d %g %g %g\n", i, k[i][i], cut[i][i], gamma[i][i]); } } /* ---------------------------------------------------------------------- proc 0 writes all pairs to data file ------------------------------------------------------------------------- */ void PairBPMSpring::write_data_all(FILE *fp) { if (anharmonic_flag) { for (int i = 1; i <= atom->ntypes; i++) for (int j = i; j <= atom->ntypes; j++) fprintf(fp, "%d %d %g %g %g %g\n", i, j, k[i][j], cut[i][j], gamma[i][j], ka[i][j]); } else { for (int i = 1; i <= atom->ntypes; i++) for (int j = i; j <= atom->ntypes; j++) fprintf(fp, "%d %d %g %g %g\n", i, j, k[i][j], cut[i][j], gamma[i][j]); } } /* ---------------------------------------------------------------------- */ double PairBPMSpring::single(int i, int j, int itype, int jtype, double rsq, double /*factor_coul*/, double factor_lj, double &fforce) { double fpair, r, rinv, dr; double delx, dely, delz, delvx, delvy, delvz, dot, smooth; if (rsq > cutsq[itype][jtype]) return 0.0; double **x = atom->x; double **v = atom->v; r = sqrt(rsq); rinv = 1.0 / r; dr = r - cut[itype][jtype]; fpair = -k[itype][jtype] * dr; if (anharmonic_flag) fpair += -ka[itype][jtype] * dr * dr * dr; smooth = rsq / cutsq[itype][jtype]; smooth *= smooth; smooth = 1.0 - smooth; delx = x[i][0] - x[j][0]; dely = x[i][1] - x[j][1]; delz = x[i][2] - x[j][2]; delvx = v[i][0] - v[j][0]; delvy = v[i][1] - v[j][1]; delvz = v[i][2] - v[j][2]; dot = delx * delvx + dely * delvy + delz * delvz; fpair -= gamma[itype][jtype] * dot * rinv * smooth; fpair *= factor_lj; fforce = fpair; return 0.0; }