Wannier90 files
Some of the functions, e.g. read_amn
, write_amn
, read_chk
, write_chk
, etc., support reading/writing Fortran unformatted files. However, the Fortran unformatted files are machine and compiler dependent. Therefore, it is not guaranteed that these functions work for all the cases. Currently, the functions are tested on the following platforms:
- Linux + gfortran 11.2
Public API
WannierIO.read_amn
— Functionread_amn(filename)
read_amn(filename, ::FortranText)
read_amn(filename, ::FortranBinaryStream)
Read wannier90 amn
file.
Return
A
: length-n_kpts
vector, each element is an_bands * n_wann
matrix.header
: first line of the file
Note there are three versions of this function: the 1st one is a wrapper function that automatically detect the format (text or binary) of the file, and does some additional pretty printing to give user a quick hint of the dimensions of the A matrix; it internally calls the 2nd or the 3rd version for actual reading.
Wannier90 only has Fortran text format for amn
, however I wrote a custom version of QE pw2wannier90.x that can output Fortran binary format (using Fortran stream IO) to save some disk space. The 1st function auto detect the file format so it is transparent to the user.
WannierIO.write_amn
— Functionwrite_amn(filename, A; header=default_header(), binary=false)
write_amn(filename, A, ::FortranText; header=default_header())
write_amn(filename, A, ::FortranBinaryStream; header=default_header())
Write wannier90 amn
file.
Arguments
filename
: output filenameA
: a length-n_kpts
vector, each element is an_bands * n_wann
matrix
Keyword arguments
header
: 1st line of the filebinary
: write as Fortran unformatted file, which is the Wannier90 default. Here thebinary
kwargs is provided for convenience.
Same as read_amn
there are three versions of this function, the 1st one is a wrapper function, it calls the 2nd or the 3rd version depending on the binary
kwargs.
WannierIO.read_w90_band
— Methodread_w90_band(prefix)
Read prefix_band.dat
, prefix_band.kpt
, prefix_band.labelinfo.dat
.
Arguments
prefix
: prefix of the filenames (or called seedname in wannier90), NOT the full filename.
Return
x
:n_kpts
, x axis value of kpath, in cartesian lengtheigenvalues
: length-n_kpts
vector, each element is a length-n_bands
vector of band energieskpoints
: a vector of lengthn_kpts
, fractional coordinateskweights
: a vector of lengthn_kpts
, weights of kpointssymm_point_indices
: index of high-symmetry points inprefix_band.dat
symm_point_labels
: name of high-symmetry points
WannierIO.read_w90_band_dat
— Methodread_w90_band_dat(filename)
Read prefix_band.dat
file generated by wannier90.x
, or prefix-band.dat
file generated by postw90.x
.
Return
x
:n_kpts
, x axis value of kpath, in cartesian lengtheigenvalues
: length-n_kpts
vector, each elemnt is a length-n_bands
vector of band energiesextras
: optional (thepostw90.x
might generate a file with a third column), same size aseigenvalues
, often the color of each eigenvalue, e.g., spin projection
WannierIO.read_w90_band_kpt
— Methodread_w90_band_kpt(filename)
Read a prefix_band.kpt
file.
Return
kpoints
: a vector of lengthn_kpts
, fractional coordinateskweights
: a vector of lengthn_kpts
, weights of kpoints
WannierIO.read_w90_band_labelinfo
— Methodread_w90_band_labelinfo(filename)
Read prefix_band.labelinfo
file.
Return
symm_point_indices
: index of high-symmetry points inprefix_band.dat
symm_point_labels
: name of high-symmetry points
WannierIO.write_w90_band
— Methodwrite_w90_band(
prefix;
x,
eigenvalues,
kpoints,
kweights,
symm_point_indices,
symm_point_labels
)
Write prefix_band.dat, prefix_band.kpt, prefix_band.labelinfo.dat
.
Arguments
prefix
: prefix ofprefix_band.dat, prefix_band.kpt, prefix_band.labelinfo.dat
Keyword Arguments
x
:n_kpts
, x axis value, in cartesian lengtheigenvalues
: length-n_kpts
vector, each element is a length-n_bands
vector of band energieskpoints
: length-n_kpts
vector, fractional coordinateskweights
: a vector of lengthn_kpts
, weights of kpointssymm_point_indices
: index of high-symmetry points inprefix_band.dat
symm_point_labels
: name of high-symmetry points
WannierIO.write_w90_band_dat
— Methodwrite_w90_band_dat(filename; x, eigenvalues, extras)
Write prefix_band.dat
file.
Arguments
filename
: filename ofprefix_band.dat
Keyword Arguments
x
:n_kpts
, x axis value, in cartesian lengtheigenvalues
: length-n_kpts
vector, each element is a length-n_bands
vector of band energiesextras
: optional, same size aseigenvalues
, will be written as the third column ofprefix_band.dat
. Theprefix-band.dat
file generated bypostw90.x
sometimes has a third column for e.g. the color of the eigenvalues
WannierIO.write_w90_band_kpt
— Methodwrite_w90_band_kpt(filename; kpoints, kweights)
Write prefix_band.kpt
file.
Arguments
filename
: filename ofprefix_band.kpt
Keyword Arguments
kpoints
: length-n_kpts
vector, fractional coordinateskweights
:n_kpts
, optional, weights of kpoints, default to 1.0.
WannierIO.write_w90_band_labelinfo
— Methodwrite_w90_band_labelinfo(
filename;
x,
kpoints,
symm_point_indices,
symm_point_labels
)
Write prefix_band.labelinfo
file.
Arguments
filename
: filename ofprefix_band.labelinfo
Keyword Arguments
x
:n_kpts
-vector, x axis value, in cartesian lengthkpoints
: length-n_kpts
vector, fractional coordinatessymm_point_indices
: index of high-symmetry points inprefix_band.dat
symm_point_labels
: name of high-symmetry points
WannierIO.get_U
— Methodget_U(chk)
Extract the combined U = Udis * Uml
matrices from Chk
.
WannierIO.get_Udis
— Methodget_Udis(chk)
Extract disentanglement Udis
matrices from Chk
.
WannierIO.read_chk
— Methodread_chk(filename)
read_chk(filename, ::FortranText)
read_chk(filename, ::FortranBinary)
Read wannier90 chk
checkpoint file.
Similar to read_amn
, the 1st version auto detect chk
file format (binary or text) and read it.
WannierIO.write_chk
— Functionwrite_chk(filename, chk::Chk; binary=false)
write_chk(filename, chk::Chk, ::FortranText)
write_chk(filename, chk::Chk, ::FortranBinary)
Write wannier90 chk
file.
Similar to write_amn
, the 1st version is a convenience wrapper.
Keyword arguments
binary
: write as Fortran binary file or not. Although wannier90 default is Fortran binary format, here the default isfalse
since Fortran binary depends on compiler and platform, so it is not guaranteed to always work.
WannierIO.read_eig
— Functionread_eig(filename)
read_eig(filename, ::FortranText)
read_eig(filename, ::FortranBinaryStream)
Read the wannier90 eig
file.
Return
eigenvalues
: a lenth-n_kpts
vector, each element is a length-n_bands
vector
The 1st version is a convenience wrapper function for the 2nd and 3rd versions.
WannierIO.write_eig
— Functionwrite_eig(filename, eigenvalues; binary=false)
write_eig(filename, eigenvalues, ::FortranText)
write_eig(filename, eigenvalues, ::FortranBinaryStream)
Write eig
file.
Arguments
eigenvalues
: a length-n_kpts
vector, each element is a length-n_bands
vector
Keyword arguments
binary
: if true write in Fortran binary format.
WannierIO.read_w90_hrdat
— Methodread_w90_hrdat(filename)
Read prefix_hr.dat
.
Return
Rvectors
: $\mathbf{R}$-vectors on which operators are definedRdegens
: degeneracies of each $\mathbf{R}$-vectorH
: Hamiltonian $\mathbf{H}(\mathbf{R})$header
: the first line of the file
WannierIO.write_w90_hrdat
— Methodwrite_w90_hrdat(filename; Rvectors, Rdegens, H, header)
Write prefix_hr.dat
.
Keyword arguments
See the return values of read_w90_hrdat
.
WannierIO.read_mmn
— Functionread_mmn(filename)
read_mmn(filename, ::FortranText)
read_mmn(filename, ::FortranBinaryStream)
Read wannier90 mmn
file.
Return
M
: length-n_kpts
vector, each element is a length-n_bvecs
vector, then each element is an_bands * n_bands
matrixkpb_k
: length-n_kpts
vector, each element is a length-n_bvecs
vector of integers for the indices of the neighboring kpointskpb_G
: length-n_kpts
vector, each element is a lenght-n_bvecs
vector of ofVec3{Int}
, which are the translation vectorsheader
: 1st line of the file
The translation vector G
is defined as b = kpoints[kpb_k[ik][ib]] + kpb_G[ik][ib] - kpoints[ik]
, where b
is the ib
-th bvector of the ik
-th kpoint.
The 1st version is a convenience wrapper for the other two.
WannierIO.write_mmn
— Functionwrite_mmn(filename; M, kpb_k, kpb_G; header=default_header(), binary=false)
write_mmn(filename; M, kpb_k, kpb_G, ::FortranText; header=default_header(), binary=false)
write_mmn(filename; M, kpb_k, kpb_G, ::FortranBinaryStream; header=default_header(), binary=false)
Write wannier90 mmn
file.
Arguments
filename
: output file nameM
: length-n_kpts
vector ofn_bands * n_bands * n_bvecs
arrayskpb_k
: length-n_kpts
vector of length-n_bvecs
vector of integerskpb_G
: length-n_kpts
vector of length-n_bvecs
vector ofVec3{Int}
for bvectors
Keyword arguments
header
: header stringbinary
: if true write in Fortran binary format
The 1st version is a convenience wrapper for the other two.
WannierIO.read_nnkp
— Functionread_nnkp(filename)
read_nnkp(filename, ::Wannier90Text)
read_nnkp(filename, ::Wannier90Toml)
Read wannier90 nnkp
file.
Return
lattice
: each column is a lattice vectorrecip_lattice
: each column is a reciprocal lattice vectorkpoints
: length-n_kpts
vector, each element isVec3
, in fractional coordinateskpb_k
: length-n_kpts
vector, each element is a length-n_bvecs
vector of integers, index of kpointskpb_G
: length-n_kpts
vector, each element is a length-n_bvecs
vector, then each element isVec3
for translations, fractional w.r.trecip_lattice
Wannier90 nnkp
file is a plain text format, the 2nd version reads nnkp
file in Wannier90 format. The thrid version read a TOML-format nnkp
file, which is defined by this package, see write_nnkp
. The 1st version auto detects the format and parse it.
WannierIO.write_nnkp
— Functionwrite_nnkp(filename; toml=false, kwargs...)
write_nnkp(filename, ::Wannier90Text; kwargs...)
write_nnkp(filename, ::Wannier90Toml; kwargs...)
Write a nnkp
file that can be used by DFT codes, e.g., QE pw2wannier90
.
Keyword Arguments
toml
: write to a TOML file, otherwise write to a Wannier90 text file formatrecip_lattice
: each column is a reciprocal lattice vectorkpoints
: length-n_kpts
vector ofVec3
, in fractional coordinateskpb_k
: length-n_kpts
vector, each element is a length-n_bvecs
vector of integers, index of kpointskpb_G
: length-n_kpts
vector, each element is a length-n_bvecs
vector, then each element is aVec3
for translation vector, fractional w.r.t.recip_lattice
n_wann
: if given, write anauto_projections
blockexclude_bands
: if given, write the specified band indices in theexclude_bands
blockheader
: first line of the file
Only use auto_projections
, the projections
block is not supported.
WannierIO.read_w90_rdat
— Methodread_w90_rdat(filename)
Read prefix_r.dat
.
Return
Rvectors
: $\mathbf{R}$-vectors on which operators are definedr_x
: $x$-component of position operatorr_y
: $y$-component of position operatorr_z
: $z$-component of position operatorheader
: the first line of the file
WannierIO.read_spn
— Functionread_spn(filename)
read_spn(filename, ::FortranText)
read_spn(filename, ::FortranBinary)
Read the wannier90 spn
file.
Return
Sx
: spin x, a length-n_kpts
vector, each element is an_bands
-by-n_bands
matrixSy
: spin y, a length-n_kpts
vector, each element is an_bands
-by-n_bands
matrixSz
: spin z, a length-n_kpts
vector, each element is an_bands
-by-n_bands
matrixheader
: 1st line of the file
WannierIO.write_spn
— Functionwrite_spn(filename, Sx, Sy, Sz; binary=false, header)
write_spn(filename, Sx, Sy, Sz, ::FortranText; header)
write_spn(filename, Sx, Sy, Sz, ::FortranBinary; header)
Write the spn
file.
WannierIO.read_w90_tbdat
— Methodread_w90_tbdat(filename)
Read prefix_tb.dat
.
Return
lattice
: each column is a lattice vector in ÅRvectors
: $\mathbf{R}$-vectors on which operators are definedRdegens
: degeneracies of each $\mathbf{R}$-vectorH
: Hamiltonian $\mathbf{H}(\mathbf{R})$r_x
: $x$-component of position operatorr_x
: $y$-component of position operatorr_x
: $z$-component of position operatorheader
: the first line of the file
WannierIO.write_w90_tbdat
— Methodwrite_w90_tbdat(
filename;
lattice,
Rvectors,
Rdegens,
H,
r_x,
r_y,
r_z,
header
)
Write prefix_tb.dat
.
Keyword arguments
See the return values of read_w90_tbdat
.
WannierIO.read_uHu
— Functionread_uHu(filename)
read_uHu(filename, ::FortranText; transpose_band_indices=true)
read_uHu(filename, ::FortranBinary; transpose_band_indices=true)
Read the wannier90 uHu
file.
Keyword Arguments
transpose_band_indices
: QE pw2wannier90.x writes the matrix in a strange transposed manner; if reading a QE-generateduHu
file, this flag should be true to restore the band indices order, so that the returned matrix has the correct order, i.e.,uHu[ik][ib1, ib2][m, n]
is $\langle u_{m, k + b_1}| H | u_{n, k + b_2} \rangle$
Return
uHu
: a length-n_kpts
vector, each element is an_bvecs * n_bvecs
matrix, then each element is an_bands * n_bands
matrixheader
: 1st line of the file
WannierIO.write_uHu
— Functionwrite_uHu(filename, uHu; binary=false, header)
write_uHu(filename, uHu, ::FortranText; header)
write_uHu(filename, uHu, ::FortranBinary; header)
Write the uHu
file.
Keyword Arguments
transpose_band_indices
: seeread_uHu
WannierIO.read_unk
— Functionread_unk(filename)
read_unk(filename, ::FortranText)
read_unk(filename, ::FortranBinary)
Read wannier90 UNK
file for the periodic part of Bloch wavefunctions.
Return
ik
: k-point index, start from 1Ψ
: periodic part of Bloch wavefunctions in real space, size =(n_gx, n_gy, n_gz, n_bands, n_spin)
WannierIO.write_unk
— Functionwrite_unk(filename, ik, Ψ; binary=false)
write_unk(filename, ik, Ψ, ::FortranText)
write_unk(filename, ik, Ψ, ::FortranBinary)
Write UNK
file for the periodic part of Bloch wavefunctions.
Arguments
- ik: at which kpoint? start from 1
- Ψ: Bloch wavefunctions,
size(Ψ) = (n_gx, n_gy, n_gz, n_bands, n_spin)
Keyword arguments
binary
: write as Fortran unformatted file
WannierIO.read_win
— Functionread_win(filename; fix_inputs=true)
read_win(filename, ::Wannier90Text; fix_inputs=true)
read_win(filename, ::Wannier90Toml; fix_inputs=true)
Read wannier90 input win
file.
Arguments
filename
: The name of the input file.
Keyword Arguments
fix_inputs
: sanity check and fix the input parameters, e.g., setnum_bands = num_wann
ifnum_bands
is not specified, convertatoms_cart
always toatoms_frac
, etc. See alsofix_win!
.
WannierIO.write_win
— Functionwrite_win(filename; toml=false, kwargs...)
write_win(filename, ::Wannier90Text; kwargs...)
write_win(filename, ::Wannier90Toml; kwargs...)
Write input parameters into a wannier90 win
file.
The input parameters are keyword arguments, with key names same as that of wannier90.
Examples
using WannierIO
write_win(
"silicon.win";
num_wann=4,
num_bands=4,
# unit_cell_cart is a matrix, its columns are the lattice vectors in angstrom
unit_cell_cart=[
0.0 2.71527 2.71527
2.71527 0.0 2.71527
2.71527 2.71527 0.0
],
# atoms_frac is a vector of pairs of atom_label and fractional coordinates
atoms_frac=[
:Si => [0.0, 0.0, 0.0],
:Si => [0.25, 0.25, 0.25],
# both `:Si` and `"Si"` are allowed
# "Si" => [0.25, 0.25, 0.25],
],
# each element in projections will be written as a line in the win file
projections=[
"random",
]
kpoint_path=[
[:G => [0.0, 0.0, 0.0], :X => [0.5, 0.0, 0.5]],
[:X => [0.5, 0.0, 0.5], :U => [0.625, 0.25, 0.625]],
],
mp_grid=[2, 2, 2],
# kpoints is a matrix, its columns are the fractional coordinates
kpoints=[
[0.0, 0.0, 0.0],
[0.0, 0.0, 0.5],
[0.0, 0.5, 0.0],
[0.0, 0.5, 0.5],
[0.5, 0.0, 0.0],
[0.5, 0.0, 0.5],
[0.5, 0.5, 0.0],
[0.5, 0.5, 0.5],
],
# additional parameters can be passed as keyword arguments, e.g.,
num_iter=500,
)
WannierIO.read_wout
— Methodread_wout(filename)
Parse wannire90 wout
file.
Return
lattice
: each column is a lattice vector in Årecip_lattice
: each column is a reciprocal lattice vector in Å⁻¹atom_labels
: atomic symbolsatom_positions
: in fractional coordinatescenters
: final each WF centers in Åspreads
: final each WF spreads in ŲΩI
,ΩD
,ΩOD
,Ωtotal
: final spread (components) in Ų
WannierIO.read_w90_wsvec
— Methodread_w90_wsvec(filename)
Read prefix_wsvec.dat
.
Return
mdrs
: whether use MDRS interpolation, i.e. theuse_ws_distance
in the headerRvectors
: the $\mathbf{R}$-vectorsTvectors
: the $\mathbf{T}_{m n \mathbf{R}}$-vectors. Returned onlymdrs = true
.Tdegens
: the degeneracies of $\mathbf{T}_{m n \mathbf{R}}$-vectors. Returned onlymdrs = true
.n_wann
: number of WFsheader
: the first line of the file
WannierIO.write_w90_wsvec
— Methodwrite_w90_wsvec(
filename;
Rvectors,
n_wann,
Tvectors,
Tdegens,
header
)
Write prefix_wsvec.dat
.
Keyword Arguments
n_wann
: for Wigner-Seitz Rvectors, needs to provide an_wann
for number of Wannier functions; for MDRS Rvectors, then_wann
is optional and can be automatically determined from theTvectors
Tvectors
andTdegens
: if provided, write in MDRS format; otherwise, write in Wigner-Seitz format
Also see the return values of read_w90_wsvec
.
Private API
These are some lower-level types/functions that are (probably) less used, thus not exported. Of course, you can still use them by prefixing WannierIO.
, e.g., WannierIO.read_w90_band_dat(filename)
.
WannierIO.default_band_kpt_kweights
— Methoddefault_band_kpt_kweights(kpoints)
Wannier90 default kweights in prefix_band.kpt
is all 1.0.
WannierIO.Chk
— TypeStruct for storing matrices in prefix.chk
file.
struct Chk{T<:Real}
One-to-one mapping to the wannier90 chk
file, but renaming the variable names so that they are consistent with the rest of the code.
Fields
header
: The header line, usually contains date and timen_bands
: number of bands, can be auto set in constructor according to dimensions of other variablesn_exclude_bands
: number of excluded bands, can be auto set in constructorexclude_bands
: Indices of excluded bands, starts from 1. Vector of integers, size:n_exclude_bands
lattice
: Matrix of size 3 x 3, each column is a lattice vector in Å unitrecip_lattice
: Matrix of size 3 x 3, each column is a reciprocal lattice vector in Å⁻¹ unitn_kpts
: number of kpoints, can be auto set in constructorkgrid
: dimensions of kpoint grid, 3 integerskpoints
: kpoint coordinates, fractional, length-n_kpts
vectorn_bvecs
: number of b-vectors, can be auto set in constructorn_wann
: number of Wannier functions, can be auto set in constructorcheckpoint
: a string to indicate the current step (after disentanglement, after maximal localization, ...) in wannier90have_disentangled
: Have finished disentanglement or notΩI
: Omega invariant part of MV spreads, in Ų unitdis_bands
: Indices of bands taking part in disentanglement, not frozen bands! length-n_kpts
vector, each element is a length-n_bands
vector of bool.This is needed since W90 puts all the disentanglement bands in the first several rows of
Udis
, (and the first few columns ofUdis
are the frozen bands) so directly multiplying eigenvalues e.g.(Udis * U)' * diag(eigenvalues) * (Udis * U)
is wrong!
n_dis
: number of bands taking part in disentanglement at each kpoint. can be auto set in constructor fromdis_bands
Udis
: Semi-unitary matrix for disentanglement, length-n_kpts
vector, each elment has size:n_bands
xn_wann
, i.e., theu_matrix_opt
in wannier90Uml
: Unitary matrix for maximal localization, length-n_kpts
vector, each element has size:n_wann
xn_wann
, i.e., theu_matrix
in wannier90. The abbreviationml
stands for maximal localization, so as to differentiate from the (combined) unitary matrixU = Udis * Uml
.M
: Wannier-gauge overlap matrix, length-n_kpts
vector of length-n_bvecs
vector, each element is a matrix of sizen_wann
xn_wann
, i.e., them_matrix
in wannier90r
: Wannier function centers, length-n_wann
vector, Cartesian coordinates in Å unit, i.e., thewannier_centres
variable in wannier90ω
: Wannier function spreads, length-n_wann
vector, Ų unit, i.e., thewannier_spreads
variable in wannier90
WannierIO.Chk
— MethodChk(
header,
exclude_bands,
lattice,
recip_lattice,
kgrid,
kpoints,
checkpoint,
have_disentangled,
ΩI,
dis_bands,
Udis,
Uml,
M,
r,
ω
)
Convenience constructor of Chk
struct that auto set some fields.
Base.isapprox
— Methodisapprox(a, b)
Compare two Chk
objects.
WannierIO._check_eig_order
— Method_check_eig_order(eigenvalues; digits)
Check that eigenvalues are in order.
Some times there are small noises, use digits
to set the number of digits for comparisons.
WannierIO._reshape_eig
— Method_reshape_eig(idx_b, idx_k, eig)
Reshape a vector of eigenvalues into a matrix of eigenvalues.
Auto detect the number of bands and kpoints.
WannierIO.write_HH_R
— Methodwrite_HH_R(filename, H, R; N, header)
Write the real space Hamiltonian to a prefix_HH_R.dat
file.
Arguments
filename
: usuallyprefix_HH_R.dat
H
: an_wann * n_wann * n_rvecs
array of HamiltonianR
: an_rvecs * 3
array of integers
Keyword arguments
N
: an_rvecs
vector of integers, the degeneracy of each R vectorheader
: a string, the header of the file
Wanier90
postw90.x
has a hidden input parameter effective_model
, setting it to true
and postw90.x
will read this HH_R.dat
to fill the real space Hamiltonian, and do subsequent Wannier interpolation, e.g., in BoltzWann
. However, the vanila postw90.x
code does not take into account the degeneracy of R vectors, and also does not use MDRS interpolation. I have modified the postw90.x
code to use MDRS, and also changed a bit the number of digits for the Hamiltonian in HH_R.dat
, so that it is the same as the prefix_tb.dat
file, i.e., from Fortran F12.6
to E15.8
.
WannierIO._check_dimensions_M_kpb
— Method_check_dimensions_M_kpb(M, kpb_k, kpb_G)
WannierIO._check_dimensions_kpb
— MethodCheck the dimensions between the quantities are consistent.
WannierIO._check_dimensions_Sx_Sy_Sz
— Method_check_dimensions_Sx_Sy_Sz(Sx, Sy, Sz)
WannierIO.read_u_mat
— Methodread_u_mat(filename)
Read wannier90 prefix_u.mat
or prefix_u_dis.mat
file.
Arguments
filename
: the input file name
Return
U
:Udis
(for disentanglement) orU
(for maximal localization) matriceskpoints
: fractional kpoint coordinatesheader
: 1st line of the file
The wannier90
output prefix_u_dis.mat
internally sorts the band indices according to the disnentanglement window, therefore it can be different from the original Bloch states, see the code and comments in get_Udis
.
WannierIO.write_u_mat
— Methodwrite_u_mat(filename, U, kpoints; header=default_header())
Write wannier90 prefix_u.mat
or prefix_u_dis.mat
file.
Arguments
filename
: the input file nameU
:Udis
(for disentanglement) orU
(for maximal localization) matriceskpoints
: fractional kpoint coordinates
Keyword arguments
header
: 1st line of the file, optional
The wannier90
output prefix_u_dis.mat
internally sorts the band indices according to the disnentanglement window, therefore it can be different from the original Bloch states, see the code and comments in get_Udis
. This function just writes whatever is inside the input U
matrix, without consider the order of disentanglement window.
WannierIO._check_win_required_params
— Method_check_win_required_params(kwargs)
WannierIO.fix_win!
— Method