#include <cstring>
#include "compute_tdpd_cc_atom.h"
#include "atom.h"
#include "update.h"
#include "modify.h"
#include "comm.h"
#include "force.h"
#include "memory.h"
#include "error.h"
using namespace LAMMPS_NS;
ComputeTDPDCCAtom::ComputeTDPDCCAtom(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg)
{
if (narg != 4) error->all(FLERR,"Number of arguments for compute tdpd/cc/atom command != 4");
if (atom->tdpd_flag != 1) error->all(FLERR,"compute tdpd/cc/atom command requires atom_style with concentration (e.g. tdpd)");
index = force->inumeric(FLERR,arg[3]);
peratom_flag = 1;
size_peratom_cols = 0;
nmax = 0;
cc_vector = NULL;
}
ComputeTDPDCCAtom::~ComputeTDPDCCAtom()
{
memory->sfree(cc_vector);
}
void ComputeTDPDCCAtom::init()
{
int count = 0;
for (int i = 0; i < modify->ncompute; i++)
if (strcmp(modify->compute[i]->style,"cc_vector/atom") == 0) count++;
if (count > 1 && comm->me == 0)
error->warning(FLERR,"More than one compute cc_vector/atom");
}
void ComputeTDPDCCAtom::compute_peratom()
{
invoked_peratom = update->ntimestep;
if (atom->nmax > nmax) {
memory->sfree(cc_vector);
nmax = atom->nmax;
cc_vector = (double *) memory->smalloc(nmax*sizeof(double),"cc_vector/atom:cc_vector");
vector_atom = cc_vector;
}
double **cc = atom->cc;
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (int i = 0; i < nlocal; i++) {
if (mask[i] & groupbit) {
cc_vector[i] = cc[i][index-1];
}
else
cc_vector[i] = 0.0;
}
}
double ComputeTDPDCCAtom::memory_usage()
{
double bytes = nmax * sizeof(double);
return bytes;
}