Dear, all
I try to calculate the band structure from the optimized structures. (orthorhombic structure). However, there is no guide line to setup the k-path (e.g., G, X, Z, ...). From the wikipedia, the high symmetry points for simple orthorhombic system is represented by (G -> X -> U -> Z ->G )
http://en.wikipedia.org/wiki/Brillouin_zone#mediaviewer/File:Simple_Orthorhombic_Lattice_(Brillouin_zone).pngIs it right? How can I check the path is right?
Actually, I wanted to calculate the band along the k-path [0,0,0] -> [0,0.5,0] -> [0,0,0.5] -> [0,0,0].
However, I got the error message using below input file.
The error is about the using of "points_per_segment=20,"
Why it cannot use "points_per_segment=20," with kpoints option?
configuration = nlread('../analysis.nc', object_id='gID001')[0]
# -------------------------------------------------------------
# Bandstructure
# -------------------------------------------------------------
bandstructure = Bandstructure(
configuration=configuration,
kpoints=[[0.0,0.0,0.0],[0.0,0.5,0.0],[0.0,0.5,0.5],[0.0,0.0,0.5],[0.0,0.0,0.0]],
points_per_segment=20,
bands_above_fermi_level=All,
projection_list=ProjectionList(elements=[Lanthanum,Manganese,Strontium,Oxygen]),
)
nlsave('0Vo_Band_LSMO_part.nc', bandstructure)