#include "compute_meso_rho_atom.h"
#include <cstring>
#include "atom.h"
#include "update.h"
#include "modify.h"
#include "comm.h"
#include "memory.h"
#include "error.h"
using namespace LAMMPS_NS;
ComputeMesoRhoAtom::ComputeMesoRhoAtom(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg)
{
if (narg != 3) error->all(FLERR,"Illegal compute meso/rho/atom command");
if (atom->rho_flag != 1) error->all(FLERR,"compute meso/rho/atom command requires atom_style with density (e.g. meso)");
peratom_flag = 1;
size_peratom_cols = 0;
nmax = 0;
rhoVector = NULL;
}
ComputeMesoRhoAtom::~ComputeMesoRhoAtom()
{
memory->sfree(rhoVector);
}
void ComputeMesoRhoAtom::init()
{
int count = 0;
for (int i = 0; i < modify->ncompute; i++)
if (strcmp(modify->compute[i]->style,"rhoVector/atom") == 0) count++;
if (count > 1 && comm->me == 0)
error->warning(FLERR,"More than one compute rhoVector/atom");
}
void ComputeMesoRhoAtom::compute_peratom()
{
invoked_peratom = update->ntimestep;
if (atom->nmax > nmax) {
memory->sfree(rhoVector);
nmax = atom->nmax;
rhoVector = (double *) memory->smalloc(nmax*sizeof(double),"atom:rhoVector");
vector_atom = rhoVector;
}
double *rho = atom->rho;
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (int i = 0; i < nlocal; i++) {
if (mask[i] & groupbit) {
rhoVector[i] = rho[i];
}
else {
rhoVector[i] = 0.0;
}
}
}
double ComputeMesoRhoAtom::memory_usage()
{
double bytes = nmax * sizeof(double);
return bytes;
}