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

This commit is contained in:
sjplimp
2012-06-18 23:49:36 +00:00
parent 5208299da4
commit bb48c5ccdc
5 changed files with 24 additions and 16 deletions

View File

@ -363,6 +363,7 @@ void Respa::setup()
if (atom->sortfreq > 0) atom->sort();
comm->borders();
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
domain->box_too_small_check();
neighbor->build();
neighbor->ncalls = 0;
@ -427,6 +428,7 @@ void Respa::setup_minimal(int flag)
comm->exchange();
comm->borders();
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
domain->box_too_small_check();
neighbor->build();
neighbor->ncalls = 0;
}
@ -501,6 +503,7 @@ void Respa::cleanup()
{
modify->post_run();
modify->delete_fix("RESPA");
domain->box_too_small_check();
}
/* ---------------------------------------------------------------------- */