Regarding the too many neighbor bins error

Hello
iam trying to do the solidification of a high entropy alloy iam getting this error " Too many neighbor bins (…/nbin_standard.cpp:184) "when iam running the following Input script
Input script

clear
units metal
dimension 3
processors 3 3 2
boundary p p p
atom_style atomic
atom_modify map array

---------- Create Atoms ---------------------

read_data 32000structureoutmat.dat

---------- Define Interatomic Potential ---------------------

pair_style eam/alloy
pair_coeff * * CoFeNiPd.set Co Fe Ni Pd
neighbor 2.0 bin
neigh_modify delay 0 every 1 check yes page 500000 one 50000
timestep 0.002 #from jafray 0.002 picometers
velocity all create 2300 12345 mom yes rot yes

---------- calculatingcentro symmetry to know whether the atom is distorted or not---------------------

compute csym all centro/atom fcc
compute peratom all pe/atom
compute pattern all cna/atom 3.414
#reset_timestep 0
thermo 100
thermo_style custom step temp etotal ke pe lx ly lz press pxx pyy pzz enthalpy

---------- Run Minimization ---------------------

dump 3 all custom 5000 dump.f* id type xs ys zs vx vy vz fx fy fz c_csym c_peratom c_pattern
fix 3 all npt temp 2300 2300 0.2 iso 0 0 2
run 5000000
undump 3
unfix 3
write_data st10homo.dat
write_restart st10homo.rest
dump 4 all custom 10000 dump.f* id type xs ys zs vx vy vz fx fy fz c_csym c_peratom c_pattern
dump_modify 4 element Co Fe Ni Pd
fix 4 all npt temp 2300 300 0.2 iso 0 0 2
run 100000000
undump 4
unfix 4
write_data st10p2300to300.dat
write_restart st10p2300to300.rest
dump 5 all custom 2500000 dump.f* id type xs ys zs vx vy vz fx fy fz c_csym c_peratom c_pattern
dump_modify 5 element Co Fe Ni Pd
fix 5 all npt temp 300 300 0.2 iso 0 0 2
run 2500000
undump 5
unfix 5

The following is my data file
LAMMPS Description

32000 atoms
4 atom types

0.0 20 xlo xhi
0.0 20 ylo yhi
0.0 20 zlo zhi

Masses

1 58.93
2 55.89
3 58.69
4 106.42

Atoms

1 3 0 0 0
2 1 0.025 0.025 0
3 4 0.025 0 0.025
4 2 0 0.025 0.025
5 3 0.05 0 0
8 3 0.05 0.025 0.025
81 1 0 0.05 0
83 3 0.025 0.05 0.025
85 3 0.05 0.05 0
1601 1 0 0 0.05
1602 4 0.025 0.025 0.05








.

your atom positions in your data file look bogus to me. they look like fractional coordinates, however that is not what LAMMPS requires. you should have a gigantic pressure in the first step and they your system will “explode”, which will ultimately lead to the different errors you are getting.

this looks like a case of GI-GO,
axel.