git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14789 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2016-03-28 15:04:09 +00:00
parent 1103448232
commit 7cea607190
5 changed files with 60 additions and 37 deletions

View File

@ -16,7 +16,7 @@
#include "compute_bond.h" #include "compute_bond.h"
#include "update.h" #include "update.h"
#include "force.h" #include "force.h"
#include "bond.h" #include "bond_hybrid.h"
#include "error.h" #include "error.h"
using namespace LAMMPS_NS; using namespace LAMMPS_NS;
@ -26,64 +26,55 @@ using namespace LAMMPS_NS;
ComputeBond::ComputeBond(LAMMPS *lmp, int narg, char **arg) : ComputeBond::ComputeBond(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg) Compute(lmp, narg, arg)
{ {
if (narg < 4 || narg > 5) error->all(FLERR,"Illegal compute bond command"); if (narg != 3) error->all(FLERR,"Illegal compute bond command");
if (igroup) error->all(FLERR,"Compute bond must use group all");
scalar_flag = 1; vector_flag = 1;
extscalar = 1; extvector = 1;
peflag = 1; peflag = 1;
timeflag = 1; timeflag = 1;
int n = strlen(arg[3]) + 1; // check if bond style hybrid exists
if (lmp->suffix) n += strlen(lmp->suffix) + 1;
bstyle = new char[n];
strcpy(bstyle,arg[3]);
// check if bond style with and without suffix exists bond = (BondHybrid *) force->bond_match("hybrid");
bond = force->bond_match(bstyle);
if (!bond && lmp->suffix) {
strcat(bstyle,"/");
strcat(bstyle,lmp->suffix);
bond = force->bond_match(bstyle);
}
if (!bond) if (!bond)
error->all(FLERR,"Unrecognized bond style in compute bond command"); error->all(FLERR,"Bond style for compute bond command is not hybrid");
size_vector = nsub = bond->nstyles;
vector = NULL;
emine = new double[nsub];
vector = new double[nsub];
} }
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
ComputeBond::~ComputeBond() ComputeBond::~ComputeBond()
{ {
delete [] bstyle; delete [] emine;
delete [] vector;
} }
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
void ComputeBond::init() void ComputeBond::init()
{ {
// recheck for bond style in case it has been deleted // recheck bond style in case it has been changed
bond = force->bond_match(bstyle);
bond = (BondHybrid *) force->bond_match("hybrid");
if (!bond) if (!bond)
error->all(FLERR,"Unrecognized bond style in compute bond command"); error->all(FLERR,"Bond style for compute bond command is not hybrid");
if (bond->nstyles != nsub)
error->all(FLERR,"Bond style for compute bond command has changed");
} }
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
double ComputeBond::compute_scalar() void ComputeBond::compute_vector()
{ {
invoked_scalar = update->ntimestep; invoked_vector = update->ntimestep;
if (update->eflag_global != invoked_scalar) if (update->eflag_global != invoked_vector)
error->all(FLERR,"Energy was not tallied on needed timestep"); error->all(FLERR,"Energy was not tallied on needed timestep");
double eng; for (int i = 0; i < nsub; i++)
eng = bond->energy; emine[i] = bond->styles[i]->energy;
MPI_Allreduce(&eng,&scalar,1,MPI_DOUBLE,MPI_SUM,world); MPI_Allreduce(emine,vector,nsub,MPI_DOUBLE,MPI_SUM,world);
return scalar;
} }

View File

@ -29,11 +29,12 @@ class ComputeBond : public Compute {
ComputeBond(class LAMMPS *, int, char **); ComputeBond(class LAMMPS *, int, char **);
~ComputeBond(); ~ComputeBond();
void init(); void init();
double compute_scalar(); void compute_vector();
private: private:
char *bstyle; int nsub;
class Bond *bond; class BondHybrid *bond;
double *emine;
}; };
} }

View File

@ -29,7 +29,6 @@ ComputePair::ComputePair(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg) Compute(lmp, narg, arg)
{ {
if (narg < 4 || narg > 5) error->all(FLERR,"Illegal compute pair command"); if (narg < 4 || narg > 5) error->all(FLERR,"Illegal compute pair command");
if (igroup) error->all(FLERR,"Compute pair must use group all");
scalar_flag = 1; scalar_flag = 1;
extscalar = 1; extscalar = 1;

View File

@ -389,6 +389,21 @@ Angle *Force::new_angle(const char *style, int trysuffix, int &sflag)
return NULL; return NULL;
} }
/* ----------------------------------------------------------------------
return ptr to current angle class or hybrid sub-class if matches style
------------------------------------------------------------------------- */
Angle *Force::angle_match(const char *style)
{
if (strcmp(angle_style,style) == 0) return angle;
else if (strcmp(angle_style,"hybrid") == 0) {
AngleHybrid *hybrid = (AngleHybrid *) angle;
for (int i = 0; i < hybrid->nstyles; i++)
if (strcmp(hybrid->keywords[i],style) == 0) return hybrid->styles[i];
}
return NULL;
}
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
create a dihedral style, called from input script or restart file create a dihedral style, called from input script or restart file
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
@ -455,6 +470,21 @@ Dihedral *Force::new_dihedral(const char *style, int trysuffix, int &sflag)
return NULL; return NULL;
} }
/* ----------------------------------------------------------------------
return ptr to current angle class or hybrid sub-class if matches style
------------------------------------------------------------------------- */
Dihedral *Force::dihedral_match(const char *style)
{
if (strcmp(dihedral_style,style) == 0) return dihedral;
else if (strcmp(dihedral_style,"hybrid") == 0) {
DihedralHybrid *hybrid = (DihedralHybrid *) dihedral;
for (int i = 0; i < hybrid->nstyles; i++)
if (strcmp(hybrid->keywords[i],style) == 0) return hybrid->styles[i];
}
return NULL;
}
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
create an improper style, called from input script or restart file create an improper style, called from input script or restart file
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */

View File

@ -89,9 +89,11 @@ class Force : protected Pointers {
void create_angle(const char *, int); void create_angle(const char *, int);
class Angle *new_angle(const char *, int, int &); class Angle *new_angle(const char *, int, int &);
class Angle *angle_match(const char *);
void create_dihedral(const char *, int); void create_dihedral(const char *, int);
class Dihedral *new_dihedral(const char *, int, int &); class Dihedral *new_dihedral(const char *, int, int &);
class Dihedral *dihedral_match(const char *);
void create_improper(const char *, int); void create_improper(const char *, int);
class Improper *new_improper(const char *, int, int &); class Improper *new_improper(const char *, int, int &);