zacmanchester / CPEG.jl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CPEG.jl

A Julia implementation of CPEG. An existing implementation of this algorithm is also available in EntryGuidance.jl.

The desired API is the following:

using CPEG

# initialize workspace
cp = cpeg_workspace()

# update atmosphere
update_atmosphere_params(cp,p::DensityParameters) 

# initialize trajectory 
cp.U = U # for some U 

# call call the alg
U_new = update_trajectory(cp,r,v) # cartesian position and velocity in MCMF

About

License:MIT License


Languages

Language:Julia 100.0%