HP Forums

Full Version: Optimum Launch Mass of a Single Stage Model Rocket
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For a given model rocket engine and aerodynamic characteristics,
this HP Prime program determines the optimal launch mass of a single-stage
model rocket which maximizes total altitude (Bengen's maxima).

The data required for this program is provided by the user using the following
example of "hard-wired" information. Please note the proper units of each input.

// launch site altitude (meters)

altsite := 100.0;

// launch site temperature (degrees f)

tempsite := 70.0;

// thrust duration (seconds)

tduration := 1.2;

// total impulse (newton-seconds)

impulse := 5.0;

// propellant mass (grams)

mprop := 8.33;

// reference diameter (millimeters)

fdia := 18.0;

// drag coefficient (non-dimensional)

cd := 0.321;
Reference URL's