Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Adjusted math for more realistic deployment/inflation velocities

...

For a first-pass analysis, the following ranges of altitudes and Mach numbers were selected:

  • Altitude: 90,000ft to 150,000ft
  • Mach: 0.5 to 2

The following lines of MATLAB can be used to calculate a range of possible velocities:we assume that inflation will occur within 10 seconds of apogee. Neglecting drag due to the high altitude:

Mathinline
bodyv = at
. For a range of post-apogee deployment times, we can generate the following velocities for our analysis: 

Code Block
titleMatlab for Deployment Velocities
firstline1
linenumberstrue
altitudestimes = linspace(900000,15000010); %range of altitudes in meters
machs
velocities = linspace(0.5,2); %range of Mach numbers
altitudes = convlength(altitudes, 'ft', 'm'); %convert altitudes to meters
[T, a, P, rho] = atmoscoesa(altitudes); %use Standard Atmospheric Model
velocities = machs.*a; %calculates all possible deployment velocitiestimes*9.81;
 
figure();
gpor = 10; % sample geometric porosity, as a percent
D0 = 4; % 4 ft
inflation_times = 4*0.65*gpor./velocities
plot(velocities, inflation_times);

 

Then, we can generate the following graph of inflation times based on velocity:

Image Added

Image Removed 

Terminology

geometric porosity: the percent of the nominal canopy surface area that is removed due to vents and gaps

...