Good Day Lammps Users
I trust you are well.
I am an engineering student investigating the behavior of duplex steel. I have performed simulations using the Fe-Cr and Fe-Cr-Ni files provided by the interatomic potential repository and they all worked fine. The duplex steel however is alloyed with nitrogen that produces significant effects when the steel is isothermally aged. I found a potential file for the Fe-Cr-Ni-N behavior developed by Ke Tong and a few other authors (see attached files) but the moment I run the script with this potential file, lots of atoms get lost
I read in the LAMMPS manual and previous mailing lists that it might be due to bad dynamics such as huge velocities and forces. I tried placing stricter tolerances on the minimize function, increased simulation box, and reduced the simulation timestep but the simulation only takes longer to give the same error result.
Could anyone advise me on what might be the problem? I am running the simulation on an intel core i3 8th gen. Thank you for your time
Please see code below and attached potential files
units metal
dimension 3
boundary p p p
atom_style atomic
region whole block 0 70 0 70 -2 2
create_box 4 whole
region upper block INF INF INF INF INF INF units box
#create Fe atoms
lattice bcc 2.935
create_atoms 1 region whole
#create Cr atoms
lattice bcc 3.224 origin 0.30 0.30 0.30
create_atoms 2 region whole
#create Ni atoms
lattice fcc 3.499 origin 0.65 0.65 0.65
create_atoms 3 region whole
#create N atoms
lattice hcp 4.039 origin 0.85 0.85 0.85
create_atoms 4 region whole
pair_style meam
pair_coeff * * library.meam Fe Cr Ni N FeNiCrN.meam Fe Cr Ni N
Equilibrium
reset_timestep 0
timestep 0.009
minimize 0.0 1.0e-3 1000 10000
velocity all create 300 23456 mom no rot no
fix 1 all npt temp 300 300 100 iso 1.01 1.01 1000
run 20000
unfix 1
fix 1 all npt temp 300 775 100 iso 1.01 1.01 1000
run 500000
unfix 1
thermo 10000
thermo_style custom step temp
print “Equilibrium reached”
#isothermal ageing
fix 1 all npt temp 775 775 1000 iso 1.01 1.01 1000
thermo 10000
thermo_style custom step temp
dump 1 all custom 5000 dump.FeNiCrN.* id xs ys zs
thermo 10000
thermo_style custom step temp
run 60000
FeNiCrN.meam (4.85 KB)
library.meam (771 Bytes)