git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7191 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -46,6 +46,7 @@ char *keywords[] = {"Ec","alpha","rho0","delta","lattce",
|
|||||||
PairMEAM::PairMEAM(LAMMPS *lmp) : Pair(lmp)
|
PairMEAM::PairMEAM(LAMMPS *lmp) : Pair(lmp)
|
||||||
{
|
{
|
||||||
single_enable = 0;
|
single_enable = 0;
|
||||||
|
restartinfo = 0;
|
||||||
one_coeff = 1;
|
one_coeff = 1;
|
||||||
|
|
||||||
nmax = 0;
|
nmax = 0;
|
||||||
|
|||||||
@ -52,6 +52,8 @@ using namespace LAMMPS_NS;
|
|||||||
PairCDEAM::PairCDEAM(LAMMPS *lmp, int _cdeamVersion) : PairEAM(lmp), PairEAMAlloy(lmp), cdeamVersion(_cdeamVersion)
|
PairCDEAM::PairCDEAM(LAMMPS *lmp, int _cdeamVersion) : PairEAM(lmp), PairEAMAlloy(lmp), cdeamVersion(_cdeamVersion)
|
||||||
{
|
{
|
||||||
single_enable = 0;
|
single_enable = 0;
|
||||||
|
restartinfo = 0;
|
||||||
|
|
||||||
rhoB = NULL;
|
rhoB = NULL;
|
||||||
D_values = NULL;
|
D_values = NULL;
|
||||||
hcoeff = NULL;
|
hcoeff = NULL;
|
||||||
|
|||||||
@ -46,6 +46,7 @@ using namespace LAMMPS_NS;
|
|||||||
PairEDIP::PairEDIP(LAMMPS *lmp) : Pair(lmp)
|
PairEDIP::PairEDIP(LAMMPS *lmp) : Pair(lmp)
|
||||||
{
|
{
|
||||||
single_enable = 0;
|
single_enable = 0;
|
||||||
|
restartinfo = 0;
|
||||||
one_coeff = 1;
|
one_coeff = 1;
|
||||||
|
|
||||||
nelements = 0;
|
nelements = 0;
|
||||||
|
|||||||
@ -54,6 +54,10 @@ using namespace LAMMPS_NS;
|
|||||||
|
|
||||||
PairReaxC::PairReaxC(LAMMPS *lmp) : Pair(lmp)
|
PairReaxC::PairReaxC(LAMMPS *lmp) : Pair(lmp)
|
||||||
{
|
{
|
||||||
|
single_enable = 0;
|
||||||
|
restartinfo = 0;
|
||||||
|
one_coeff = 1;
|
||||||
|
|
||||||
system = (reax_system *)
|
system = (reax_system *)
|
||||||
memory->smalloc(sizeof(reax_system),"reax:system");
|
memory->smalloc(sizeof(reax_system),"reax:system");
|
||||||
control = (control_params *)
|
control = (control_params *)
|
||||||
|
|||||||
Reference in New Issue
Block a user