Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 897 Bytes

File metadata and controls

21 lines (16 loc) · 897 Bytes

astrodynamics

Fundamentals of Astrodynamics equations, plots, and visualizations. Code was made from content learned from AE412 Space Systems class at O.S.U. and Fundamentals of Astrodynamics textbook.

Running plot_orbit(h,e,i)

plot_orbit(h,e,22.5)

where h is angular momentum, e is orbit eccentricity, and i is 22.5 degrees inclination returns a graphic, representing that satelling orbit. Optional arguments are the gravitational parameter mu and the planet radius, which default to 398600 and 6316km for an earth satellite. An example for a mars gravitational parameter and radius would be:

plot_orbit(h,e,22.5,mu=42830,planet_radius = 3397)

plot_orbit

Running

orbit_eq(h,e,theta)

where angular momentum, eccentricity, and theta are known, returns radius of the satellite from the body.