get_chi Subroutine

public subroutine get_chi(this, chi)

Routine that gets .

Arguments

Type IntentOptional AttributesName
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.


Contents

Source Code


Source Code

  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