Deriving the Rocket Equation
© Maplesoft, a division of Waterloo Maple Inc., 2005
Introduction
Maple 10 lets you create sophisticated live documents that seamlessly integrate the mathematical results with derivations, explanations, plots, and other forms of technical knowledge. This document develops a simple model of a rocket to illustrate the use of many of these new features.
The following Maple features are highlighted:
Visit www.maplesoft.com to learn about other new features, to watch Maple 10 Feature Demos, and take the 10 Minute Tour.
From inside Maple 10, see Help>What's New, and Help>Take a Tour of Maple for more information.
Throughout this document, explanations will appear in this style of text, to distinguish the explanations from the text of the example.
This document was created in Maple 10's Document mode. Some computations are hidden from view for presentation reasons. Maple 10 uses markers to indicate the presence of hidden formatting information, including document blocks and bookmarks, in a column to the immediate left of this text. From the View menu, ensure that the Markers entry is selected so that you can see this information.
Initialization
Initialization steps are crucial to the proper functioning of the document, but generally do not need to be seen by the reader. In such cases, the initialization steps can be hidden inside a document block. As well, to ensure that the necessary initialization is done before the user starts to interact with the document, these steps are put into an autoexecute region. Even people who know nothing about Maple will be able to read, interact with and modify this document once it is opened, without the need to first execute anything. The marker to the left of the blue text below indicates the presence of an autoexecute region inside a document block.
To see inside a document block, place the cursor on the visible part of the region, and select View>Expand Document Block from the menu. Alternatively, you can right-click (control-click on Macintosh) on the marker bar beside the text, and select Document Block>Expand Document Block from the menu.
Loading packages... done
Loading custom procedures... done
Problem statement
This section demonstrates the use of tables for organizing information and layout control. This table shows borders. Further below, you will see tables where the borders are hidden. To create a table in your document, select Insert>Table from the menu.
It also used embedded GUI controls. The user can change the values in the edit boxes, and press the button to restore the default values. Embedded GUI controls are added to a document through the use of the Components palette.
Here are the parameters for the problem, the values for the Saturn V launch are already filled in. You can change the values if you would like to experiment with how different values change the results. To see the result of your changes, press the execute all button (!!!) in the Maple toolbar.
Variable
Meaning
Value
Unit
To fill in the values for the Saturn V launch, click this button:
mass of an unfueled rocket
mass of the initial fuel
rocket's constant burn rate of fuel
constant velocity of exhaust (negative)
acceleration of gravity (negative)
We will use the formula , to find the velocity of a rocket T seconds after lift off in .
Model and solution
Plan:
In the sentence below, note that the formula calculated by Maple (in blue) appears on the same line as the initial formula entered by the author (in black). Maple 10's document mode supports inline output, so the input and output appear on the same line. Inline output allows you to reduce unnecessary whitespace and maintain the flow of your text. The Maple commands used to calculate the answer are hidden inside a document block. The document block markers show the start and finish of the document block, and can be expanded through the View menu or by right-clicking between the markers, as before.
Enter the formula for the mass of the rocket as a function of time t, which is
=
The inline mathematics is still live, so if you change the initial formula, by say changing to , highlight the entire line, and press the ! button on the toolbar, the line will re-execute and the output will be updated appropriately. Be sure to change it back again if you wish to use the application as intended.
Net upward force on the rocket is (difference between thrust and gravity). Notice Maple automatically converts the units to Newtons (N).
Integrate a from t = 0 .. T to get v.
All the input equations (in black) were created using the new 2-D math editor. Integrals, superscripts, subscripts, fractions, as well as many other layouts and over a thousand different symbols are available through the palettes and keyboard commands. The mathematics is formatted as you type, so you can easily make it look just the way it would in a technical paper or text book. You will find the list of math editor keyboard shortcuts for your platform from the Quick Help pop-up, which appears on start-up or can be invoked by selecting Help>Quick Help from the menu.
The quantities in notation represent units. These units can be added to an equation using the new Units palettes, or through the new Units context menus. Using the context menus, you can also simplify expressions involving units, convert from one system of measurement to another, or replace the displayed unit with an equivalent unit. To see the context menu options, right-click on the unit in the output, and select Units>.
Maple does not evaluate this integral because it results in a logarithmic term that would be infinite if the denominator were nonpositive. Let's call int again using the continuous option. This tells Maple not to worry about discontinuities in the integrand.
This time, when we ask for the value of , Maple gives the classic rocket equation. Best of all, Maple carries the units through the integration, giving its symbolic answer in .
We now take the numeric values for each of the parameters from the table at the beginning of the worksheet:
How long will the fuel last?
The next paragraph shows another example with inline output. In this case, the number of seconds is displayed twice seamlessly inside the same paragraph. If you expand the document block, you will see that the number comes from the value of the fuelTime variable. If that variable is changed and the document re-executed, the paragraph will automatically be updated to reflect the new value.
This provides about seconds' worth of fuel. Now let's plot the velocity as T goes from 0 to seconds. To plot an expression that has units, we must first strip off the units with the unit_free option to convert.
In Figure 1, we see that the rocket will have a velocity of over when its fuel runs out.
Note that the plot command itself, which is frequently of little interest to the reader, is hidden.
Velocity after fuel runs out
There's a problem with the above. We very politely asked our model for the rocket's velocity up until the time at which it runs out of fuel, seconds. But try redrawing the plot above with a maximum time greater than It predicts the velocity of the rocket will become infinite!
Function:
You can observe the velocity of the rocket extended beyond the point when fuel has run out by adjusting the slider bar below. Move the slider to pick the maximum time for plotting.
Minimum Time:
Maximum Time:
This plot is controlled by a slider. When the sliders are moved, the curve is updated. Along with sliders, edit boxes, buttons and plot regions, you can also embed toggle buttons, check boxes, list boxes, and math edit boxes in which 2-D math can be entered and displayed.
The plot has been placed to the right of the sliders that are used to control it. This layout has been done by using a table. If you move your mouse over the table, you will see where the hidden borders lie. Tables can be embedded inside cells of other tables, and you can set the visibility of each table's exterior and interior borders. In this way, you can control the layout, placement and appearance of text, plots and other objects in your documents.
The problem is with our mathematical model. We defined M to be without any bounds on t. But as t increases, this formula says that M shrinks to zero and then becomes negative! We can plug this hole in our model using Maple's handy piecewise command.
But the mass formula is not the only difficulty. The net acceleration on the rocket becomes just g when the fuel runs out. So we need to modify our force equation as well. Rewrite the formula for the velocity of the exhaust using the piecewise command, assuming that the exhaust velocity is still v[e] for as long as the fuel holds out.
Integrating the modified expression of the acceleration to obtain the velocity:
This is more realistic. After the fuel runs out, the velocity decreases linearly with time.
Move the slider to adjust the maximum time shown in the plot.
Maple 10 allows you to add grid lines to your 2-D plots. You can add grid lines through the plot command, the plot builder, the context menus, or simply by clicking on the button on the toolbar, which acts as a grid line toggle.
Investigate the relationship between the mass and velocity of the rocket
Here we show how the velocity of a rocket changes from its launch time into its time in space. We also show the differences in velocity caused by having a lighter or heavier initial mass.
We use the following formula for the velocity:
You can use the below sliders to pick the time interval to show in the plot. Enter the range of masses for the rocket in the text boxes.
Minimum Mass:
Maximum Mass:
Mass:
As the mass increases from to, the maximum velocity drops down from to . The maximum velocity for a lighter rocket is higher than that for a heavier one (as expected).
Other new plotting features include logarithmic axes and glossiness of 3-D plots, as seen in the plot above. To add glossiness to a 3-D plot, first add a lighting model. Like other plot options, you can set these options programmatically or interactively using the context menus. To set glossiness using the context menu, right-click on the plot, and then choose Lighting> to select a lighting model. Right-click again and choose Glossiness... The amount of glossiness is controlled by a slider.
More information about Maple 10 can be found at www.maplesoft.com
Legal Notice: The copyright for this application is owned by Maplesoft. The application is intended to demonstrate the use of Maple to solve a particular problem. It has been made available for product evaluation purposes only and may not be used in any other context without the express permission of Maplesoft.