mirror of https://github.com/lammps/lammps.git
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7192 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
f9847d8111
commit
895680bd32
|
@ -40,6 +40,7 @@ PairLineLJ::PairLineLJ(LAMMPS *lmp) : Pair(lmp)
|
|||
dnum = dfirst = NULL;
|
||||
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
|
|
@ -41,6 +41,7 @@ PairTriLJ::PairTriLJ(LAMMPS *lmp) : Pair(lmp)
|
|||
dnum = dfirst = NULL;
|
||||
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
|
|
@ -37,6 +37,8 @@ using namespace LAMMPS_NS;
|
|||
|
||||
PairADP::PairADP(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
|
||||
nmax = 0;
|
||||
rho = NULL;
|
||||
fp = NULL;
|
||||
|
|
|
@ -47,6 +47,7 @@ using namespace MathConst;
|
|||
PairComb::PairComb(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
one_coeff = 1;
|
||||
|
||||
nmax = 0;
|
||||
|
|
|
@ -36,6 +36,8 @@ using namespace LAMMPS_NS;
|
|||
|
||||
PairEAM::PairEAM(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
|
||||
nmax = 0;
|
||||
rho = NULL;
|
||||
fp = NULL;
|
||||
|
|
|
@ -37,6 +37,7 @@ using namespace LAMMPS_NS;
|
|||
PairEIM::PairEIM(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
one_coeff = 1;
|
||||
|
||||
setfl = NULL;
|
||||
|
|
|
@ -41,6 +41,7 @@ using namespace LAMMPS_NS;
|
|||
PairSW::PairSW(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
one_coeff = 1;
|
||||
|
||||
nelements = 0;
|
||||
|
|
|
@ -42,6 +42,7 @@ using namespace MathConst;
|
|||
PairTersoff::PairTersoff(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
one_coeff = 1;
|
||||
|
||||
nelements = 0;
|
||||
|
|
|
@ -45,6 +45,7 @@ PairHbondDreidingLJ::PairHbondDreidingLJ(LAMMPS *lmp) : Pair(lmp)
|
|||
// due to using map() to find bonded H atoms which are not near donor atom
|
||||
|
||||
no_virial_fdotr_compute = 1;
|
||||
restartinfo = 0;
|
||||
|
||||
nparams = maxparam = 0;
|
||||
params = NULL;
|
||||
|
|
Loading…
Reference in New Issue