Rotatory strengths¶
The strength of an ECD band is given by the anisotropy of the decadic molar extinction coefficient Norman et al. (2018)
where is Avogadro’s constant, is the Cauchy distribution, and is the rotatory strength defined as
In VeloxChem, the rotatory strength is evaluated in the velocity gauge as given in the second expression, and it is thereby gauge-origin independent.
Python script
import veloxchem as vlx
xyz="""
...
"""
molecule = vlx.Molecule.read_xyz_string(xyz)
basis = vlx.MolecularBasis.read(molecule, 'def2-svp')
scf_drv = vlx.ScfRestrictedDriver()
scf_drv.xcfun = 'cam-b3lyp'
scf_drv.filename = 'mol-ecd'
results = scf_drv.compute(molecule, basis)
rsp_drv = vlx.lreigensolver.LinearResponseEigenSolver()
rsp_drv.nstates=10
rsp_drv.nto = True
rsp_drv.filename = 'mol-ecd'
results = rsp_drv.compute(molecule, basis, results)Text file
@jobs
task: response
@end
@method settings
basis: def2-svpd
xcfun: b3lyp
@end
@response
property: ecd
nstates: 10
nto: yes
@end
@molecule
charge: 0
multiplicity: 1
xyz:
...
@end
Extinction coefficient¶
The anisotropy of the decadic molar extinction coefficient can be determined directly from the complex polarization propagator evaluated for mixed electric- and magnetic-dipole operators Jiemchooroj & Norman (2007)
where the molecular response property, , is defined as
and
The mixed electric–magnetic dipole tensor, , is evaluated in the velocity gauge as given in the second expression. Furthermore, it is complex and calculated with a damping term, , associated with the inverse finite lifetime of the excited states. The default program setting for this parameter is 0.124 eV (or 0.004556 a.u.).
The resulting values for are converted from atomic units to units of L mol cm by multiplying with a factor of .
Python script
import veloxchem as vlx
xyz="""
....
"""
molecule = vlx.Molecule.read_xyz_string(xyz)
basis = vlx.MolecularBasis.read(molecule, 'def2-svp')
scf_drv = vlx.ScfRestrictedDriver()
scf_drv.xcfun = 'cam-b3lyp'
scf_drv.filename = 'mol-cpp'
scf_results = scf_drv.compute(molecule, basis)
cpp_drv = vlx.ComplexResponse()
cpp_drv.frequencies = np.arange(0.2, 0.35, 0.0025)
cpp_drv.damping = 0.0045563
cpp_drv.cpp_flag = "ecd"
cpp_drv.filename = 'mol-cpp'
cpp_results = cpp_drv.compute(molecule, basis, scf_results)Text file
@jobs
task: response
@end
@method settings
basis: def2-svpd
xcfun: b3lyp
@end
@response
property: ecd (cpp)
! frequency region (and resolution)
frequencies: 0.05-0.15 (0.0025)
damping: 0.0045563 ! this is the default value
@end
@molecule
charge: 0
multiplicity: 1
xyz:
...
@endExciton coupling model¶
VeloxChem implements the exciton coupling model to determine circular dichroism spectra.
Python script
to be added.Text file
@jobs
task: exciton
@end
@method settings
xcfun: b3lyp
basis: cc-pvdz
@end
@exciton
fragments: 40
atoms_per_fragment: 55
nstates: 5
ct_nocc: 0
ct_nvir: 0
@end
@molecule
charge: 0
multiplicity: 1
xyz:
...
! XYZ coordinates for 40 x 55 atoms
...
@end- Norman, P., Ruud, K., & Saue, T. (2018). Principles and practices of molecular properties. John Wiley & Sons, Ltd.
- Jiemchooroj, A., & Norman, P. (2007). Electronic circular dichroism spectra from the complex polarization propagator. J. Chem. Phys., 126(13), 134102. 10.1063/1.2716660