Create a Simple Brachistochrone Calculator

Questions

What is ΔV?

Project #1

Create a simple interactive interplanetary brachistochrone calculator.

The default start and end velocity is zero. To keep it simple assume the path (orbit) is a straight line.

Start with a menu. If you have time convert to a GUI.

User input:

Output should include:

To see the calculator in the YouTube video click HERE .

Project #2

Allow the user to select a non-zero end velocity.

Links

The Speed of Constant-Thrust Space Travel (YouTube)

Brachistochrone curve (Wikipedia)

Useful Formulas

Finds the distance traveled (d) of an object with an initial velocity of zero, acceleration (a), and time (t) traveled. The equation used is

d = 0.5 * a * t2

Finds the distance traveled (d) of an object with an initial velocity (v), acceleration (a), and time (t) traveled. The equation used is

d = (v * t) + (0.5 * a * t2)