Comment on Hydrogen atom
Closed this issue · 5 comments
For hydrogen atoms, I think it should be mentioned that only the coulomb potential is included in the model.
For realistic hydrogen atoms, more interactions should be included.
Also, I think the muonic atom is also interesting.
The difference is that the electron mass is replaced by muon mass.
I do not know if a separate module should be made or included in the hydrogen atom.
In the definition of Hamiltonian, I think the kinetic energy includes the Laplacian operator.
Not only d^2/dr^2.
I think so too. Actually, the original code was for more general cases because it was developed for isotope effects between
I will also update the hydrogen atom documentation.
If I am not mistaken, the general coulomb problem is already included in the module HydrogenAtom, by using the reduced mass instead of the electron mass as input, right? Then it might be the best to rename the module and keep the special case of the (purely-coulomb) Hydrogen Atom within the documentation, what do you think? I think having the same module twice is confusing, also as Jafar mentioned the actual Hydrogen Atom has more features than the pure Coulomb potential.
Yes, we use reduced mass
The current implementations of the energy
and
must be changed to
and
Here I used
-
$E_\mathrm{h} \rightarrow \frac{\mu}{m_\mathrm{e}} E_\mathrm{h}$ , -
$a_0 \rightarrow a_0 \frac{m_\mathrm{e}}{\mu}$ .
This is too difficult for users. I think new model is needed for the general Coulomb 2-body system. The model name will be :TwoBodyCoulomb
or :CoulombTwoBody
.
I updated the documentation for hydrogen atom.
@ajarifi I added "The potential includes only Coulomb interaction and it does not include fine or hyperfine interactions in this model." and modified kinetic term of Hamiltonian. Please check the documentation for hydrogen atom.
https://ohno.github.io/Antique.jl/stable/HydrogenAtom/
Please close this issue if it is enough. Or submit PR if it is not enough.