patch_point Derived Type

type, public :: patch_point

a CR3BP Halo state, to be used as an initial guess for the full force model.


Inherited by

type~~patch_point~~InheritedByGraph type~patch_point patch_point type~mission_type mission_type type~mission_type->type~patch_point periapsis, quarter, apoapsis type~my_solver_type my_solver_type type~my_solver_type->type~mission_type mission

Components

Type Visibility Attributes Name Initial
real(kind=wp), public :: t = zero

Time from Periapse (days from periapsis)

real(kind=wp), public, dimension(6) :: rv = zero

Rx (km) Ry (km) Rz (km) Vx (km/s) Vy (km/s) Vz (km/s) [moon-centered earth-moon rotating frame]


Source Code

    type,public :: patch_point
        !! a CR3BP Halo state, to be used as
        !! an initial guess for the full force model.
        real(wp) :: t = zero                !! Time from Periapse (days from periapsis)
        real(wp),dimension(6) :: rv = zero  !! Rx (km)
                                            !! Ry (km)
                                            !! Rz (km)
                                            !! Vx (km/s)
                                            !! Vy (km/s)
                                            !! Vz (km/s) [moon-centered earth-moon rotating frame]
    end type patch_point