ExcitationSpectra - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Toolboxes : Quantum Chemistry : ExcitationSpectra

QuantumChemistry

  

ExcitationSpectra

  

compute electronic excitation spectra

  

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ExcitationSpectra(molecule, method, options)

Parameters

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

Description

• 

ExcitationSpectra computes the excitation spectra from exciting a molecule from its ground state to its excited states.

• 

The procedure returns a (n+1)x5 Matrix containing the state indices, excitation energies (eV), wavelengths (nm), spin states, and oscillator strengths in columns 1 through 5.

• 

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, the excitation spectrum 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, the excitation spectrum 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 results if they have not been previously computed by calling the method directly or indirectly through another property.

Examples

withQuantumChemistry:

The excitation spectrum 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;

moleculeO,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

(1)

Second, we plot uracil with the PlotMolecule command

PlotMoleculemolecule;

Finally, we compute the excitation spectrum

spectra_hf  ExcitationSpectramolecule;

By double clicking the output matrix above, the result can be viewed in a Matrix Browser with options to export the data.

The excitation spectrum can also be displayed in a fancy table by setting the optional keyword showtable to true

spectra_hf  ExcitationSpectramolecule,showtable=true:

State

Energy

Wavelength

Spin

Oscillator

1

1.65278918eV

750.15131459nm

Triplet

0.09549895

2

2.45168585eV

505.70996852nm

Triplet

1.11703722

3

4.00939275eV

309.23435292nm

Triplet

0.00124086

4

4.23672317eV

292.64172436nm

Triplet

0.19791022

5

4.96448093eV

249.74251925nm

Singlet

0.00044464

6

5.06631845eV

244.72247165nm

Triplet

5.2781861510−6

7

5.96397672eV

207.88846634nm

Singlet

3.1880265510−6

8

7.66373894eV

161.78029858nm

Singlet

0.44300524

9

8.01747072eV

154.64253217nm

Triplet

0.03274886

10

9.09339139eV

136.34538766nm

Singlet

0.09522948

11

9.33659752eV

132.79376891nm

Singlet

0.31692231

12

9.48641938eV

130.69651722nm

Singlet

0.01142447

 

The number of states computed can be controlled with the keyword nstates; i.e., nstates=1 computes 1 singlet and 1 triplet state

spectra_hf  ExcitationSpectramolecule,nstates=1, showtable=true:

State

Energy

Wavelength

Spin

Oscillator

1

1.65296570eV

750.07120276nm

Triplet

0.09562993

2

4.96447439eV

249.74284838nm

Singlet

0.00044473

 

See Also

ExcitationSpectraPlot
ExcitedStateEnergies
Energy
HartreeFock
DensityFunctional