Compute the hyperbolic turning angle from the eccentricity.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | e |
eccentricity [--] |
turning angle [rad]
pure function hyperbolic_turning_angle(e) result(delta) implicit none real(wp),intent(in) :: e !! eccentricity [--] real(wp) :: delta !! turning angle [rad] delta = two*asin(one/e) end function hyperbolic_turning_angle