forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5784 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
22f987a208
commit
2683d01436
|
@ -258,15 +258,15 @@ void FixAddForce::post_force(int vflag)
|
|||
modify->clearstep_compute();
|
||||
|
||||
if (xstyle == EQUAL) xvalue = input->variable->compute_equal(xvar);
|
||||
else if (xstyle == ATOM)
|
||||
else if (xstyle == ATOM && sforce)
|
||||
input->variable->compute_atom(xvar,igroup,&sforce[0][0],4,0);
|
||||
if (ystyle == EQUAL) yvalue = input->variable->compute_equal(yvar);
|
||||
else if (ystyle == ATOM)
|
||||
else if (ystyle == ATOM && sforce)
|
||||
input->variable->compute_atom(yvar,igroup,&sforce[0][1],4,0);
|
||||
if (zstyle == EQUAL) zvalue = input->variable->compute_equal(zvar);
|
||||
else if (zstyle == ATOM)
|
||||
else if (zstyle == ATOM && sforce)
|
||||
input->variable->compute_atom(zvar,igroup,&sforce[0][2],4,0);
|
||||
if (estyle == ATOM)
|
||||
if (estyle == ATOM && sforce)
|
||||
input->variable->compute_atom(evar,igroup,&sforce[0][3],4,0);
|
||||
|
||||
modify->addstep_compute(update->ntimestep + 1);
|
||||
|
|
|
@ -351,7 +351,7 @@ void FixAveAtom::end_of_step()
|
|||
|
||||
// evaluate atom-style variable
|
||||
|
||||
} else if (which[m] == VARIABLE)
|
||||
} else if (which[m] == VARIABLE && array)
|
||||
input->variable->compute_atom(n,igroup,&array[0][m],nvalues,1);
|
||||
}
|
||||
|
||||
|
|
|
@ -184,13 +184,13 @@ void FixEfield::post_force(int vflag)
|
|||
modify->clearstep_compute();
|
||||
|
||||
if (xstyle == EQUAL) ex = qe2f * input->variable->compute_equal(xvar);
|
||||
else if (xstyle == ATOM)
|
||||
else if (xstyle == ATOM && efield)
|
||||
input->variable->compute_atom(xvar,igroup,&efield[0][0],3,0);
|
||||
if (ystyle == EQUAL) ey = qe2f * input->variable->compute_equal(yvar);
|
||||
else if (ystyle == ATOM)
|
||||
else if (ystyle == ATOM && efield)
|
||||
input->variable->compute_atom(yvar,igroup,&efield[0][1],3,0);
|
||||
if (zstyle == EQUAL) ez = qe2f * input->variable->compute_equal(zvar);
|
||||
else if (zstyle == ATOM)
|
||||
else if (zstyle == ATOM && efield)
|
||||
input->variable->compute_atom(zvar,igroup,&efield[0][2],3,0);
|
||||
|
||||
modify->addstep_compute(update->ntimestep + 1);
|
||||
|
|
|
@ -576,27 +576,33 @@ void FixMove::initial_integrate(int vflag)
|
|||
|
||||
if (xvarstr) {
|
||||
if (xvarstyle == EQUAL) dx = input->variable->compute_equal(xvar);
|
||||
else input->variable->compute_atom(xvar,igroup,&displace[0][0],3,0);
|
||||
else if (displace)
|
||||
input->variable->compute_atom(xvar,igroup,&displace[0][0],3,0);
|
||||
}
|
||||
if (yvarstr) {
|
||||
if (yvarstyle == EQUAL) dy = input->variable->compute_equal(yvar);
|
||||
else input->variable->compute_atom(yvar,igroup,&displace[0][1],3,0);
|
||||
else if (displace)
|
||||
input->variable->compute_atom(yvar,igroup,&displace[0][1],3,0);
|
||||
}
|
||||
if (zvarstr) {
|
||||
if (zvarstyle == EQUAL) dz = input->variable->compute_equal(zvar);
|
||||
else input->variable->compute_atom(zvar,igroup,&displace[0][2],3,0);
|
||||
else if (displace)
|
||||
input->variable->compute_atom(zvar,igroup,&displace[0][2],3,0);
|
||||
}
|
||||
if (vxvarstr) {
|
||||
if (vxvarstyle == EQUAL) vx = input->variable->compute_equal(vxvar);
|
||||
else input->variable->compute_atom(vxvar,igroup,&velocity[0][0],3,0);
|
||||
else if (velocity)
|
||||
input->variable->compute_atom(vxvar,igroup,&velocity[0][0],3,0);
|
||||
}
|
||||
if (vyvarstr) {
|
||||
if (vyvarstyle == EQUAL) vy = input->variable->compute_equal(vyvar);
|
||||
else input->variable->compute_atom(vyvar,igroup,&velocity[0][1],3,0);
|
||||
else if (velocity)
|
||||
input->variable->compute_atom(vyvar,igroup,&velocity[0][1],3,0);
|
||||
}
|
||||
if (vzvarstr) {
|
||||
if (vzvarstyle == EQUAL) vz = input->variable->compute_equal(vzvar);
|
||||
else input->variable->compute_atom(vzvar,igroup,&velocity[0][2],3,0);
|
||||
else if (velocity)
|
||||
input->variable->compute_atom(vzvar,igroup,&velocity[0][2],3,0);
|
||||
}
|
||||
|
||||
modify->addstep_compute(update->ntimestep + 1);
|
||||
|
|
|
@ -245,13 +245,13 @@ void FixSetForce::post_force(int vflag)
|
|||
modify->clearstep_compute();
|
||||
|
||||
if (xstyle == EQUAL) xvalue = input->variable->compute_equal(xvar);
|
||||
else if (xstyle == ATOM)
|
||||
else if (xstyle == ATOM && sforce)
|
||||
input->variable->compute_atom(xvar,igroup,&sforce[0][0],3,0);
|
||||
if (ystyle == EQUAL) yvalue = input->variable->compute_equal(yvar);
|
||||
else if (ystyle == ATOM)
|
||||
else if (ystyle == ATOM && sforce)
|
||||
input->variable->compute_atom(yvar,igroup,&sforce[0][1],3,0);
|
||||
if (zstyle == EQUAL) zvalue = input->variable->compute_equal(zvar);
|
||||
else if (zstyle == ATOM)
|
||||
else if (zstyle == ATOM && sforce)
|
||||
input->variable->compute_atom(zvar,igroup,&sforce[0][2],3,0);
|
||||
|
||||
modify->addstep_compute(update->ntimestep + 1);
|
||||
|
|
|
@ -465,13 +465,13 @@ void Velocity::set(int narg, char **arg)
|
|||
|
||||
} else {
|
||||
if (xstyle == EQUAL) vx = input->variable->compute_equal(xvar);
|
||||
else if (xstyle == ATOM)
|
||||
else if (xstyle == ATOM && vfield)
|
||||
input->variable->compute_atom(xvar,igroup,&vfield[0][0],3,0);
|
||||
if (ystyle == EQUAL) vy = input->variable->compute_equal(yvar);
|
||||
else if (ystyle == ATOM)
|
||||
else if (ystyle == ATOM && vfield)
|
||||
input->variable->compute_atom(yvar,igroup,&vfield[0][1],3,0);
|
||||
if (zstyle == EQUAL) vz = input->variable->compute_equal(zvar);
|
||||
else if (zstyle == ATOM)
|
||||
else if (zstyle == ATOM && vfield)
|
||||
input->variable->compute_atom(zvar,igroup,&vfield[0][2],3,0);
|
||||
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
|
|
Loading…
Reference in New Issue