forked from lijiext/lammps
83 lines
2.4 KiB
C++
83 lines
2.4 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 "npair_halffull_newtoff.h"
|
|
#include "neighbor.h"
|
|
#include "neigh_list.h"
|
|
#include "atom.h"
|
|
#include "atom_vec.h"
|
|
#include "molecule.h"
|
|
#include "domain.h"
|
|
#include "my_page.h"
|
|
#include "error.h"
|
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
NPairHalffullNewtoff::NPairHalffullNewtoff(LAMMPS *lmp) : NPair(lmp) {}
|
|
|
|
/* ----------------------------------------------------------------------
|
|
build half list from full list
|
|
pair stored once if i,j are both owned and i < j
|
|
pair stored by me if j is ghost (also stored by proc owning j)
|
|
works if full list is a skip list
|
|
------------------------------------------------------------------------- */
|
|
|
|
void NPairHalffullNewtoff::build(NeighList *list)
|
|
{
|
|
int i,j,ii,jj,n,jnum,joriginal;
|
|
int *neighptr,*jlist;
|
|
|
|
int *ilist = list->ilist;
|
|
int *numneigh = list->numneigh;
|
|
int **firstneigh = list->firstneigh;
|
|
MyPage<int> *ipage = list->ipage;
|
|
|
|
int *ilist_full = list->listfull->ilist;
|
|
int *numneigh_full = list->listfull->numneigh;
|
|
int **firstneigh_full = list->listfull->firstneigh;
|
|
int inum_full = list->listfull->inum;
|
|
|
|
int inum = 0;
|
|
ipage->reset();
|
|
|
|
// loop over atoms in full list
|
|
|
|
for (ii = 0; ii < inum_full; ii++) {
|
|
n = 0;
|
|
neighptr = ipage->vget();
|
|
|
|
// loop over parent full list
|
|
|
|
i = ilist_full[ii];
|
|
jlist = firstneigh_full[i];
|
|
jnum = numneigh_full[i];
|
|
|
|
for (jj = 0; jj < jnum; jj++) {
|
|
joriginal = jlist[jj];
|
|
j = joriginal & NEIGHMASK;
|
|
if (j > i) neighptr[n++] = joriginal;
|
|
}
|
|
|
|
ilist[inum++] = i;
|
|
firstneigh[i] = neighptr;
|
|
numneigh[i] = n;
|
|
ipage->vgot(n);
|
|
if (ipage->status())
|
|
error->one(FLERR,"Neighbor list overflow, boost neigh_modify one");
|
|
}
|
|
|
|
list->inum = inum;
|
|
}
|