changes to files with THERMO_ENERGY mask in standard packages

This commit is contained in:
Plimpton
2021-01-21 13:56:50 -07:00
parent dbb923e1b2
commit b5525a19bc
16 changed files with 30 additions and 66 deletions

View File

@ -49,6 +49,7 @@ FixEfield::FixEfield(LAMMPS *lmp, int narg, char **arg) :
vector_flag = 1;
scalar_flag = 1;
size_vector = 3;
energy_global_flag = 1;
global_freq = 1;
extvector = 1;
extscalar = 1;
@ -138,7 +139,6 @@ FixEfield::~FixEfield()
int FixEfield::setmask()
{
int mask = 0;
mask |= THERMO_ENERGY;
mask |= POST_FORCE;
mask |= POST_FORCE_RESPA;
mask |= MIN_POST_FORCE;

View File

@ -67,7 +67,7 @@ FixOrientBCC::FixOrientBCC(LAMMPS *lmp, int narg, char **arg) :
scalar_flag = 1;
global_freq = 1;
extscalar = 1;
energy_global_flag = 1;
peratom_flag = 1;
size_peratom_cols = 2;
peratom_freq = 1;
@ -202,7 +202,6 @@ int FixOrientBCC::setmask()
{
int mask = 0;
mask |= POST_FORCE;
mask |= THERMO_ENERGY;
mask |= POST_FORCE_RESPA;
return mask;
}

View File

@ -65,7 +65,7 @@ FixOrientFCC::FixOrientFCC(LAMMPS *lmp, int narg, char **arg) :
scalar_flag = 1;
global_freq = 1;
extscalar = 1;
energy_global_flag = 1;
peratom_flag = 1;
size_peratom_cols = 2;
peratom_freq = 1;
@ -200,7 +200,6 @@ int FixOrientFCC::setmask()
{
int mask = 0;
mask |= POST_FORCE;
mask |= THERMO_ENERGY;
mask |= POST_FORCE_RESPA;
return mask;
}