Hello expert,
I have calculated the sum of spin for orbitals but I am interested to separately calculated the spin up and spin down for each orbital.
kpoint_grid = MonkhorstPackGrid()
projected_density_of_states = ProjectedDensityOfStates(
configuration=configuration,
kpoints=kpoint_grid,
projections=ProjectOnShellsByElement,
spin_up = spin.evaluate(spin=Spin.Up)
spin_dn = spin.evaluate(spin=Spin.Down)
energies=numpy.linspace(-2, 2, 401)*eV,
energy_zero_parameter=FermiLevel,
bands_above_fermi_level=All,
spectrum_method=GaussianBroadening(0.01*eV),
)
It's not working - can you please suggest me what's wrong in here