Calculates the total ionization cross section for a Neutral Hydrogen atom
in the state colliding with a fully stripped Carbon ion at energy eb
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in) | :: | eb |
function C6_ioniz_1_janev(eb) result(sigma)
!+ Calculates the total ionization cross section for a Neutral Hydrogen atom
!+in the \(n=1\) state colliding with a fully stripped Carbon ion at energy `eb`
!+
!+###Equation
!+$$ C^{6+} + H(1) \rightarrow C^{6+} + H^+ + e $$
!+
!+###References
!+* Page 154 in Ref. 5 [[atomic_tables(module)]]
real(Float64), intent(in) :: eb
real(Float64) :: sigma
real(Float64), dimension(8), parameter :: A = [ 438.36d0, 327.10d0, &
1.4444d5, 3.5212d-3, &
8.3031d-3, -0.63731d0, &
1.9116d4, -3.1003d0 ]
sigma = 1.d-16*A(1)*(exp(-A(2)/eb)*log(1 + A(3)*eb)/eb &
+ A(4)*exp(-A(5)*eb)/((eb**A(6)) + A(7)*(eb**A(8))))
end function C6_ioniz_1_janev