Hello!
I am trying to simulate 4 chains of polymers with salt and MOF using LAMMPS. I get an error while doing simulation in NPT. Although with the same input I have simulated polymers and salt but when I added MOF it is giving an error I don’t understand that why I am getting an error. Can any one explain me?
ERROR on proc 0: Non-numeric box dimensions - simulation unstable (…/pppm.cpp:1885)
application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
LAMMPS (29 Oct 2020)
Here is my input file
Defining the system
units metal
boundary p p p
atom_style full
#dielectric 1
bond_style harmonic
angle_style harmonic
dihedral_style opls
improper_style cvff
#special_bonds lj 0.000000 0.000000 1.000000 coul 1.000000 1.000000 1.000000
pair_style lj/cut/coul/long 12.0
pair_modify table 16 # Accuracy of the table used for real space electrostatics
pair_modify mix arithmetic
pair_modify tail no
box tilt large
read_data “/home/lammps/lammps_min_polymer_mof.dat”
kspace_style pppm 1e-6
neighbor 2.0 bin
neigh_modify delay 0 every 1 check yes
Setting for output
dump Dump all custom 1000 “min.lammpstrj” id type x y z ix iy iz vx vy vz
thermo_style custom step time cpu pe ke etotal enthalpy temp press vol density cella cellb cellc cellalpha cellbeta cellgamma
thermo 100
Setting to run MD or minimization
>>> SCHEME-1
restart 1000 restart.min
minimize 1.0e-10 1.0e-8 10000 100000
run 10000
Here is my NPT file
Defining the system
units metal
boundary p p p
atom_style full
#dielectric 1
bond_style harmonic
angle_style harmonic
dihedral_style opls
improper_style cvff
#special_bonds lj 0.000000 0.000000 1.000000 coul 1.000000 1.000000 1.000000
pair_style lj/cut/coul/long 12.0
pair_modify table 16 # Accuracy of the table used for real space electrostatics
pair_modify mix arithmetic
pair_modify tail no
#box tilt large
read_restart restart.min.15000
#read_data “/home/lammps/lammps_min_polymer_mof.dat”
kspace_style pppm 1e-6
neighbor 2.0 bin
neigh_modify delay 0 every 1 check yes
write_restart restart.npt
velocity all create 5.0 30247
dump Dump all custom 1000 “traj_npt_5K.lammpstrj” id type x y z ix iy iz vx vy vz
thermo_style custom step time cpu pe ke etotal enthalpy temp press vol density cella cellb cellc cellalpha cellbeta cellgamma
thermo 100
fix ensemble1 all npt temp 5.0 5.0 0.1 aniso 1.0 1.0 1.0
timestep 0.002
restart 50000 restart.npt
run 100000
unfix ensemble1
Thanks in advance