When looking at your log file, there are some indications of problems and warnings that you should not ignore.
LAMMPS (28 Mar 2023)
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
using 1 OpenMP thread(s) per MPI task
Loaded 0 plugins from D:\ LAMMPS-64bit-latest-MPI\plugins
Loaded 1 plugins from D:\LAMMPS 64-bit 28Mar2023-MPI\plugins
This indicates that a) you are using a more than 2 year old LAMMPS version and b) that you may have a mixed installation of two LAMMPS packages on top of each other. That is bad. Nobody will be looking into issues unless they are confirmed with the latest release (12 June 2025 at this time).
Step Temp PotEng KinEng E_vdwl E_coul E_pair E_bond E_angle E_dihed E_impro E_mol Enthalpy TotEng Pxx Pyy Pzz Volume Lx Ly Lz Density
0 0 81532.749 0 190783.05 640692.13 75590.893 2584.7338 22.361195 0 0 2607.095 881247.44 81532.749 137565.42 152644.81 150530.26 373248 72 72 72 0.90799595
10 0 -96027.892 0 25487.134 632214.32 -98365.714 360.26102 80.923894 0 0 441.18492 -4919.7028 -96027.892 16358.158 16703.113 17150.472 373248 72 72 72 0.90799595
20 0 -4.6344116e+10 0 25328.859 -4.6343387e+10 -4.6344118e+10 338.6464 81.549301 0 0 420.1957 -6.1792054e+10 -4.6344116e+10 -4.3850099e+09 -7.2964088e+08 -3.3990506e+09 373248 72 72 72 0.90799595
30 0 -3.2503001e+16 0 25328.859 -3.2503001e+16 -3.2503001e+16 338.6464 81.549301 0 0 420.1957 -3.2503001e+16 -3.2503001e+16 15681 15845.417 16503.91 373248 72 72 72 0.90799595
31 0 -3.2503001e+16 0 25328.859 -3.2503001e+16 -3.2503001e+16 338.6464 81.549301 0 0 420.1957 -4.45126e+16 -3.2503001e+16 15681 15845.417 -6.6187562e+15 373248 72 72 72 0.90799595
Your Coulomb energy becomes very large. That is usually an indication of a problem with the force field (LJ?) parameters that allow oppositely charged atoms come too close to each other. That in turn will lead to large forces and a lot of problems when starting MD.
WARNING: Should not use fix nve/limit with fix shake or fix rattle (src/fix_nve_limit.cpp:78)
WARNING: Shake determinant < 0.0 (src/RIGID/fix_shake.cpp:1796)
The first warning should not be ignored and the second is likely the consequence, which means that the SHAKE equations are degenerate. This is likely a consequence of the previous issue.
BTW: there also is a warning about mixing tip4p/long with coul/long:
WARNING: Using a tip4p sub-style with other sub-styles that include coulomb interactions can result in inconsistent calculation of the coulomb interactions (src/pair_hybrid.cpp:375)
In general, if you ignore warnings, you better know very well, what you are doing.
Impossible to say without having a closer look (which makes no sense with all the other issues that need resolving). Some general explanation is here: 11.2. Errors and warnings details — LAMMPS documentation
You should probably read the entire page top to bottom to be better prepared for errors and warnings that LAMMPS will issue.