Hi,
We want to perform spin-polarized Mulliken population analysis for a certain Fe-complex by using ATK 12.8.2. After the calculation we have found in the output file that in the "Mulliken Population Report" section it printed only the total spin value instead of printing spin up and spin down values of electrons separately. I want to see the "Mulliken Population Report" for spin-up and spin-down electrons separately. A certain portion of the output file is given below:
xy zy zz-rr zx xx-yy
27 Fe 7.578 1.103 0.162 0.248 0.195 0.222 0.275
s
0.027 0.027
xy zy zz-rr zx xx-yy
5.166 0.566 1.247 0.834 1.061 1.457
s
0.569 0.569
y z x
0.713 0.237 0.248 0.228
Please tell me how can I get the Mulliken Population Report separately for up and down spin electrons and what I have to write exactly in the .py file?
My next query is about the noncollinear spin calculation on the same complex. We have performed the noncollinear spin calculation by using the block:
#----------------------------------------
# Exchange-Correlation
#----------------------------------------
exchange_correlation = NCLDA.PZ
Apart from that we have specified the spin direction in physical spherical coordinates and orbital Mulliken population by using the blocks:
# -------------------------------------------------------------
# Initial State
# -------------------------------------------------------------
bulk_configuration.setCalculator(
calculator = LCAOCalculator( ),
initial_spin = InitialSpin(scaled_spins=[(Carbon, 0.0, 0.0*numpy.pi*Radians, 0.0*numpy.pi*Radians), (Hydrogen, 0.0, 0.0*numpy.pi*Radians, 0.0*numpy.pi*Radians), (Nitrogen, 0.0, 0.0*numpy.pi*Radians, 0.0*numpy.pi*Radians), (Selenium, 0.0, 0.0*numpy.pi*Radians, 0.0*numpy.pi*Radians), (Iron, 1.0, 0.5*numpy.pi*Radians, 0.4*numpy.pi*Radians)])
)
bulk_configuration.update()
nlsave('C:\Documents and Settings\Administrator\Desktop\fefe-hs-0v-ncspin-lda-final.nc', bulk_configuration)
nlprint(bulk_configuration)
# -------------------------------------------------------------
# Mulliken population
# -------------------------------------------------------------
mulliken_population = MullikenPopulation(bulk_configuration)
nlsave('C:\Documents and Settings\Administrator\Desktop\fefe-hs-0v-ncspin-lda-final.nc', mulliken_population)
nlprint(mulliken_population)
It is already mentioned in the ATK 12.8.2 manual that "The atom Mulliken Population can be diagonalized to give a local spin direction, and this direction is reported by the nlprint command for noncollinear systems. The nlprint report for noncollinear spin also shows the orbital mulliken populations in the local spin direction." But unfortunately we could not find any spin direction in the "Mulliken Population Report" section of the output file and it looks exactly similar as that obtained earlier for spin-polarized calculation (see the selected portion of the output file above). I want to know how can I see the local spin direction in the output file? What is the correct .py file from which one can visualize the spin direction?
Is it possible to get the spin-up and spin-down values separately for a noncollinear system instead of total spin value? If yes please tell me the proper keyword/block in the .py file.
Thanks in advance.