请用Lammps编写一个石墨烯拉伸的in文件,拉伸方式为deform拉伸
时间: 2023-03-14 13:51:22 浏览: 665
Lammps在拉伸过程中的应用,lammps实例教程,Fortran
5星 · 资源好评率100%
很高兴为您提供帮助!下面是一个可用于Lammps编写石墨烯拉伸的in文件的示例:# 石墨烯拉伸clear
units metal
atom_style atomic
boundary p p p# 基本参数lattice sc 1.42# 力场参数pair_style buck/coul/long 10
pair_coeff 1 1 0.11698 1.8897# 初始化read_data graphene.data# 拉伸参数region box block 0 5 0 5 0 5
displace_atoms region box move 0.1 0 0# 模拟设置velocity all create 300.0 87287
thermo_style custom step temp
thermo 10
timestep 0.001# 力场pair_modify shift yes# 拉伸fix 1 all deform 1 x erate 0.0025 0.0 0.0 units box remap x# 模拟run 10000# 输出write_data stretched_graphene.data
阅读全文