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