Dear experts,
I am student studying glass molecular dynamic simulation using Lammps-29Aug2024.
I am currently facing issues with the initial energy stabilization and a drastic increase in the simulation box size after the NPT process, which results in an excessively low density. I initially set the box size based on the experimentally obtained density value.
I am using the following input file for my simulation:
Ewald Summation for Coulomb
kspace_style ewald 1.0e-4
minimize 1.0e-6 1.0e-8 50000 100000
Simulation settings
timestep 1.0
thermo 100
dump 1 all xyz 1000 dump.xyz
velocity all create 300.0 12345 mom no rot no
velocity all scale 300.0
fix 1 all nvt temp 300.0 300.0 100.0
run 40000
unfix 1
Initial Equilibration (6000K, NVT)
fix equil1 all nvt temp 300.0 6000.0 1000.0
run 100000
unfix equil1
Melt Equilibration (5000K, NVT)
fix melt all nvt temp 5000.0 5000.0 100.0
run 40000
unfix melt
Quenching (5000K → 300K, NVT)
fix cool all nvt temp 5000.0 300.0 2500.0
run 500000
unfix cool
Final Equilibration (300K, NPT)
fix final_eq all npt temp 300.0 300.0 100.0 iso 1.0 1.0 1000.0
run 30000
unfix final_eq
fix nvt_eq all nvt temp 300.0 300.0 100.0
run 40000
unfix nvt_eq
When running this simulation, I observe that as the NVT stage ends and the NPT stage begins, the pressure value is initially high. As the system attempts to reach 1.0 atm, the simulation box expands significantly, leading to a very low density.
To resolve this issue, I am wondering if I need to further stabilize the initial energy. Additionally, if there are any problems with my input file, I would appreciate your guidance.