refactor group access, enable and apply clang-format
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
// clang-format off
|
||||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
https://www.lammps.org/, Sandia National Laboratories
|
||||
@ -40,10 +39,10 @@ using namespace FixConst;
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
FixEfield::FixEfield(LAMMPS *lmp, int narg, char **arg) :
|
||||
Fix(lmp, narg, arg), xstr(nullptr), ystr(nullptr), zstr(nullptr),
|
||||
estr(nullptr), idregion(nullptr), efield(nullptr)
|
||||
Fix(lmp, narg, arg), xstr(nullptr), ystr(nullptr), zstr(nullptr), estr(nullptr),
|
||||
idregion(nullptr), region(nullptr), efield(nullptr)
|
||||
{
|
||||
if (narg < 6) error->all(FLERR,"Illegal fix efield command");
|
||||
if (narg < 6) error->all(FLERR, "Illegal fix efield command");
|
||||
|
||||
dynamic_group_allow = 1;
|
||||
vector_flag = 1;
|
||||
@ -60,56 +59,53 @@ FixEfield::FixEfield(LAMMPS *lmp, int narg, char **arg) :
|
||||
qe2f = force->qe2f;
|
||||
xstr = ystr = zstr = nullptr;
|
||||
|
||||
if (utils::strmatch(arg[3],"^v_")) {
|
||||
xstr = utils::strdup(arg[3]+2);
|
||||
if (utils::strmatch(arg[3], "^v_")) {
|
||||
xstr = utils::strdup(arg[3] + 2);
|
||||
} else {
|
||||
ex = qe2f * utils::numeric(FLERR,arg[3],false,lmp);
|
||||
ex = qe2f * utils::numeric(FLERR, arg[3], false, lmp);
|
||||
xstyle = CONSTANT;
|
||||
}
|
||||
|
||||
if (utils::strmatch(arg[4],"^v_")) {
|
||||
ystr = utils::strdup(arg[4]+2);
|
||||
if (utils::strmatch(arg[4], "^v_")) {
|
||||
ystr = utils::strdup(arg[4] + 2);
|
||||
} else {
|
||||
ey = qe2f * utils::numeric(FLERR,arg[4],false,lmp);
|
||||
ey = qe2f * utils::numeric(FLERR, arg[4], false, lmp);
|
||||
ystyle = CONSTANT;
|
||||
}
|
||||
|
||||
if (utils::strmatch(arg[5],"^v_")) {
|
||||
zstr = utils::strdup(arg[5]+2);
|
||||
if (utils::strmatch(arg[5], "^v_")) {
|
||||
zstr = utils::strdup(arg[5] + 2);
|
||||
} else {
|
||||
ez = qe2f * utils::numeric(FLERR,arg[5],false,lmp);
|
||||
ez = qe2f * utils::numeric(FLERR, arg[5], false, lmp);
|
||||
zstyle = CONSTANT;
|
||||
}
|
||||
|
||||
// optional args
|
||||
|
||||
iregion = -1;
|
||||
idregion = nullptr;
|
||||
estr = nullptr;
|
||||
|
||||
int iarg = 6;
|
||||
while (iarg < narg) {
|
||||
if (strcmp(arg[iarg],"region") == 0) {
|
||||
if (iarg+2 > narg) error->all(FLERR,"Illegal fix efield command");
|
||||
iregion = domain->find_region(arg[iarg+1]);
|
||||
if (iregion == -1)
|
||||
error->all(FLERR,"Region ID for fix efield does not exist");
|
||||
idregion = utils::strdup(arg[iarg+1]);
|
||||
if (strcmp(arg[iarg], "region") == 0) {
|
||||
if (iarg + 2 > narg) error->all(FLERR, "Illegal fix efield command");
|
||||
region = domain->get_region_by_id(arg[iarg + 1]);
|
||||
if (!region) error->all(FLERR, "Region {} for fix efield does not exist", arg[iarg + 1]);
|
||||
idregion = utils::strdup(arg[iarg + 1]);
|
||||
iarg += 2;
|
||||
} else if (strcmp(arg[iarg],"energy") == 0) {
|
||||
if (iarg+2 > narg) error->all(FLERR,"Illegal fix efield command");
|
||||
if (utils::strmatch(arg[iarg+1],"^v_")) {
|
||||
estr = utils::strdup(arg[iarg+1]+2);
|
||||
} else error->all(FLERR,"Illegal fix efield command");
|
||||
} else if (strcmp(arg[iarg], "energy") == 0) {
|
||||
if (iarg + 2 > narg) error->all(FLERR, "Illegal fix efield command");
|
||||
if (utils::strmatch(arg[iarg + 1], "^v_")) {
|
||||
estr = utils::strdup(arg[iarg + 1] + 2);
|
||||
} else
|
||||
error->all(FLERR, "Illegal fix efield command");
|
||||
iarg += 2;
|
||||
} else error->all(FLERR,"Illegal fix efield command");
|
||||
} else
|
||||
error->all(FLERR, "Illegal fix efield command");
|
||||
}
|
||||
|
||||
force_flag = 0;
|
||||
fsum[0] = fsum[1] = fsum[2] = fsum[3] = 0.0;
|
||||
|
||||
maxatom = atom->nmax;
|
||||
memory->create(efield,maxatom,4,"efield:efield");
|
||||
memory->create(efield, maxatom, 4, "efield:efield");
|
||||
|
||||
maxatom_energy = 0;
|
||||
}
|
||||
@ -118,11 +114,11 @@ FixEfield::FixEfield(LAMMPS *lmp, int narg, char **arg) :
|
||||
|
||||
FixEfield::~FixEfield()
|
||||
{
|
||||
delete [] xstr;
|
||||
delete [] ystr;
|
||||
delete [] zstr;
|
||||
delete [] estr;
|
||||
delete [] idregion;
|
||||
delete[] xstr;
|
||||
delete[] ystr;
|
||||
delete[] zstr;
|
||||
delete[] estr;
|
||||
delete[] idregion;
|
||||
memory->destroy(efield);
|
||||
}
|
||||
|
||||
@ -144,74 +140,78 @@ void FixEfield::init()
|
||||
qflag = muflag = 0;
|
||||
if (atom->q_flag) qflag = 1;
|
||||
if (atom->mu_flag && atom->torque_flag) muflag = 1;
|
||||
if (!qflag && !muflag)
|
||||
error->all(FLERR,"Fix efield requires atom attribute q or mu");
|
||||
if (!qflag && !muflag) error->all(FLERR, "Fix efield requires atom attribute q or mu");
|
||||
|
||||
// check variables
|
||||
|
||||
if (xstr) {
|
||||
xvar = input->variable->find(xstr);
|
||||
if (xvar < 0)
|
||||
error->all(FLERR,"Variable name for fix efield does not exist");
|
||||
if (input->variable->equalstyle(xvar)) xstyle = EQUAL;
|
||||
else if (input->variable->atomstyle(xvar)) xstyle = ATOM;
|
||||
else error->all(FLERR,"Variable for fix efield is invalid style");
|
||||
if (xvar < 0) error->all(FLERR, "Variable {} for fix efield does not exist", xstr);
|
||||
if (input->variable->equalstyle(xvar))
|
||||
xstyle = EQUAL;
|
||||
else if (input->variable->atomstyle(xvar))
|
||||
xstyle = ATOM;
|
||||
else
|
||||
error->all(FLERR, "Variable {} for fix efield is invalid style", xstr);
|
||||
}
|
||||
if (ystr) {
|
||||
yvar = input->variable->find(ystr);
|
||||
if (yvar < 0)
|
||||
error->all(FLERR,"Variable name for fix efield does not exist");
|
||||
if (input->variable->equalstyle(yvar)) ystyle = EQUAL;
|
||||
else if (input->variable->atomstyle(yvar)) ystyle = ATOM;
|
||||
else error->all(FLERR,"Variable for fix efield is invalid style");
|
||||
if (yvar < 0) error->all(FLERR, "Variable {} for fix efield does not exist", ystr);
|
||||
if (input->variable->equalstyle(yvar))
|
||||
ystyle = EQUAL;
|
||||
else if (input->variable->atomstyle(yvar))
|
||||
ystyle = ATOM;
|
||||
else
|
||||
error->all(FLERR, "Variable {} for fix efield is invalid style", ystr);
|
||||
}
|
||||
if (zstr) {
|
||||
zvar = input->variable->find(zstr);
|
||||
if (zvar < 0)
|
||||
error->all(FLERR,"Variable name for fix efield does not exist");
|
||||
if (input->variable->equalstyle(zvar)) zstyle = EQUAL;
|
||||
else if (input->variable->atomstyle(zvar)) zstyle = ATOM;
|
||||
else error->all(FLERR,"Variable for fix efield is invalid style");
|
||||
if (zvar < 0) error->all(FLERR, "Variable {} for fix efield does not exist", zstr);
|
||||
if (input->variable->equalstyle(zvar))
|
||||
zstyle = EQUAL;
|
||||
else if (input->variable->atomstyle(zvar))
|
||||
zstyle = ATOM;
|
||||
else
|
||||
error->all(FLERR, "Variable {} for fix efield is invalid style", zstr);
|
||||
}
|
||||
if (estr) {
|
||||
evar = input->variable->find(estr);
|
||||
if (evar < 0)
|
||||
error->all(FLERR,"Variable name for fix efield does not exist");
|
||||
if (input->variable->atomstyle(evar)) estyle = ATOM;
|
||||
else error->all(FLERR,"Variable for fix efield is invalid style");
|
||||
} else estyle = NONE;
|
||||
|
||||
if (evar < 0) error->all(FLERR, "Variable {} for fix efield does not exist", estr);
|
||||
if (input->variable->atomstyle(evar))
|
||||
estyle = ATOM;
|
||||
else
|
||||
error->all(FLERR, "Variable {} for fix efield is invalid style", estr);
|
||||
} else
|
||||
estyle = NONE;
|
||||
|
||||
// set index and check validity of region
|
||||
|
||||
if (iregion >= 0) {
|
||||
iregion = domain->find_region(idregion);
|
||||
if (iregion == -1)
|
||||
error->all(FLERR,"Region ID for fix aveforce does not exist");
|
||||
if (idregion) {
|
||||
region = domain->get_region_by_id(idregion);
|
||||
if (!region) error->all(FLERR, "Region {} for fix aveforce does not exist", idregion);
|
||||
}
|
||||
|
||||
if (xstyle == ATOM || ystyle == ATOM || zstyle == ATOM)
|
||||
varflag = ATOM;
|
||||
else if (xstyle == EQUAL || ystyle == EQUAL || zstyle == EQUAL)
|
||||
varflag = EQUAL;
|
||||
else varflag = CONSTANT;
|
||||
else
|
||||
varflag = CONSTANT;
|
||||
|
||||
if (muflag && varflag == ATOM)
|
||||
error->all(FLERR,"Fix efield with dipoles cannot use atom-style variables");
|
||||
error->all(FLERR, "Fix efield with dipoles cannot use atom-style variables");
|
||||
|
||||
if (muflag && update->whichflag == 2 && comm->me == 0)
|
||||
error->warning(FLERR, "The minimizer does not re-orient dipoles when using fix efield");
|
||||
|
||||
if (varflag == CONSTANT && estyle != NONE)
|
||||
error->all(FLERR,"Cannot use variable energy with "
|
||||
"constant efield in fix efield");
|
||||
if ((varflag == EQUAL || varflag == ATOM) &&
|
||||
update->whichflag == 2 && estyle == NONE)
|
||||
error->all(FLERR,"Must use variable energy with fix efield");
|
||||
error->all(FLERR, "Cannot use variable energy with constant efield in fix efield");
|
||||
if ((varflag == EQUAL || varflag == ATOM) && update->whichflag == 2 && estyle == NONE)
|
||||
error->all(FLERR, "Must use variable energy with fix efield");
|
||||
|
||||
if (utils::strmatch(update->integrate_style,"^respa")) {
|
||||
ilevel_respa = (dynamic_cast<Respa *>( update->integrate))->nlevels-1;
|
||||
if (respa_level >= 0) ilevel_respa = MIN(respa_level,ilevel_respa);
|
||||
if (utils::strmatch(update->integrate_style, "^respa")) {
|
||||
ilevel_respa = (dynamic_cast<Respa *>(update->integrate))->nlevels - 1;
|
||||
if (respa_level >= 0) ilevel_respa = MIN(respa_level, ilevel_respa);
|
||||
}
|
||||
}
|
||||
|
||||
@ -219,12 +219,13 @@ void FixEfield::init()
|
||||
|
||||
void FixEfield::setup(int vflag)
|
||||
{
|
||||
if (utils::strmatch(update->integrate_style,"^verlet"))
|
||||
if (utils::strmatch(update->integrate_style, "^respa")) {
|
||||
auto respa = dynamic_cast<Respa *>(update->integrate);
|
||||
respa->copy_flevel_f(ilevel_respa);
|
||||
post_force_respa(vflag, ilevel_respa, 0);
|
||||
respa->copy_f_flevel(ilevel_respa);
|
||||
} else {
|
||||
post_force(vflag);
|
||||
else {
|
||||
(dynamic_cast<Respa *>( update->integrate))->copy_flevel_f(ilevel_respa);
|
||||
post_force_respa(vflag,ilevel_respa,0);
|
||||
(dynamic_cast<Respa *>( update->integrate))->copy_f_flevel(ilevel_respa);
|
||||
}
|
||||
}
|
||||
|
||||
@ -256,16 +257,12 @@ void FixEfield::post_force(int vflag)
|
||||
if (varflag == ATOM && atom->nmax > maxatom) {
|
||||
maxatom = atom->nmax;
|
||||
memory->destroy(efield);
|
||||
memory->create(efield,maxatom,4,"efield:efield");
|
||||
memory->create(efield, maxatom, 4, "efield:efield");
|
||||
}
|
||||
|
||||
// update region if necessary
|
||||
|
||||
Region *region = nullptr;
|
||||
if (iregion >= 0) {
|
||||
region = domain->regions[iregion];
|
||||
region->prematch();
|
||||
}
|
||||
if (region) region->prematch();
|
||||
|
||||
// fsum[0] = "potential energy" for added force
|
||||
// fsum[123] = extra force added to atoms
|
||||
@ -274,7 +271,7 @@ void FixEfield::post_force(int vflag)
|
||||
force_flag = 0;
|
||||
|
||||
double **x = atom->x;
|
||||
double fx,fy,fz;
|
||||
double fx, fy, fz;
|
||||
double v[6];
|
||||
|
||||
// constant efield
|
||||
@ -288,27 +285,27 @@ void FixEfield::post_force(int vflag)
|
||||
if (qflag) {
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
if (region && !region->match(x[i][0],x[i][1],x[i][2])) continue;
|
||||
fx = q[i]*ex;
|
||||
fy = q[i]*ey;
|
||||
fz = q[i]*ez;
|
||||
if (region && !region->match(x[i][0], x[i][1], x[i][2])) continue;
|
||||
fx = q[i] * ex;
|
||||
fy = q[i] * ey;
|
||||
fz = q[i] * ez;
|
||||
f[i][0] += fx;
|
||||
f[i][1] += fy;
|
||||
f[i][2] += fz;
|
||||
|
||||
domain->unmap(x[i],image[i],unwrap);
|
||||
fsum[0] -= fx*unwrap[0]+fy*unwrap[1]+fz*unwrap[2];
|
||||
domain->unmap(x[i], image[i], unwrap);
|
||||
fsum[0] -= fx * unwrap[0] + fy * unwrap[1] + fz * unwrap[2];
|
||||
fsum[1] += fx;
|
||||
fsum[2] += fy;
|
||||
fsum[3] += fz;
|
||||
if (evflag) {
|
||||
v[0] = fx*unwrap[0];
|
||||
v[1] = fy*unwrap[1];
|
||||
v[2] = fz*unwrap[2];
|
||||
v[3] = fx*unwrap[1];
|
||||
v[4] = fx*unwrap[2];
|
||||
v[5] = fy*unwrap[2];
|
||||
v_tally(i,v);
|
||||
v[0] = fx * unwrap[0];
|
||||
v[1] = fy * unwrap[1];
|
||||
v[2] = fz * unwrap[2];
|
||||
v[3] = fx * unwrap[1];
|
||||
v[4] = fx * unwrap[2];
|
||||
v[5] = fy * unwrap[2];
|
||||
v_tally(i, v);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -319,38 +316,43 @@ void FixEfield::post_force(int vflag)
|
||||
if (muflag) {
|
||||
double **mu = atom->mu;
|
||||
double **t = atom->torque;
|
||||
double tx,ty,tz;
|
||||
double tx, ty, tz;
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
if (region && !region->match(x[i][0],x[i][1],x[i][2])) continue;
|
||||
tx = ez*mu[i][1] - ey*mu[i][2];
|
||||
ty = ex*mu[i][2] - ez*mu[i][0];
|
||||
tz = ey*mu[i][0] - ex*mu[i][1];
|
||||
if (region && !region->match(x[i][0], x[i][1], x[i][2])) continue;
|
||||
tx = ez * mu[i][1] - ey * mu[i][2];
|
||||
ty = ex * mu[i][2] - ez * mu[i][0];
|
||||
tz = ey * mu[i][0] - ex * mu[i][1];
|
||||
t[i][0] += tx;
|
||||
t[i][1] += ty;
|
||||
t[i][2] += tz;
|
||||
fsum[0] -= mu[i][0]*ex + mu[i][1]*ey + mu[i][2]*ez;
|
||||
fsum[0] -= mu[i][0] * ex + mu[i][1] * ey + mu[i][2] * ez;
|
||||
}
|
||||
}
|
||||
|
||||
// variable efield, wrap with clear/add
|
||||
// potential energy = evar if defined, else 0.0
|
||||
// variable efield, wrap with clear/add
|
||||
// potential energy = evar if defined, else 0.0
|
||||
|
||||
} else {
|
||||
|
||||
modify->clearstep_compute();
|
||||
|
||||
if (xstyle == EQUAL) ex = qe2f * input->variable->compute_equal(xvar);
|
||||
else if (xstyle == ATOM)
|
||||
input->variable->compute_atom(xvar,igroup,&efield[0][0],4,0);
|
||||
if (ystyle == EQUAL) ey = qe2f * input->variable->compute_equal(yvar);
|
||||
else if (ystyle == ATOM)
|
||||
input->variable->compute_atom(yvar,igroup,&efield[0][1],4,0);
|
||||
if (zstyle == EQUAL) ez = qe2f * input->variable->compute_equal(zvar);
|
||||
else if (zstyle == ATOM)
|
||||
input->variable->compute_atom(zvar,igroup,&efield[0][2],4,0);
|
||||
if (estyle == ATOM)
|
||||
input->variable->compute_atom(evar,igroup,&efield[0][3],4,0);
|
||||
if (xstyle == EQUAL) {
|
||||
ex = qe2f * input->variable->compute_equal(xvar);
|
||||
} else if (xstyle == ATOM) {
|
||||
input->variable->compute_atom(xvar, igroup, &efield[0][0], 4, 0);
|
||||
}
|
||||
if (ystyle == EQUAL) {
|
||||
ey = qe2f * input->variable->compute_equal(yvar);
|
||||
} else if (ystyle == ATOM) {
|
||||
input->variable->compute_atom(yvar, igroup, &efield[0][1], 4, 0);
|
||||
}
|
||||
if (zstyle == EQUAL) {
|
||||
ez = qe2f * input->variable->compute_equal(zvar);
|
||||
} else if (zstyle == ATOM) {
|
||||
input->variable->compute_atom(zvar, igroup, &efield[0][2], 4, 0);
|
||||
}
|
||||
if (estyle == ATOM) input->variable->compute_atom(evar, igroup, &efield[0][3], 4, 0);
|
||||
|
||||
modify->addstep_compute(update->ntimestep + 1);
|
||||
|
||||
@ -360,17 +362,26 @@ void FixEfield::post_force(int vflag)
|
||||
if (qflag) {
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
if (region && !region->match(x[i][0],x[i][1],x[i][2])) continue;
|
||||
if (xstyle == ATOM) fx = qe2f * q[i]*efield[i][0];
|
||||
else fx = q[i]*ex;
|
||||
if (region && !region->match(x[i][0], x[i][1], x[i][2])) continue;
|
||||
if (xstyle == ATOM) {
|
||||
fx = qe2f * q[i] * efield[i][0];
|
||||
} else {
|
||||
fx = q[i] * ex;
|
||||
}
|
||||
f[i][0] += fx;
|
||||
fsum[1] += fx;
|
||||
if (ystyle == ATOM) fy = qe2f * q[i]*efield[i][1];
|
||||
else fy = q[i]*ey;
|
||||
if (ystyle == ATOM) {
|
||||
fy = qe2f * q[i] * efield[i][1];
|
||||
} else {
|
||||
fy = q[i] * ey;
|
||||
}
|
||||
f[i][1] += fy;
|
||||
fsum[2] += fy;
|
||||
if (zstyle == ATOM) fz = qe2f * q[i]*efield[i][2];
|
||||
else fz = q[i]*ez;
|
||||
if (zstyle == ATOM) {
|
||||
fz = qe2f * q[i] * efield[i][2];
|
||||
} else {
|
||||
fz = q[i] * ez;
|
||||
}
|
||||
f[i][2] += fz;
|
||||
fsum[3] += fz;
|
||||
if (estyle == ATOM) fsum[0] += efield[0][3];
|
||||
@ -383,13 +394,13 @@ void FixEfield::post_force(int vflag)
|
||||
if (muflag) {
|
||||
double **mu = atom->mu;
|
||||
double **t = atom->torque;
|
||||
double tx,ty,tz;
|
||||
double tx, ty, tz;
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
if (region && !region->match(x[i][0],x[i][1],x[i][2])) continue;
|
||||
tx = ez*mu[i][1] - ey*mu[i][2];
|
||||
ty = ex*mu[i][2] - ez*mu[i][0];
|
||||
tz = ey*mu[i][0] - ex*mu[i][1];
|
||||
if (region && !region->match(x[i][0], x[i][1], x[i][2])) continue;
|
||||
tx = ez * mu[i][1] - ey * mu[i][2];
|
||||
ty = ex * mu[i][2] - ez * mu[i][0];
|
||||
tz = ey * mu[i][0] - ex * mu[i][1];
|
||||
t[i][0] += tx;
|
||||
t[i][1] += ty;
|
||||
t[i][2] += tz;
|
||||
@ -419,7 +430,7 @@ void FixEfield::min_post_force(int vflag)
|
||||
double FixEfield::memory_usage()
|
||||
{
|
||||
double bytes = 0.0;
|
||||
if (varflag == ATOM) bytes = atom->nmax*4 * sizeof(double);
|
||||
if (varflag == ATOM) bytes = atom->nmax * 4 * sizeof(double);
|
||||
return bytes;
|
||||
}
|
||||
|
||||
@ -430,7 +441,7 @@ double FixEfield::memory_usage()
|
||||
double FixEfield::compute_scalar()
|
||||
{
|
||||
if (force_flag == 0) {
|
||||
MPI_Allreduce(fsum,fsum_all,4,MPI_DOUBLE,MPI_SUM,world);
|
||||
MPI_Allreduce(fsum, fsum_all, 4, MPI_DOUBLE, MPI_SUM, world);
|
||||
force_flag = 1;
|
||||
}
|
||||
return fsum_all[0];
|
||||
@ -443,9 +454,8 @@ double FixEfield::compute_scalar()
|
||||
double FixEfield::compute_vector(int n)
|
||||
{
|
||||
if (force_flag == 0) {
|
||||
MPI_Allreduce(fsum,fsum_all,4,MPI_DOUBLE,MPI_SUM,world);
|
||||
MPI_Allreduce(fsum, fsum_all, 4, MPI_DOUBLE, MPI_SUM, world);
|
||||
force_flag = 1;
|
||||
}
|
||||
return fsum_all[n+1];
|
||||
return fsum_all[n + 1];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user