Routine that gets .
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(g_orbit), | intent(inout) | :: | this | The routine is called on this g_orbit object. |
||
real(kind=wp), | intent(out) | :: | chi | The osculaing orbits parameter, that changes by over a full radial cycle. |
subroutine get_chi ( this, chi )
!! Routine that gets \(\chi\).
class(g_orbit), intent(inout) :: this
!! The routine is called on this [[g_orbit]] object.
real(wp), intent(out) :: chi
!! The osculaing orbits parameter, \(\chi\) that changes by \(2\pi\) over
!! a full radial cycle.
chi = this%chi
end subroutine get_chi