-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Order of the G functions for molden file #29
Comments
I think the ordering between molden and gamess is different for G. Maybe there is an option to switch format. Or maybe I'm crazy... |
We have the option to switch from Molden to Gamess ordering. In Gamess we only go up to F functions, following the comments, for molden I'm taking the G ordering from the fchk file needed for Erkale. But this doesn't seem to be the correct order for molden |
Ah Ok, so then for G we simply never checked the order. Probably we just added a warning |
Muchas gracias don Jorge! Definitively the order is wrong Molden expected format 9G: G 0, G+1, G-1, G+2, G-2, G+3, G-3, G+4, G-4 Current order in the code: |
When writing a molden output, we call the MolecularSystem_changeOrbitalOrder routine
This routine for the G functions seems not to be working properly. For example, when we load the molden file produced by this input
SYSTEM_DESCRIPTION='Molecula de H2O'
GEOMETRY
e-[O] CC-PVQZ 0.000000 0.000000 -0.066575
e-[H] 6-31G 0.000000 0.754175 0.528381
e-[H] 6-31G 0.000000 -0.754174 0.528382
O dirac 0.000000 0.000000 -0.066575
H_1 dirac 0.000000 0.754175 0.528381
H_1 dirac 0.000000 -0.754174 0.528382
END GEOMETRY
TASKS
method = "RHF"
END TASKS
OUTPUTS
moldenFile
END OUTPUTS
Molden computes:
Sum of Mulliken Charges: 0.0201
This number should be zero!
The sum of Mulliken Charges becomes zero if we replace the CC-PVQZ with CC-PVTZ basis. That's why I think the order of the G functions may be incorrect
The text was updated successfully, but these errors were encountered: