[lammps-users] Pair distance > table outer cutoff

Hi,

I've been running some simulations on small systems (4096 particles) that
involve `deform`s and `minimize`s. When I scale it up to a large system
(64,000 particles) and use the same script, I get the following error:

    Pair distance > table outer cutoff

Why is that an error? If a pair distance is outside the cutoff as specified in
the 'table' file, why is LAMMPS attempting to calculate the interaction between
them?

Thank you!
Vishnu

Hi,

I’ve been running some simulations on small systems (4096 particles) that
involve deforms and minimizes. When I scale it up to a large system
(64,000 particles) and use the same script, I get the following error:

Pair distance > table outer cutoff

Why is that an error? If a pair distance is outside the cutoff as specified in
the ‘table’ file, why is LAMMPS attempting to calculate the interaction between
them?

it doesn’t. it will only print this error if inconsistent data is provided in the input.

axel.

Hi Axel,

Yes, so I was hoping that the specific error message would narrow-down the
possible places where there might be inconsistencies. Does it tell you where
the issue likely is?

Thanks!
Vishnu

No

The error points to the following line:

Does it occur anytime particles in the neighbour list are outside a cut-off
distance? That doesn't make sense, because that' is the point of a finite skin
distance.

The error does not occur, however, when I use the following setting:

  neighbor 0.0 bin

The zero skin means that the neighbor-list ends up being created at nearly
every step (because the check occurs when anything moves more than half the
skin-distance), which does make the simulation run much longer.

This was necessary because the 'check' option is forced to 'yes' when
performing minimizations.

How might I fix this without incurring the expense of neighbor list
computations at every step?

Thank you!
Vishnu