Aaron Koga
Physics 305
10 April 2007
Introduction
Rockets are subject to three forces, the thrust force (), the drag force (), and gravity (). A sketch of these forces is shown in FIG 1 along with a sketch of a rocket trajectory. These forces are given by the following equations.
In the equation for , is the density of air, is the coefficient of drag, is the cross-sectional area.
The constants in the expression for are , the gravitational constant and , the mass of the earth. The mass of the rocket, , is dependent the launch mass, ; the total mass of fuel, ; and the burn out time (when all the fuel is burnt), . [1]
C Program for Simulation
A C Program, missile.c (see also source code: 3vector.h, FRK4-3D.h, and missile.h ) was written and used to simulate the flight of rocket. The program used the Runge-Kutta method of fourth order (RK4) to solve the differential equations of motion for the rocket, as shown in EQ 1-5.
This program determined the density of the atmosphere by reading in data from a file for the density at known heights.
Simulation
|
The flight of the rocket was simulated using the physical parameters shown in TABLE I. The initial velocity was chosen to be 0.1 m/s because the program needed a non-zero quantity to point the rocket in the correct direction (even though the rocket should theoretically start with no velocity).
The program was run for different starting angles, taking into account the curvature of the earth. The trajectory of the rocket is shown for a few different starting angles in FIG 2. The distance and velocity as functions of time are shown for a particular starting angle in FIG 3. The range of the rocket as a function of starting angle is shown in FIG 4. From this plot, the maximum distance occurs at a starting angle of about 89.99. To study the effect of the curvature of the earth, the program was run with the assumption that the earth is flat. FIG 5 shows the effect of the curvature, which is only noticeable at angles very close to 90..
The parameters shown in TABLE I are characteristic of a North Korean Nodong missile. Therefore, the program was used to assess North Korea's ability to hit Tokyo with this missile. Assuming a distance of 1286 km from Pyongyang to Tokyo, the results of the simulation suggest that North Korea could hit Tokyo if they use a starting angle of 89.76.
Bibliography