OVITO 使用
OVITO 使用
介绍
官网:OVITO
OVITO 2.9 版本的 Python script 功能可以免费使用,其他需要 Pro 版本
支持 SFTP,可打开远程文件
OVITO 菜单栏:
- 主菜单
- 视图窗口
- 动画工具条
- 修正通道(Add Modification)及其属性栏
- 渲染标签
- 叠层标签(添加坐标轴、colorbar 等)
-
- 原子轨迹跟踪显示
- 熔化过程中自由体积和中心对称参数的变化
输出 RDF
OVITO 显示多晶不同颜色
- 方式 1:添加 CNA Modification
- 方式 2:添加 ‘Color coding’ Modification,在右下方 ‘Input property’ 选择 ‘Particle Identifier’,此时,晶粒被设置为相同的颜色;在颜色条下方点击 ‘Adjust range’,设置不同的颜色对应不同的晶粒 ID
使用
直接导入构型/轨迹文件,下方默认有 Particles 信息;添加 Modification 后,会出现 Global Attributes、Data Tables 另外两种类型的数据(添加 DXA,会多出 Dislocation、Surfaces 数据)
Add Modification 选项
- 无直接计算原子层间距的 Modification
1 | # Analysis |
- 常用 Expression selection 值:Expression selection - OVITO
1 | Position.X # x 方向笛卡尔坐标 |
空位、间隙识别及数目统计步骤:Ovito可视化弗伦克尔缺陷_哔哩哔哩_bilibili
- Wigner-Seitz defect analysis:识别空位和间隙原子并统计对应数目
- Expression selection:
Occupancy==0
空位,Occupancy>0
间隙原子 - Assign color:给空位和间隙原子分别着色以进行区分
多面体模板匹配:Polyhedral template matching — OVITO User Manual 3.11.3 documentation
- 可识别 Ordering types(L1_0、L1_2、B2、zincblende / wurtzite)
OVITO Python
官方教程:OVITO Python
主要用于可视化:How to Script with OVITO
Voronoi 多面体指数常用
<n1, n2, n3, ..., ni, ...>
形式表示,其中ni
表示 Voronoi 多面体具有的 i 边形数;一般 n1 和 n2 都是 0,可不用写出来;二十面体的多面体指数为<0, 0, 12, 0>
,十二面体的多面体指数为<20, 0, 0, 0>
支持的输入文件格式:Input file formats — OVITO User Manual 3.11.3 documentation
可导出的文件格式:ovito.io.export_file — OVITO Python Reference 3.11.3 documentation
Pipeline 概念:Pipeline concept — OVITO User Manual 3.11.3 documentation
- OVITO modifiers are analysis or property calculation/setting routines. For anything you want to do, in terms of analyzing your data from a atomistic simulation, you will use a modifier which is appended to the pipeline via
pipeline.modifiers.append(...)
.
- OVITO modifiers are analysis or property calculation/setting routines. For anything you want to do, in terms of analyzing your data from a atomistic simulation, you will use a modifier which is appended to the pipeline via
整体流程:导入构型数据,添加 modifier 进行处理,导出计算数据(使用多个 modifier 时,需注意其顺序)
1 | from ovito.pipeline import Pipeline |
- Pipeline、DataCollection 类相关
1 | # DataCollection 相关 |
- 数据导出
1 | from ovito.io import export_file |
1 | from ovito.modifiers import ... |
- Global Attributes 和 Data Tables
1 | data.attributes[...] # 获取 Global Attributes 中对应 keyword 的数据 |
- 格式转换(OVITO Python 中的 DataCollection 可转换成 ASE、pymatgen 的格式)
1 | from ovito.io.ase import ase_to_ovito, ovito_to_ase |
- 计算 RDF
1 | pipeline.modifiers.append( |