博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LAMMPS脚本1
阅读量:5162 次
发布时间:2019-06-13

本文共 1262 字,大约阅读时间需要 4 分钟。

LAMMPS是比较易用易更改的分子动力学软件,其输入脚本有自己的风格,一个典型的脚本如下:

 

units         metal

atom_style  atomic

lattice         custom 1.0 a1 4.37 0.0 0.0 a2 0 4.37 0 a3 0 0 4.37 basis 0.0 0.0 0  basis 0.5 0.5 0.0 basis   0.5 0.0  0.5 basis  0.0 0.5 0.5 basis  0.25  0.25  0.25 basis 0.75 0.25 0.75 basis 0.75 0.75 0.25 basis 0.25 0.75 0.75 

region          1 block 0 200 0 200 0 100 

create_box2 1

region          2 block 10 30 10 30 10 30

region          3 block 5 15 0 5 6 100

region          4 block 5 15 0 5 5 9

mass1 32.0

mass2 16.0

create_atoms    2 region 2 basis 1 1 basis 2 1 basis 3 1 basis 4 1 basis 5 2 basis 6 2 basis 7 2 basis 8 2

#create_atoms1 region 2

 

pair_styletersoff

pair_coeff      * * SiC.tersoff Si C

 

neighbor1.0 bin

neigh_modifyevery 1 delay 0 check no

 

dumpid all xyz 100 dump.xyz

dump_modify     id element C H

thermo        100

min_style cg

minimize 1e-15 1e-15 5000 5000

 

 

势场:

pair_style sw command:Stillinger-Weber 势 与Tersoff 势多用于描述IV族元素相互作用。

pair_style table command:Style table creates interpolation tables of length N from pair potential and force values listed in a file(s) as a function of distance. 可以使用离散势场。

pair_style airebo/rebo command:可以描述 C-H C-C H-H 相互作用。

pair_style nb3b/harmonic command:可以描述Mg O H的三体相互作用。

pair_style adp command:EAM的推广。

pair_style beck command:Beck势,最初用来模拟He。

 

 

转载于:https://www.cnblogs.com/chaolian/p/3764598.html

你可能感兴趣的文章
SAP HANA开发中常见问题- 基于SAP HANA平台的多团队产品研发
查看>>
游戏中的心理学(一):认知失调有前提条件
查看>>
WHAT I READ FOR DEEP-LEARNING
查看>>
【Ruby】Ruby在Windows上的安装
查看>>
Objective C 总结(十一):KVC
查看>>
BZOJ 3747 洛谷 3582 [POI2015]Kinoman
查看>>
vue实战(7):完整开发登录页面(一)
查看>>
Visual Studio自定义模板(二)
查看>>
【Mood-20】滴滤咖啡做法 IT工程师加班必备 更健康的coffee 项目经理加班密鉴
查看>>
读《构建之法-软件工程》第四章有感
查看>>
使用 Printf via SWO/SWV 输出调试信息
查看>>
.net 分布式架构之分布式锁实现(转)
查看>>
吴恩达机器学习笔记 —— 3 线性回归回顾
查看>>
Problem E: Automatic Editing
查看>>
SpringBoot 使用 MyBatis 分页插件 PageHelper 进行分页查询
查看>>
《DSP using MATLAB》Problem 6.17
查看>>
微信公众平台开发实战Java版之如何网页授权获取用户基本信息
查看>>
一周TDD小结
查看>>
sizeof与strlen的用法
查看>>
Linux 下常见目录及其功能
查看>>