Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Solutions to Homework Set 1: Atmospheric Pressure and Altitude Calculations - Prof. E. Cli, Assignments of Aerospace Engineering

The solutions to problem 1 and 2 of homework set 1. Problem 1 involves calculating the force exerted on a manometer based on the pressure difference between the test chamber and the atmosphere. Problem 2 requires generating a table and plot of atmospheric properties (pressure, temperature, and density) using a matlab routine for the isa standard atmosphere. The document also includes instructions on how to run the matlab script.

Typology: Assignments

Pre 2010

Uploaded on 02/13/2009

koofers-user-jmi-1
koofers-user-jmi-1 🇺🇸

10 documents

1 / 3

Toggle sidebar

Related documents


Partial preview of the text

Download Solutions to Homework Set 1: Atmospheric Pressure and Altitude Calculations - Prof. E. Cli and more Assignments Aerospace Engineering in PDF only on Docsity! HW Set 1 Solutions 25 January 2000 1) One side of the manometer is attached to the test chamber while the other is vented to the atmosphere. The pressure difference, the gauge pressure in the chamber, is manifested in the height differential in the Mervury manometer. Pc = Pa + ρgo∆h where Pc is the (absolute) pressure in the chamber and Pa is the atmospheric pressure. The pressure difference is Pc − Pa = ρgo∆h = 13, 000Kg/m3 9.807m/s2 0.75m = 95, 618N/m2. The total force is the pressure difference times the area F = (Pc − Pa) πD2/4 = 18, 775N 1 2) The mathematical models for atmospheric properties in the troposphere (0−11 km) and the lower part of the stratosphere (11−20 km) were described in class and in various notes. A MATLAB routine to implement these is available in atmosphere.mNote that this routine is written to correctly handle vector input, that is, the altitude H , can be an array and the routine returns corresponding arrays for pressure, temperature and density. The command to generate a table and a plot are % % Script file for problem 2 on H.W. Set 1 % H = [0:1000:20000]; [delta, theta, sigma] = atmosphere(H,0); A = [H’, delta’, theta’, sigma’]; save table A -ascii % H = [0:100:20000]; % finer grid [delta, theta, sigma] = atmosphere(H,0); plot(delta,H,’b’); hold; plot(theta,H,’r’); plot(sigma,H,’g’); ylabel(‘Altitude (m)’) legend(‘delta’,’theta’,’sigma’) title(‘ISA Standard Atmosphere’) . 2
Docsity logo



Copyright © 2024 Ladybird Srl - Via Leonardo da Vinci 16, 10126, Torino, Italy - VAT 10816460017 - All rights reserved