mushroom
: 核心 python 包, 定义工作流和脚本中可能用到的对象.scripts
: 利用mushroom
中定义的对象来实现的完成多种研究目的的脚本, 也包含拷贝workflows
中脚本的 convenience function 和 helper function.doc
: mushroom 使用与开发文档examples
: 除了 mushroom 包的使用样例外, 也包含一些小技巧和原型db
: 数据库
对于 Python 库, 每个子 package 的测试文件放置在该 package 下的 test
文件夹内. 使用 pytest 和 unittest 框架.
对于 workflow 中的 Bash 脚本, 暂不考虑做测试. 今后视情况用 bats 进行测试.
原则是尽可能减少子 package 的数量. 主要的考虑因素不是模块的长度, 而是模块的功能一致, 集成度和自洽.
- band structure analysis
bs
-
BandStructure
object - resolve band entanglement
-
- density of states analysis
dos
-
DensityOfStates
object
-
- io helper functions
ioutils
- 支持文件夹条目下文件拷贝类型筛选, 避免拷贝不必要的文件
- DOSCAR reader
- POSCAR reader/exporter (alias to
Cell.read_vasp
) - PROCAR reader
- EIGENVAL reader
- KPOINTS reader/exporter
- LOCPOT reader
- POTCAR searcher
- WAVECAR reader
- ISYM=0
- complex128 (45200) and symmetrized types (53300 and 53310)
- CHGCAR reader
XML reader for
- kpoint list
- geometry at specific ion step
- handle binary
.eps
file for dielectric matrix-
Eps
class for reading matrix elements - number of frequency points
- automatically check unit of record length by attempt to unpack the first several bytes
- matrix plot with pyplot
-
- 确认最佳的 abinit 输入 practice
- 设计 workflow 构成
- energy reader
- Extracting fermi energy is not working correctly. A value lower than VBM can be obtained. Work correctly for in situ band calculation
- struct reader
- output2 reader
- output1 reader
- in1 reader
- calculators of relativistic potential
Cif
类在读取 SpringerMaterials, ICSD 上下载的部分 cif 文件时报错. 包括
- Cu2O 52043
Require pymatgen
- base classes to manipulate attributes of elementary objects and options
- Graph object for data plotting
- Plot object for export
- agr extraction, including
- data and data type
- legends of dataset
- graph set up
- Extensions like those in PyGrace, e.g. colorbar, matrix plot
- Gaussian cube format http://paulbourke.net/dataformats/cube/
- define alias
- 参考 SetayawanW10-AFLOW, 更好地对路径进行分类
- 数据库对象
DBKPath
的处理输入结构对称性的方法
一般局域泛函
- Band and DOS
- 截断和 kmesh 收敛测试
杂化泛函
- 截断和 kmesh 收敛测试
- SCF 和 DOS
- Band
GW
- 正常三步计算
- 波函数截断
ENCUT
, 介电矩阵截断ENCUTGW
, 能带数NBANDS
收敛 -
NOMEGA
收敛测试
结构优化
- 表面能随 slab 层数和固定层数的收敛
- 也许可以用 jinja2 作为模板库?