347 lines
9.1 KiB
C++
347 lines
9.1 KiB
C++
// clang-format off
|
|
/* ----------------------------------------------------------------------
|
|
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.
|
|
------------------------------------------------------------------------- */
|
|
|
|
/* ----------------------------------------------------------------------
|
|
Contributing author: Ray Shan (Sandia, tnshan@sandia.gov)
|
|
------------------------------------------------------------------------- */
|
|
|
|
#include "fix_reaxff_bonds.h"
|
|
|
|
#include "atom.h"
|
|
#include "error.h"
|
|
#include "force.h"
|
|
#include "memory.h"
|
|
#include "neigh_list.h"
|
|
#include "update.h"
|
|
|
|
#include "pair_reaxff.h"
|
|
#include "reaxff_api.h"
|
|
|
|
using namespace LAMMPS_NS;
|
|
using namespace FixConst;
|
|
using namespace ReaxFF;
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
FixReaxFFBonds::FixReaxFFBonds(LAMMPS *lmp, int narg, char **arg) :
|
|
Fix(lmp, narg, arg)
|
|
{
|
|
if (narg != 5) error->all(FLERR,"Illegal fix reaxff/bonds command");
|
|
|
|
MPI_Comm_rank(world,&me);
|
|
MPI_Comm_size(world,&nprocs);
|
|
ntypes = atom->ntypes;
|
|
nmax = atom->nmax;
|
|
compressed = 0;
|
|
first_flag = true;
|
|
|
|
nevery = utils::inumeric(FLERR,arg[3],false,lmp);
|
|
|
|
if (nevery <= 0) error->all(FLERR,"Illegal fix reaxff/bonds command");
|
|
|
|
if (me == 0) {
|
|
if (platform::has_compress_extension(arg[4])) {
|
|
compressed = 1;
|
|
fp = platform::compressed_write(arg[4]);
|
|
if (!fp) error->one(FLERR,"Cannot open compressed file");
|
|
} else fp = fopen(arg[4],"w");
|
|
|
|
if (!fp) error->one(FLERR,"Cannot open fix reaxff/bonds file {}: {}",
|
|
arg[4],utils::getsyserror());
|
|
}
|
|
|
|
if (atom->tag_consecutive() == 0)
|
|
error->all(FLERR,"Atom IDs must be consecutive for fix reaxff bonds");
|
|
|
|
abo = nullptr;
|
|
neighid = nullptr;
|
|
numneigh = nullptr;
|
|
|
|
allocate();
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
FixReaxFFBonds::~FixReaxFFBonds()
|
|
{
|
|
MPI_Comm_rank(world,&me);
|
|
|
|
destroy();
|
|
|
|
if (me == 0) fclose(fp);
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
int FixReaxFFBonds::setmask()
|
|
{
|
|
int mask = 0;
|
|
mask |= END_OF_STEP;
|
|
return mask;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::setup(int /*vflag*/)
|
|
{
|
|
// only print output during setup() at the very beginning
|
|
// to avoid duplicate outputs when using multiple run statements
|
|
if (first_flag) end_of_step();
|
|
first_flag = false;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::init()
|
|
{
|
|
reaxff = dynamic_cast<PairReaxFF *>(force->pair_match("^reax..",0));
|
|
if (reaxff == nullptr) error->all(FLERR,"Cannot use fix reaxff/bonds without "
|
|
"pair_style reaxff, reaxff/kk, or reaxff/omp");
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::end_of_step()
|
|
{
|
|
Output_ReaxFF_Bonds();
|
|
if (me == 0) fflush(fp);
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::Output_ReaxFF_Bonds()
|
|
|
|
{
|
|
int i, j;
|
|
int nbuf, nbuf_local;
|
|
int nlocal_max, numbonds, numbonds_max;
|
|
double *buf;
|
|
|
|
int nlocal = atom->nlocal;
|
|
int nlocal_tot = static_cast<int> (atom->natoms);
|
|
|
|
if (atom->nmax > nmax) {
|
|
destroy();
|
|
nmax = atom->nmax;
|
|
allocate();
|
|
}
|
|
|
|
for (i = 0; i < nmax; i++) {
|
|
numneigh[i] = 0;
|
|
for (j = 0; j < MAXREAXBOND; j++) {
|
|
neighid[i][j] = 0;
|
|
abo[i][j] = 0.0;
|
|
}
|
|
}
|
|
numbonds = FindBond();
|
|
|
|
// allocate a temporary buffer for the snapshot info
|
|
MPI_Allreduce(&numbonds,&numbonds_max,1,MPI_INT,MPI_MAX,world);
|
|
MPI_Allreduce(&nlocal,&nlocal_max,1,MPI_INT,MPI_MAX,world);
|
|
|
|
nbuf = 1+(numbonds_max*2+10)*nlocal_max;
|
|
memory->create(buf,nbuf,"reaxff/bonds:buf");
|
|
for (i = 0; i < nbuf; i ++) buf[i] = 0.0;
|
|
|
|
// Pass information to buffer
|
|
PassBuffer(buf, nbuf_local);
|
|
|
|
// Receive information from buffer for output
|
|
RecvBuffer(buf, nbuf, nbuf_local, nlocal_tot, numbonds_max);
|
|
|
|
memory->destroy(buf);
|
|
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
int FixReaxFFBonds::FindBond()
|
|
{
|
|
int *ilist, i, ii, inum;
|
|
int j, pj, nj;
|
|
tagint jtag;
|
|
double bo_tmp,bo_cut;
|
|
|
|
inum = reaxff->list->inum;
|
|
ilist = reaxff->list->ilist;
|
|
bond_data *bo_ij;
|
|
bo_cut = reaxff->api->control->bg_cut;
|
|
|
|
tagint *tag = atom->tag;
|
|
int numbonds = 0;
|
|
|
|
for (ii = 0; ii < inum; ii++) {
|
|
i = ilist[ii];
|
|
nj = 0;
|
|
|
|
for (pj = Start_Index(i, reaxff->api->lists); pj < End_Index(i, reaxff->api->lists); ++pj) {
|
|
bo_ij = &(reaxff->api->lists->select.bond_list[pj]);
|
|
j = bo_ij->nbr;
|
|
jtag = tag[j];
|
|
bo_tmp = bo_ij->bo_data.BO;
|
|
|
|
if (bo_tmp > bo_cut) {
|
|
neighid[i][nj] = jtag;
|
|
abo[i][nj] = bo_tmp;
|
|
nj ++;
|
|
}
|
|
}
|
|
numneigh[i] = nj;
|
|
if (nj > numbonds) numbonds = nj;
|
|
}
|
|
return numbonds;
|
|
}
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::PassBuffer(double *buf, int &nbuf_local)
|
|
{
|
|
int i, j, k, numbonds;
|
|
int nlocal = atom->nlocal;
|
|
|
|
j = 2;
|
|
buf[0] = nlocal;
|
|
for (i = 0; i < nlocal; i++) {
|
|
buf[j-1] = atom->tag[i];
|
|
buf[j+0] = atom->type[i];
|
|
buf[j+1] = reaxff->api->workspace->total_bond_order[i];
|
|
buf[j+2] = reaxff->api->workspace->nlp[i];
|
|
buf[j+3] = atom->q[i];
|
|
buf[j+4] = numneigh[i];
|
|
numbonds = nint(buf[j+4]);
|
|
|
|
for (k = 5; k < 5+numbonds; k++) {
|
|
buf[j+k] = neighid[i][k-5];
|
|
}
|
|
j += (5+numbonds);
|
|
|
|
if (atom->molecule == nullptr) buf[j] = 0.0;
|
|
else buf[j] = atom->molecule[i];
|
|
j ++;
|
|
|
|
for (k = 0; k < numbonds; k++) {
|
|
buf[j+k] = abo[i][k];
|
|
}
|
|
j += (1+numbonds);
|
|
}
|
|
nbuf_local = j - 1;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::RecvBuffer(double *buf, int nbuf, int nbuf_local,
|
|
int natoms, int maxnum)
|
|
{
|
|
int i, j, k, itype;
|
|
int inode, nlocal_tmp, numbonds;
|
|
tagint itag;
|
|
int nlocal = atom->nlocal;
|
|
bigint ntimestep = update->ntimestep;
|
|
double sbotmp, nlptmp, avqtmp;
|
|
|
|
double cutof3 = reaxff->api->control->bg_cut;
|
|
MPI_Request irequest, irequest2;
|
|
|
|
if (me == 0) {
|
|
fmt::print(fp,"# Timestep {}\n#\n",ntimestep);
|
|
fmt::print(fp,"# Number of particles {}\n#\n",natoms);
|
|
fmt::print(fp,"# Max number of bonds per atom {} with coarse bond order cutoff {:5.3f}\n",
|
|
maxnum,cutof3);
|
|
fmt::print(fp,"# Particle connection table and bond orders\n"
|
|
"# id type nb id_1...id_nb mol bo_1...bo_nb abo nlp q\n");
|
|
}
|
|
|
|
j = 2;
|
|
if (me == 0) {
|
|
for (inode = 0; inode < nprocs; inode ++) {
|
|
if (inode == 0) {
|
|
nlocal_tmp = nlocal;
|
|
} else {
|
|
MPI_Irecv(&buf[0],nbuf,MPI_DOUBLE,inode,0,world,&irequest);
|
|
MPI_Wait(&irequest,MPI_STATUS_IGNORE);
|
|
nlocal_tmp = nint(buf[0]);
|
|
}
|
|
j = 2;
|
|
for (i = 0; i < nlocal_tmp; i ++) {
|
|
itag = static_cast<tagint> (buf[j-1]);
|
|
itype = nint(buf[j+0]);
|
|
sbotmp = buf[j+1];
|
|
nlptmp = buf[j+2];
|
|
avqtmp = buf[j+3];
|
|
numbonds = nint(buf[j+4]);
|
|
|
|
auto mesg = fmt::format(" {} {} {}",itag,itype,numbonds);
|
|
for (k = 5; k < 5+numbonds; k++)
|
|
mesg += " " + std::to_string(static_cast<tagint> (buf[j+k]));
|
|
j += (5+numbonds);
|
|
|
|
mesg += " " + std::to_string(static_cast<tagint> (buf[j]));
|
|
j ++;
|
|
|
|
for (k = 0; k < numbonds; k++) mesg += fmt::format("{:14.3f}",buf[j+k]);
|
|
j += (1+numbonds);
|
|
|
|
mesg += fmt::format("{:14.3f}{:14.3f}{:14.3f}\n",sbotmp,nlptmp,avqtmp);
|
|
fmt::print(fp, mesg);
|
|
}
|
|
}
|
|
} else {
|
|
MPI_Isend(&buf[0],nbuf_local,MPI_DOUBLE,0,0,world,&irequest2);
|
|
MPI_Wait(&irequest2,MPI_STATUS_IGNORE);
|
|
}
|
|
if (me == 0) fputs("# \n",fp);
|
|
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
int FixReaxFFBonds::nint(const double &r)
|
|
{
|
|
int i = 0;
|
|
if (r>0.0) i = static_cast<int>(r+0.5);
|
|
else if (r<0.0) i = static_cast<int>(r-0.5);
|
|
return i;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::destroy()
|
|
{
|
|
memory->destroy(abo);
|
|
memory->destroy(neighid);
|
|
memory->destroy(numneigh);
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void FixReaxFFBonds::allocate()
|
|
{
|
|
memory->create(abo,nmax,MAXREAXBOND,"reaxff/bonds:abo");
|
|
memory->create(neighid,nmax,MAXREAXBOND,"reaxff/bonds:neighid");
|
|
memory->create(numneigh,nmax,"reaxff/bonds:numneigh");
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
double FixReaxFFBonds::memory_usage()
|
|
{
|
|
double bytes;
|
|
|
|
bytes = 3.0*nmax*sizeof(double);
|
|
bytes += (double)nmax*sizeof(int);
|
|
bytes += (double)1.0*nmax*MAXREAXBOND*sizeof(double);
|
|
bytes += (double)1.0*nmax*MAXREAXBOND*sizeof(int);
|
|
|
|
return bytes;
|
|
}
|