I'm little confusing...
If I first projection on elements or angular momenta from reading the analysis.nc (optimized file) using below input file. Is that the same or different with the band from the script?
# -------------------------------------------------------------
# Bandstructure
# -------------------------------------------------------------
bandstructure = Bandstructure(
configuration=configuration,
route=['G', 'X', 'U', 'Z', 'G'],
points_per_segment=20,
bands_above_fermi_level=4,
projection_list=ProjectionList(elements=[Silicon, Oxygen]),
)
nlsave('Band1.nc', bandstructure)
# -------------------------------------------------------------
# Bandstructure
# -------------------------------------------------------------
bandstructure = Bandstructure(
configuration=configuration,
route=['G', 'X', 'U', 'Z', 'G'],
points_per_segment=20,
bands_above_fermi_level=4,
projection_list=ProjectionList(elements=[Silicone]),
)
nlsave('Band2.nc', bandstructure)