Conjugate orbitals
A conjugated orbital, $\conj{\chi}$ (often written $\bra{\chi}$) is the dual to the unconjugated orbital $\chi$ (often written $\ket{\chi}$). In the code, conjugation of orbitals is denoted with a dagger (†
) to avoid confusion with the multiplication operator *
.
EnergyExpressions.Conjugate
— TypeConjugate(orbital)
Type representing the conjugation of an orbital
.
Examples
julia> Conjugate(:a)
:a†
Base.conj
— Functionconj(o::AbstractOrbital)
Convenience function to conjugate an AbstractOrbital
.
Examples
julia> conj(o"1s")
1s†
conj(o::Conjugate)
Convenience function to unconjugate a conjugated orbital.
Examples
julia> conj(Conjugate(:a))
:a