blob: a6add1b08ee3e2cc7f33499763e4ab161713d70e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Weight of the dragster(in lbf):
w=1600;
//Speed of dragster(in mph):
s1=270;
//Area of drag chute(in ft^2):
A=25;
//Speed of dragster after deceleraton(in mph):
s2=100;
//Acceleration due to gravity(in ft/sec^2):
g=32.2;
//Density of air(in slug/ft^3):
d=0.00238;
//Value of coefficient of drag:
Cd=1.42;
|