#include "compute_edpd_temp_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;
ComputeEDPDTempAtom::ComputeEDPDTempAtom(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg)
{
if (narg != 3) error->all(FLERR,"Number of arguments for compute edpd/temp/atom command != 3");
if (atom->edpd_flag != 1) error->all(FLERR,"compute edpd/temp/atom command requires atom_style with temperature (e.g. edpd)");
peratom_flag = 1;
size_peratom_cols = 0;
nmax = 0;
temp_vector = NULL;
}
ComputeEDPDTempAtom::~ComputeEDPDTempAtom()
{
memory->sfree(temp_vector);
}
void ComputeEDPDTempAtom::init()
{
int count = 0;
for (int i = 0; i < modify->ncompute; i++)
if (strcmp(modify->compute[i]->style,"temp_vector/atom") == 0) count++;
if (count > 1 && comm->me == 0)
error->warning(FLERR,"More than one compute temp_vector/atom");
}
void ComputeEDPDTempAtom::compute_peratom()
{
invoked_peratom = update->ntimestep;
if (atom->nmax > nmax) {
memory->sfree(temp_vector);
nmax = atom->nmax;
temp_vector = (double *) memory->smalloc(nmax*sizeof(double),"temp_vector/atom:temp_vector");
vector_atom = temp_vector;
}
double *edpd_temp = atom->edpd_temp;
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (int i = 0; i < nlocal; i++) {
if (mask[i] & groupbit) {
temp_vector[i] = edpd_temp[i];
}
else {
temp_vector[i] = 0.0;
}
}
}
double ComputeEDPDTempAtom::memory_usage()
{
double bytes = nmax * sizeof(double);
return bytes;
}