Skip to content
Snippets Groups Projects
Commit 661c056c authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10965 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 8777a53f
No related branches found
No related tags found
No related merge requests found
......@@ -99,10 +99,10 @@ int main(int narg, char **arg)
int natoms = lammps_get_natoms(ptr);
double *x = (double *) malloc(3*natoms*sizeof(double));
lammps_gather_atoms(lmp,"x",1,3,x);
lammps_gather_atoms(ptr,"x",1,3,x);
double epsilon = 0.1;
x[0] += epsilon;
lammps_scatter_atoms(lmp,"x",1,3,x);
lammps_scatter_atoms(ptr,"x",1,3,x);
free(x);
lammps_command(ptr,"run 1");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment