git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12996 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2015-01-28 15:55:56 +00:00
parent 3eb045688b
commit 86daf16069
23 changed files with 149 additions and 54 deletions

View File

@ -28,8 +28,6 @@ FixStore::FixStore(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg)
{
if (narg != 5) error->all(FLERR,"Illegal fix store command");
create_attribute = 1;
// syntax: id group style 0/1 nvalue
// 0/1 flag = not-store or store values in restart file
@ -191,17 +189,3 @@ int FixStore::size_restart(int nlocal)
{
return nvalues+1;
}
/* ----------------------------------------------------------------------
initialize one atom's vector/array values, called when atom is created
value of 0.0 may not be desired value, but will be unitialized otherwise
e.g. by compute msd on group all
------------------------------------------------------------------------- */
void FixStore::set_arrays(int i)
{
if (vecflag)
vstore[i] = 0.0;
else
for (int m = 0; m < nvalues; m++) astore[i][m] = 0.0;
}