#include "compute_dilatation_atom.h"
#include <cstring>
#include "atom.h"
#include "update.h"
#include "modify.h"
#include "comm.h"
#include "fix.h"
#include "force.h"
#include "pair_peri_lps.h"
#include "pair_peri_ves.h"
#include "pair_peri_eps.h"
#include "memory.h"
#include "error.h"
using namespace LAMMPS_NS;
ComputeDilatationAtom::
ComputeDilatationAtom(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg)
{
if (narg != 3) error->all(FLERR,"Illegal compute Dilatation/atom command");
peratom_flag = 1;
size_peratom_cols = 0;
nmax = 0;
dilatation = NULL;
}
ComputeDilatationAtom::~ComputeDilatationAtom()
{
memory->destroy(dilatation);
}
void ComputeDilatationAtom::init()
{
int count = 0;
for (int i = 0; i < modify->ncompute; i++)
if (strcmp(modify->compute[i]->style,"dilatation/peri") == 0) count++;
if (count > 1 && comm->me == 0)
error->warning(FLERR,"More than one compute dilatation/atom");
isPMB = isLPS = isVES = isEPS = 0;
if (force->pair_match("peri/pmb",1)) isPMB = 1;
if (force->pair_match("peri/lps",1)) isLPS = 1;
if (force->pair_match("peri/ves",1)) isVES = 1;
if (force->pair_match("peri/eps",1)) isEPS = 1;
if (isPMB)
error->all(FLERR,"Compute dilatation/atom cannot be used "
"with this pair style");
int ifix_peri = -1;
for (int i = 0; i < modify->nfix; i++)
if (strcmp(modify->fix[i]->style,"PERI_NEIGH") == 0) ifix_peri = i;
if (ifix_peri == -1)
error->all(FLERR,"Compute dilatation/atom requires Peridynamic pair style");
}
void ComputeDilatationAtom::compute_peratom()
{
invoked_peratom = update->ntimestep;
if (atom->nmax > nmax) {
memory->destroy(dilatation);
nmax = atom->nmax;
memory->create(dilatation,nmax,"dilatation/atom:dilatation");
vector_atom = dilatation;
}
double *theta;
Pair *anypair = force->pair_match("peri",0);
if (isLPS) theta = ((PairPeriLPS *) anypair)->theta;
if (isVES) theta = ((PairPeriVES *) anypair)->theta;
if (isEPS) theta = ((PairPeriEPS *) anypair)->theta;
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (int i = 0; i < nlocal; i++)
if (mask[i] & groupbit) dilatation[i] = theta[i];
}
double ComputeDilatationAtom::memory_usage()
{
double bytes = nmax * sizeof(double);
return bytes;
}