QuantumChemistry
Populations
compute the atomic-orbital populations
Calling Sequence
Parameters
Description
Examples
Populations(molecule, method, options)
molecule
-
list of lists; each list has 4 elements, the string of an atom's symbol and atom's x, y, and z coordinates
method
(optional) method = name/procedure where name is one of 'HartreeFock' (default), 'DensityFunctional','RDMFunctional', 'ActiveSpaceCI', 'ActiveSpaceSCF', 'CoupledCluster', 'FullCI','MP2', 'Variational2RDM', 'Parametric2RDM', 'ContractedSchrodinger'
options
(optional) equation(s) of the form option = value where option is any valid option of the chosen method
The Populations command computes the partial atomic charges of each atomic orbital (AO).
The output is an NAO x 2 Matrix where the first column contains the AO labels and the second column contains the populations.
The optional keyword populations can be set to "Mulliken" (default) or "Mulliken/meta-Lowdin".
The result depends upon the chosen molecule, method, and basis set among other options such as charge, spin, and symmetry.
Because the methods employ Maple cache tables, the procedure only computes the populations if they have not been previously computed by calling the method directly or indirectly through another property.
withQuantumChemistry:
Consider the hydrogen fluoride molecule
mol≔ H, 0, 0, 0, F, 0, 0, 0.95;
mol≔H,0,0,0,F,0,0,0.95000000
The atomic-orbital Mulliken populations from the Hartree-Fock method are
output≔ Populationsmol, method='HartreeFock';
output≔0 H 1s0.805206141 F 1s1.999116691 F 2s1.947657911 F 2px2.000000001 F 2py2.000000001 F 2pz1.24801926
See Also
HartreeFock DensityFunctional RDMFunctional MP2 CoupledCluster FullCI ActiveSpaceCI ActiveSpaceSCF Variational2RDM Parametric2RDM ContractedSchrodinger
Download Help Document