ohno / Antique.jl

Self-contained, well-tested, well-documented Analytical Solutions of Quantum Mechanical Equations.
https://ohno.github.io/Antique.jl/
MIT License
19 stars 3 forks source link

Hydrogen molecular ion #9

Open ohno opened 9 months ago

ohno commented 9 months ago

Implement the module of :HydrogenMolecularIon. It is thought that this system has an analytically solvable Schrödinger equation (See Wikipedia). But I have not found a closed-form of the solutions. At first, find an appropriate reference from the candidates:

Here is the unfinished code:

# Stewart(1953) https://doi.org/10.1098/rsta.1953.0014
Ψ(λ,μ,φ) = Λ(λ) * M(μ) * Φ(φ)
M(μ;l,m,p) = ?
Λ(λ;R,m,σ,p) = sqrt(λ^2-1)^m * (λ+1)^σ(R,p,m)*exp(-p*λ) * y(ζ(λ))
σ(R,p,m) = ?
ζ(λ) = (λ-1) / (λ+1)