Skip to content

Commit

Permalink
Merge pull request #1076 from robfalck/hohmann_correction
Browse files Browse the repository at this point in the history
fixed a missing sqrt from the hohmann example
  • Loading branch information
swryan committed Oct 7, 2019
2 parents 52910d2 + a8575f2 commit e70e90f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ change in inclination due to the impulse (:math:`\Delta i`), the :math:`\Delta V
is then computed from the law of cosines:

.. math::
\Delta V_1 = v_c^2 + v_p^2 - 2 v_c v_p \cos{\Delta i}
\Delta V_1 = \sqrt{v_c^2 + v_p^2 - 2 v_c v_p \cos{\Delta i}}
In the first impulse, :math:`v_1` is the circular velocity in LEO. In
this case :math:`v_c` refers to the circular velocity in geostationary
Expand Down

0 comments on commit e70e90f

Please sign in to comment.