I am currently doing research related to the molecular dynamics simulation of the nano-indentation of BMG (Ni, Zr, Ti). I use Lammps (7 Aug 2019) version.
I have made a Diamond Berkovich indenter and the material files separately using the following potential files available in LAMMPS.
FOR DIAMOND INDENTER:
lattice diamond 3.619
mass * 12.4
FOR MY BMG MATERIAL:
pair_style eam/alloy
pair_coeff * * NiTiZr.set Ni Ti Zr
However, when I bring together the two data files so that both the material and the indenter are in the same simulation, the following issues crop up.
I am confused as to how to go about it.
- When I first read the material file and then the indenter file, both structures show up okay, but the atoms in the indenter take the element type as one of the elements in the material file.
- When I import the material file and try to make the indenter within that code I cannot form Diamond as I am using eam/alloy pair style.
- When I try to make the indenter first and then import the material data file in the following order
pair_style
lattice diamond 3.619
create_atoms 1 region indenterrr_pyramid
mass * 12.4
## Read data
read_data NiTiZr.data add append
#Define Interatomic Potentials
pair_style eam/alloy
pair_coeff * * NiTiZr.set Ni Ti Zr
“ERROR: Invalid type for mass set (…/read_data.cpp:1802) Last command: read_data NiTiZr.data add append” comes up.
Can I have some help? I have attached the code for method 3 above and the indenter and material formation codes as well. (combine.input/indenterM.lmp/inputfile.input) respectively.
Thank you in advance.
C Peiris
indenterM.lmp (1.13 KB)
inputfile.input (3.34 KB)
combine.input (1.13 KB)