1. 程式人生 > 其它 >lammps建模_有點勉強的LAMMPS命令建模模板

lammps建模_有點勉強的LAMMPS命令建模模板

技術標籤:lammps建模

168a1bf9ef6aa9e2501b11a514dff07f.png
#注:本模板中的模型參考於昨天Eric N. Hahn大神的in檔案中構建石墨烯模型的部分
units           metal 
#units型別根據具體模型進行選取~
boundary        p p p  
#週期性條件和採用其它邊界條件所構建的模型也有區別,根據情況選取,LAMMPS預設三個方向均為週期性~
atom_style      atomic
#告訴LAMMPS你的模型中包含什麼(鍵角,電荷還是隻有原子)
lattice         custom 2.4595 a1 1.00000 0 0 &
                a2 0 1.73203 0 &
                basis 0 0 0  &
                basis 0.5 0.16666666666666666 0 &
                basis 0.5 0.5 0 &
                basis 0 0.6666666666666666 0
#定義原子排列規則
region        box block  -210 210 -240 240 -5 200 units lattice
#劃分盒子區域
create_box    1 box
#定義盒子內包含的原子種數
region          graphene block  -210 210 -240 240 0 0.1 units lattice
#在盒子內劃出一個區域
create_atoms    1 region graphene
#按照定義好的原子排列規則在graphene區域中填充型別1的原子
mass            * 12.011
#定義原子質量
write_data      struc.lmp
#輸出LAMMPS可以讀取的data檔案

最後直接用lammps可執行檔案讀取這個in檔案即可