QuantumChemistry
MOSymmetries
compute the molecular-orbital (MO) symmetries
Calling Sequence
Parameters
Description
Examples
MOSymmetries(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
MOSymmetries computes the orbital symmetries of the molecular orbitals (MOs).
The procedure returns the MO symmetries as a Vector whose n-th element gives the symmetry of the n-th MO.
The default method is 'HartreeFock' method whose correlation energy is 0.
The result depends upon the chosen method and point-group symmetry.
Because the methods employ Maple remember tables, the procedure only computes the MO symmetries if they have not been previously computed by calling the method directly or indirectly through another property.
withQuantumChemistry:
Computation of the MO symmetries of the hydrogen fluoride HF molecule with the Hartree-Fock method
molecule ≔ H,0,0,0,F,0,0,0.95;
molecule≔H,0,0,0,F,0,0,0.95000000
output_hf ≔ MOSymmetriesmolecule, method='HartreeFock', symmetry=true;
output_hf≔A1A1A1E1xE1yA1
See Also
Energy HartreeFock DensityFunctional RDMFunctional MP2 CoupledCluster FullCI ActiveSpaceCI ActiveSpaceSCF Variational2RDM Parametric2RDM ContractedSchrodinger
Download Help Document