git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13088 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -60,7 +60,8 @@ ComputeStressAtom::ComputeStressAtom(LAMMPS *lmp, int narg, char **arg) :
|
||||
error->all(FLERR,"Could not find compute stress/atom temperature ID");
|
||||
if (modify->compute[icompute]->tempflag == 0)
|
||||
error->all(FLERR,
|
||||
"Compute stress/atom temperature ID does not compute temperature");
|
||||
"Compute stress/atom temperature ID does not "
|
||||
"compute temperature");
|
||||
}
|
||||
|
||||
// process optional args
|
||||
|
||||
@ -43,6 +43,8 @@ FixAveAtom::FixAveAtom(LAMMPS *lmp, int narg, char **arg) :
|
||||
nrepeat = force->inumeric(FLERR,arg[4]);
|
||||
peratom_freq = force->inumeric(FLERR,arg[5]);
|
||||
|
||||
time_depend = 1;
|
||||
|
||||
// parse remaining values
|
||||
|
||||
which = new int[narg-6];
|
||||
|
||||
@ -55,6 +55,7 @@ FixAveCorrelate::FixAveCorrelate(LAMMPS * lmp, int narg, char **arg):
|
||||
nfreq = force->inumeric(FLERR,arg[5]);
|
||||
|
||||
global_freq = nfreq;
|
||||
time_depend = 1;
|
||||
|
||||
// parse values until one isn't recognized
|
||||
|
||||
|
||||
@ -62,6 +62,7 @@ FixAveHisto::FixAveHisto(LAMMPS *lmp, int narg, char **arg) :
|
||||
array_flag = 1;
|
||||
size_array_cols = 3;
|
||||
extarray = 0;
|
||||
time_depend = 1;
|
||||
|
||||
lo = force->numeric(FLERR,arg[6]);
|
||||
hi = force->numeric(FLERR,arg[7]);
|
||||
|
||||
@ -59,6 +59,7 @@ FixAveSpatial::FixAveSpatial(LAMMPS *lmp, int narg, char **arg) :
|
||||
|
||||
global_freq = nfreq;
|
||||
no_change_box = 1;
|
||||
time_depend = 1;
|
||||
|
||||
ndim = 0;
|
||||
int iarg = 6;
|
||||
|
||||
@ -54,6 +54,7 @@ FixAveTime::FixAveTime(LAMMPS *lmp, int narg, char **arg) :
|
||||
nfreq = force->inumeric(FLERR,arg[5]);
|
||||
|
||||
global_freq = nfreq;
|
||||
time_depend = 1;
|
||||
|
||||
// scan values to count them
|
||||
// then read options so know mode = SCALAR/VECTOR before re-reading values
|
||||
|
||||
@ -129,7 +129,8 @@ void FixRecenter::init()
|
||||
else if ((modify->fmask[i] & INITIAL_INTEGRATE) && after) flag = 1;
|
||||
}
|
||||
if (flag && comm->me == 0)
|
||||
error->warning(FLERR,"Fix recenter should come after all other integration fixes");
|
||||
error->warning(FLERR,"Fix recenter should come after all other "
|
||||
"integration fixes");
|
||||
|
||||
masstotal = group->mass(igroup);
|
||||
|
||||
|
||||
@ -429,7 +429,7 @@ void Update::reset_timestep(bigint newstep)
|
||||
atimestep = ntimestep;
|
||||
|
||||
// trigger reset of timestep for output and for fixes that require it
|
||||
// do not allow any timestep-dependent fixes to be defined
|
||||
// do not allow any timestep-dependent fixes to be already defined
|
||||
|
||||
output->reset_timestep(ntimestep);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user