A Julia package for reading/writing Wannier90 file formats.
The package is designed to be minimalistic to allow easy reuse in other packages.
using WannierIO
A = read_amn("silicon.amn")
write_amn("silicon_2.amn", A)
chk = read_chk("silicon.chk")
write_chk("silicon_2.chk", chk; binary=true)
- Wannier.jl: Wannierization and Wannier interpolation.
The IO part of
Wannier.jl
was isolated and moved into this package.