#include "compute_plasticity_atom.h"
#include <cstring>
#include "atom.h"
#include "update.h"
#include "modify.h"
#include "comm.h"
#include "fix_peri_neigh.h"
#include "force.h"
#include "memory.h"
#include "error.h"
using namespace LAMMPS_NS;
ComputePlasticityAtom::
ComputePlasticityAtom(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg)
{
if (narg != 3) error->all(FLERR,"Illegal compute plasticity/atom command");
if (!force->pair_match("peri/eps",1))
error->all(FLERR,"Compute plasticity/atom cannot be used "
"with this pair style");
peratom_flag = 1;
size_peratom_cols = 0;
nmax = 0;
plasticity = NULL;
}
ComputePlasticityAtom::~ComputePlasticityAtom()
{
memory->destroy(plasticity);
}
void ComputePlasticityAtom::init()
{
int count = 0;
for (int i = 0; i < modify->ncompute; i++)
if (strcmp(modify->compute[i]->style,"plasticity/peri") == 0) count++;
if (count > 1 && comm->me == 0)
error->warning(FLERR,"More than one compute plasticity/atom");
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 plasticity/atom requires Peridynamic pair style");
}
void ComputePlasticityAtom::compute_peratom()
{
invoked_peratom = update->ntimestep;
if (atom->nmax > nmax) {
memory->destroy(plasticity);
nmax = atom->nmax;
memory->create(plasticity,nmax,"plasticity/atom:plasticity");
vector_atom = plasticity;
}
double *lambdaValue = ((FixPeriNeigh *) modify->fix[ifix_peri])->lambdaValue;
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (int i = 0; i < nlocal; i++)
if (mask[i] & groupbit) plasticity[i] = lambdaValue[i];
}
double ComputePlasticityAtom::memory_usage()
{
double bytes = nmax * sizeof(double);
return bytes;
}