forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9009 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
e9fa893b1c
commit
dba890a5af
|
@ -120,7 +120,7 @@ double ComputeTempRotate::compute_scalar()
|
|||
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
domain->unmap(x[i],image[i],unwrap)
|
||||
domain->unmap(x[i],image[i],unwrap);
|
||||
dx = unwrap[0] - xcm[0];
|
||||
dy = unwrap[1] - xcm[1];
|
||||
dz = unwrap[2] - xcm[2];
|
||||
|
@ -182,7 +182,7 @@ void ComputeTempRotate::compute_vector()
|
|||
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
domain->unmap(x[i],image[i],unwrap)
|
||||
domain->unmap(x[i],image[i],unwrap);
|
||||
dx = unwrap[0] - xcm[0];
|
||||
dy = unwrap[1] - xcm[1];
|
||||
dz = unwrap[2] - xcm[2];
|
||||
|
|
|
@ -201,7 +201,7 @@ void FixAddTorque::post_force(int vflag)
|
|||
tlocal[0] = tlocal[1] = tlocal[2] = 0.0;
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
domain->unmap(x[i],image[i],unwrap)
|
||||
domain->unmap(x[i],image[i],unwrap);
|
||||
dx = unwrap[0] - xcm[0];
|
||||
dy = unwrap[1] - xcm[1];
|
||||
dz = unwrap[2] - xcm[2];
|
||||
|
@ -221,7 +221,7 @@ void FixAddTorque::post_force(int vflag)
|
|||
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
domain->unmap(x[i],image[i],unwrap)
|
||||
domain->unmap(x[i],image[i],unwrap);
|
||||
dx = unwrap[0] - xcm[0];
|
||||
dy = unwrap[1] - xcm[1];
|
||||
dz = unwrap[2] - xcm[2];
|
||||
|
|
Loading…
Reference in New Issue