Hi ,
I am trying to simulate liquid argon in bulk using NVT. I’m following the old paper of Rahman et. al (Phys.Rev, Vol 136,1964) with a temperature 94.4K and density as 1.374 g/cm^3. However after around 5000ps the system is showing the pressure of 150-200 bar, whereas according to NIST the pressure at this state point should be 73 bar. Why the system is not equilibrating to the accurate pressure? I kept the density same as 1.374 g/cm^3
Here is my script:
#-----------initialize simulation--------------
units metal
dimension 3
boundary p p p
atom_style sphere
atom_modify map array
#-----------create atoms--------------------
region simbox block -17.3893 17.3893 -17.3893 17.3893 -17.3893 17.3893 side in units box
create_box 1 simbox
create_atoms 1 random 864 125698 NULL
set type 1 mass 39.95
set type 1 diameter 3.4
#--------------grouping---------------------------------
group Ar type 1
---------- Define Interatomic Potential ---------------------
pair_style lj/cut 10.5
pair_coeff * * 0.0103 3.4 10.5
pair_modify shift yes
#-------------Neighbour list-------------------------------------
neighbor 2 bin
neigh_modify delay 10 check yes
----------------minimization of solvent alone---------------------
fix 1 Ar setforce 0.0 0.0 0.0
thermo 100
thermo_style custom step temp pe ke etotal press vol enthalpy
min_style cg
minimize 1e-25 1e-25 100000 1000000
unfix 1
#-------------- minimization of solution-----------------------
thermo 100
thermo_style custom step temp pe ke etotal press vol enthalpy
min_style cg
minimize 1e-25 1e-25 100000 1000000
print “MINIMIZATION DONE”
#write_restart solvated_after.minimize
#----------------equilibration--------------------------------
timestep 0.0001
velocity all create 94.4 123475 dist gaussian
fix 3 all nvt temp 94.4 94.4 0.01
fix 4 Ar momentum 100 linear 1 1 1
thermo 1000
thermo_style custom step time temp pe ke etotal press vol density
dump 6 all xyz 200000 dump_Ar_liquid_500.xyz
log lognew.txt
#----------------- Run-------------------
run_style verlet
run 100000000
Thanks in advance,
Kanka Ghosh
Dept. of Physics
IIT Madras
India