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 *.

Base.conjFunction
conj(o::AbstractOrbital)

Convenience function to conjugate an AbstractOrbital.

Examples

julia> conj(o"1s")
1s†
source
conj(o::Conjugate)

Convenience function to unconjugate a conjugated orbital.

Examples

julia> conj(Conjugate(:a))
:a
source