Calculates the excitation cross section for a neutral Hydrogen atom transitioning from
the state to the state due to a collision an ion with charge q
at energy eb
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in) | :: | eb | Collision energy [keV] |
||
integer, | intent(in) | :: | q | Ion charge |
Cross Section []
function Aq_excit_2_8_janev(eb, q) result(sigma)
!+Calculates the excitation cross section for a neutral Hydrogen atom transitioning from
!+the \(n=2\) state to the \(m=8\) state due to a collision an ion with charge `q` at energy `eb`
!+
!+###Equation
!+$$ A^{q+} + H(2) \rightarrow A^{q+} + H(8), q \gt 3 $$
!+
!+###References
!+* Page 140 in Ref. 5 [[atomic_tables(module)]]
!+
real(Float64), intent(in) :: eb
!+ Collision energy [keV]
integer, intent(in) :: q
!+ Ion charge
real(Float64) :: sigma
!+ Cross Section [\(cm^2\)]
real(Float64), parameter :: A = 0.1465d0
real(Float64) :: hi
hi = 2.0**(0.397*(1.0 - sqrt(2.0/q)))
sigma = A*hi*Aq_excit_2_5_janev(eb, q)
end function Aq_excit_2_8_janev