Skip to content

Commit

Permalink
mu unit error Update single-impulse-example.md (#30)
Browse files Browse the repository at this point in the history
Units of standard gravitational parameter were wrong 
Changed from Km2/s3
to Km3/s2
  • Loading branch information
elizabeth892 authored Jul 5, 2024
1 parent 9f20ae9 commit 8d7bb83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orbital-maneuvers/single-impulse-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ np.set_printoptions(legacy="1.25")
R_E = 6378 # km
orbit_radius = 1000 # km
mu = 398_600 # km**2/s**3
mu = 398_600 # km**3/s**2
theta = np.radians(35)
earth = Circle((0, 0), R_E, facecolor="paleturquoise", edgecolor="None")
orbit = Circle((0, 0), R_E + orbit_radius, facecolor="None", edgecolor="black")
Expand Down Expand Up @@ -130,7 +130,7 @@ Then, Eq. {eq}`eq:distance-to-apoapsis` is used to find $h$.
import numpy as np
R_E = 6378 # km
mu = 398_600 # km**2/s**3
mu = 398_600 # km**3/s**2
z_0 = 1000 # km
impact_point = np.radians(145)
Expand Down

0 comments on commit 8d7bb83

Please sign in to comment.