forked from lijiext/lammps
92 lines
2.6 KiB
C++
92 lines
2.6 KiB
C++
/* ----------------------------------------------------------------------
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
Steve Plimpton, sjplimp@sandia.gov
|
|
|
|
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 "ntopo_bond_all.h"
|
|
#include <mpi.h>
|
|
#include "atom.h"
|
|
#include "force.h"
|
|
#include "domain.h"
|
|
#include "update.h"
|
|
#include "output.h"
|
|
#include "thermo.h"
|
|
#include "memory.h"
|
|
#include "error.h"
|
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
#define DELTA 10000
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
NTopoBondAll::NTopoBondAll(LAMMPS *lmp) : NTopo(lmp)
|
|
{
|
|
allocate_bond();
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void NTopoBondAll::build()
|
|
{
|
|
int i,m,atom1;
|
|
|
|
int nlocal = atom->nlocal;
|
|
int *num_bond = atom->num_bond;
|
|
tagint **bond_atom = atom->bond_atom;
|
|
int **bond_type = atom->bond_type;
|
|
tagint *tag = atom->tag;
|
|
int newton_bond = force->newton_bond;
|
|
|
|
int lostbond = output->thermo->lostbond;
|
|
int nmissing = 0;
|
|
nbondlist = 0;
|
|
|
|
for (i = 0; i < nlocal; i++)
|
|
for (m = 0; m < num_bond[i]; m++) {
|
|
atom1 = atom->map(bond_atom[i][m]);
|
|
if (atom1 == -1) {
|
|
nmissing++;
|
|
if (lostbond == Thermo::ERROR) {
|
|
char str[128];
|
|
sprintf(str,"Bond atoms " TAGINT_FORMAT " " TAGINT_FORMAT
|
|
" missing on proc %d at step " BIGINT_FORMAT,
|
|
tag[i],bond_atom[i][m],me,update->ntimestep);
|
|
error->one(FLERR,str);
|
|
}
|
|
continue;
|
|
}
|
|
atom1 = domain->closest_image(i,atom1);
|
|
if (newton_bond || i < atom1) {
|
|
if (nbondlist == maxbond) {
|
|
maxbond += DELTA;
|
|
memory->grow(bondlist,maxbond,3,"neigh_topo:bondlist");
|
|
}
|
|
bondlist[nbondlist][0] = i;
|
|
bondlist[nbondlist][1] = atom1;
|
|
bondlist[nbondlist][2] = bond_type[i][m];
|
|
nbondlist++;
|
|
}
|
|
}
|
|
|
|
if (cluster_check) bond_check();
|
|
if (lostbond == Thermo::IGNORE) return;
|
|
|
|
int all;
|
|
MPI_Allreduce(&nmissing,&all,1,MPI_INT,MPI_SUM,world);
|
|
if (all) {
|
|
char str[128];
|
|
sprintf(str,
|
|
"Bond atoms missing at step " BIGINT_FORMAT,update->ntimestep);
|
|
if (me == 0) error->warning(FLERR,str);
|
|
}
|
|
}
|