QuantumChemistry
TransitionDipoles
compute transition dipole moments of ground-to-excited-state transitions
Calling Sequence
Parameters
Description
Examples
TransitionDipoles(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'
nstates
(optional) nstates = integer/list where the integer specifies the number of excited states computed
showtable
(optional) showtable = true or false (default) displays a fancy table when set to true
options
(optional) equation(s) of the form option = value where option is any valid option of the chosen method
TransitionDipoles computes the electronic transition dipole moments in the length gauge of ground-to-excited-state transitions.
The procedure returns the transition dipoles in debyes as a (n+1)x4 Matrix containing the state indices and transition dipoles.
Methods, set by the method keyword, include 'HartreeFock' (default) and 'DensityFunctional'.
The number n of excited states is determined by the optional keyword nstates. If nstates = n, then n singlet and n triplet states are computed. If nstates=[n,m], then n singlet and m triplet states are computed. By default, nstates = 6.
The data can be displayed in a fancy table by setting the optional keyword showtable to true (the default is false).
When the HartreeFock method is selected, transition dipole moments can be computed by either the time-dependent Hartree-Fock (TDHF) or the configuration interaction singles (CIS) method. By default TDHF is performed. TDHF and CIS can be directly selected by setting the optional keyword excited_states to the string "TDHF" or "CIS".
When the DensityFunctional method is selected, transition dipole moments can be computed by either the time-dependent density functional theory (TDDFT) or the Tamm-Dancoff approximation (TDA) method. By default TDDFT is performed. TDDFT and TDA can be directly selected by setting the optional keyword excited_states to the string "TDDFT" or "TDA".
The result depends upon the chosen molecule, method, and basis set among other options such as charge, spin, and symmetry. The ground-state molecule must be in a singlet state, that is spin = 0.
The command only works with methods that return excitation energies.
Because the methods employ Maple remember tables, the procedure only computes the transition dipole moments if they have not been previously computed by calling the method directly or indirectly through another property.
withQuantumChemistry:
The transition dipole moments of the uracil molecule can be computed with the Hartree-Fock (TDHF) method.
First, we define the molecule's geometry with the MolecularGeometry command
molecule ≔ MolecularGeometryuracil;
molecule≔O,2.32640000,0.96510000,0.00010000,O,−2.29720000,1.02320000,0.00050000,N,0.01800000,1.01990000,−0.00020000,N,1.16370000,−1.02210000,0.00010000,C,1.25240000,0.36290000,0,C,−1.23150000,0.41410000,−0.00040000,C,−0.02680000,−1.69550000,0.00020000,C,−1.20490000,−1.06760000,−0.00020000,H,0.03820000,2.03570000,−0.00010000,H,2.01870000,−1.57020000,0.00040000,H,−2.14430000,−1.60630000,−0.00020000,H,0.04690000,−2.77610000,0.00040000
Second, we plot uracil with the PlotMolecule command
PlotMoleculemolecule;
Finally, we compute the transition dipole moments
dipoles_hf ≔ TransitionDipolesmolecule;
By double clicking the output matrix above, the result can be viewed in a Matrix Browser with options to export the data.
The transition dipoles can also be displayed in a fancy table by setting the optional keyword showtable to true
dipoles_hf ≔ TransitionDipolesmolecule,showtable=true:
State
X
Y
Z
1
1.08418797⁢D
1.08763901⁢D
−0.00285306⁢D
2
2.16607246⁢D
3.71639311⁢D
−0.30599621⁢D
3
0.00017687⁢D
−0.00057381⁢D
0.11239221⁢D
4
−1.01664874⁢D
−0.80604258⁢D
−0.47266656⁢D
5
−0.00011862⁢D
−0.00007533⁢D
0.06046264⁢D
6
−0.00001620⁢D
−0.00003577⁢D
−0.00652092⁢D
7
−0.00003779⁢D
0.00001121⁢D
0.00467088⁢D
8
1.45154191⁢D
−0.50246622⁢D
0.00012751⁢D
9
0.00004061⁢D
0.00033925⁢D
0.40831957⁢D
10
0.31832038⁢D
−0.57107286⁢D
0.00016516⁢D
11
1.02741691⁢D
0.57438053⁢D
−0.00032814⁢D
12
0.06866091⁢D
0.03173842⁢D
0.20840890⁢D
The number of states computed can be controlled with the keyword nstates; i.e., nstates=1 computes 1 singlet and 1 triplet state
dipoles_hf ≔ TransitionDipolesmolecule,nstates=1, showtable=true:
1.08474448⁢D
1.08845470⁢D
−0.00291095⁢D
−0.00009369⁢D
−0.00009133⁢D
0.06046855⁢D
See Also
ExcitationSpectra ExcitationSpectraPlot OscillatorStrengths ExcitedStateEnergies Energy HartreeFock DensityFunctional
Download Help Document