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

This commit is contained in:
sjplimp
2015-02-04 18:08:44 +00:00
parent f27d8d89e0
commit 616ec749a4

View File

@ -594,12 +594,12 @@ void ReadData::command(int narg, char **arg)
// if atoms are lost is b/c data file box was far from shrink-wrapped // if atoms are lost is b/c data file box was far from shrink-wrapped
// do not use irregular() comm, which would not lose atoms, // do not use irregular() comm, which would not lose atoms,
// b/c then user could specify data file box as far too big and empty // b/c then user could specify data file box as far too big and empty
// do comm->init() but not comm->setup() b/c pair/neigh cutoffs not yet set
if (domain->nonperiodic == 2) { if (domain->nonperiodic == 2) {
if (domain->triclinic) domain->x2lamda(atom->nlocal); if (domain->triclinic) domain->x2lamda(atom->nlocal);
domain->reset_box(); domain->reset_box();
comm->init(); comm->init();
comm->setup();
comm->exchange(); comm->exchange();
if (domain->triclinic) domain->lamda2x(atom->nlocal); if (domain->triclinic) domain->lamda2x(atom->nlocal);