Hi Anders,
thank you very much for the fast answer. I already have Molecule energy spectra and I know how to project over the atoms that I need.
The problem that I have is that I want to used this function: calculateProjectedHamiltonianEigenstates
calculateProjectedHamiltonianEigenstates(
self_consistent_calculation = scf,
projection_atoms = (32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76),
quantum_numbers = [(72,73,74,75),Spin.Up]
)
I need the eigenstates in order to able them to relate with the shape of the 'molecule orbitals'. MoleculeEnergySpectrum is giving me only the energies.
In the MoleculeEnergySpectrum class we have only 3 list of argument:
http://quantumwise.com/documents/manuals/latest/ReferenceManual/XHTML/ref.molecularenergyspectrum.html MolecularEnergySpectrum(
configuration,
energy_zero_parameter,
projection_list
)
We don have list of argument such as Spin and Quantum Number to be able to specify which number molecule orbitals I need. Is it correct?
Sorry that I am bothering you again with this.