E-26 Applied Computational Aerodynamics E.7 STDATM

Size: px
Start display at page:

Download "E-26 Applied Computational Aerodynamics E.7 STDATM"

Transcription

1 E-26 Applied Computational Aerodynamis E.7 STDATM This subroutine omputes the 1976 standard atmosphere. It is used in program FRICTION. It overs an altitude range from sea level to 86 kilometers (282,152 ft.). The results are found in either English or metri units depending on the value of one of the input flags. The 1976 and 1962 standard atmospheres are idential for the first 51 kilometers above sea level. Method of Computation Given the geometri altitude Z in (in dimensions of either meters or feet), onvert to kilometers. The geopotential altitude H is then found from: Z H = 1+ Z r 0 where r 0 = kilometers (the radius of the Earth in kilometers) and Z = C 1 Z in, where C 1 = if Z in is in meters, and C 1 = if Z in is in feet. The 1962 standard atmosphere used a muh more ompliated and slightly more aurate relationship. The inverse relation is given by Z = H 1 H r 0. One the geopotential altitude is found, the temperature is omputed. The standard day temperature profile is defined by seven layers, where within eah layer the temperature is found by the linear relation (T is given in degrees Kelvin): T = T bi + L mi ( H H bi ) T bi L mi H bi and, and are the values at the base of the partiular layer. The following table defines these onstants, as well as the ratio of pressure to sea level pressure, whih is also needed. i (Km) ( K) ( K/Km) P/Psl Z(ft.) H bi T bi L mi x , x , x , x , x , x , ,152

2 report typos and errors to W.H. Mason Appendix E: Utility Programs E-27 One the temperature is determined, the pressure is omputed using the hydrostatis equation and the perfet gas law. The resulting formulas are: P P sl = P b P sl T b T K L m Lm 0 where K = g o M 0 in onsistent units. The remaining fundamental property is the R * = density, whih is found using the equation of state as: Additional parameters of interest in aerodynamis are: P = P b e K ( H H b ) T P sl P b L m = 0 sl ρ ρ sl = P P sl T T sl. i) The speed of sound a = a sl T T sl ii) The oeffiient of visosity, found from Sutherland s Law: µ = β T3 /2 T + S where S = K and β depends on the system of units and is defined below. iii) The Reynolds number per unit length and Mah: R e M L = ρa µ iv) The atual temperature, pressure and density: T T = T sl T sl P P = P sl P sl

3 E-28 Applied Computational Aerodynamis ρ ρ = ρ sl ρ sl and v) the dynami pressure normalized by the Mah number: q M 2 = γ 2 P =.7P. The sea level properties and other required onstants are defined in the following table. Metri English T sl P sl K x10 5 N/m R lb/ft 2 ρ sl Kg/m slugs/ft 3 a sl m/se ft/se µ sl x10-5 Kg/m/se x10-6 slugs/ft/se β 1.458x10-6 Kg/m/se/K 1/ x10-8 slugs/ft/se/k 1/2 The ratio of speifi heats, γ, is defined to be User instrutions: the omments in the subroutine define the input and output argument list. If the maximum altitude is exeeded, the program returns a non zero value of the validity flag. subroutine stdatm(z,t,p,r,a,mu,ts,rr,pp,rm,qm,kd,kk) *********** 1976 STANDARD ATMOSPHERE SUBROUTINE ********** Mason's BASIC program, onverted to FORTRAN - Sept. 1, 1989 kd - = 0 - metri units <> 0 - English units kk good return 1 - error: altitude out of table, do not use output z - input altitude, in feet or meters (depending on kd) output: units: metri English t - temp. deg K deg R p - pressure N/m^2 lb/ft^2 r - density Kg/m^3 slugs/ft^3 a - speed of sound m/se ft/se mu - visosity Kg/m/se slug/ft/se ts - t/t at sea level rr - rho/rho at sea level pp - p/p at sea level rm - Reynolds number per Re/M/m Re/M/ft Mah per unit of length qm - dynami pressure/mah^2 N/m^2 lb/ft^2

4 report typos and errors to W.H. Mason Appendix E: Utility Programs E-29 real k, h, mu, ml KK = 0 K = C1 = 3.048E-04 IF (KD.eq. 0) go to 1240 TL = PL = RL = AL = ML = E-07 BT = E-08 GO TO TL = PL = RL = C1 =.001 AL = ML = E-05 BT = 1.458E H = C1 * Z / (1 + C1 * Z / ) IF (H.gt. 11.0) go to 1290 T = * H PP = ( / T) ** ( - K / 6.5) 1290 IF (H.gt. 20.0) go to 1310 T = PP = * EXP ( - K * (H - 11) / ) 1310 IF (H.gt. 32.0) go to 1330 T = (H - 20) PP = * ( / T) ** K 1330 IF (H.gt. 47.0) go to 1350 T = * (H - 32) PP = * ( / T) ** (K / 2.8) 1350 IF( H.gt. 51.0) go to 1370 T = PP = * EXP ( - K * (H - 47) / ) 1370 IF (H.gt. 71.) go to 1390 T = * (H - 51) PP = * ( / T) ** ( - K / 2.8) 1390 IF (H.gt ) THEN kk = 1 write(6,200) H return END IF

5 E-30 Applied Computational Aerodynamis T = * (H - 71) PP = E-05 * ( / T) ** ( - K / 2) 1420 RR = PP / (T / ) MU = BT * T**1.5 / (T ) TS = T / A = AL * SQRT (TS) T = TL * TS R = RL * RR P = PL * PP RM = R * A / MU QM =.7 * P 200 format(' Out of Table in StdAtm- too high!'// 1 4x,'H =',f12.3,' > km'/) return end The following sample program and output an be used to validate your subroutine: main program to hek stdatm loop is done twie to get output suitable to inlude in text(80 ol) w.h. mason, Feb. 27, 1994 real mu kd = 1 write(6,90) do 10 i = 1,21 z = 5000.*(i-1) all stdatm(z,t,p,r,a,mu,ts,rr,pp,rm,qm,kd,kk) if (kk.ne. 0) then write(6,120) stop endif write(6,100) z,t,p,r,a,mu 10 ontinue write(6,110) do 20 i = 1,21 z = 5000.*(i-1) all stdatm(z,t,p,r,a,mu,ts,rr,pp,rm,qm,kd,kk) if (kk.ne. 0) then write(6,160) stop endif

6 report typos and errors to W.H. Mason Appendix E: Utility Programs E-31 write(6,120) z,ts,rr,pp,rm,qm 20 ontinue 90 format(/3x,'1976 Standard Atmosphere'// 1 3x,' alt T P Rho', 2 2x,' a Mu', 4 /3x,' (ft) (deg R) (psf) (s/ft^3)', 5 2x,' (f/s) (slugs/ft/se)') 100 format(3x,f9.1,f8.2,f8.2,e12.4,f8.2,e12.4) 110 format(/3x,'1976 Standard Atmosphere'// 1 3x,' alt T/Tsl R/Rsl', 2 2x, 'P/Psl Re/M/ft q/m^2', 4 /3x,' (ft)',34x,'(lb/ft^2)') 120 format(3x,f9.1,3f7.4,e10.3,f10.4) 160 format(/4x,'error in return ode from stdatm - pgm stops'/) stop end Sample output: 1976 Standard Atmosphere alt T P Rho a Mu (ft) (deg R) (psf) (s/ft^3) (f/s) (slugs/ft/se) E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E Standard Atmosphere alt T/Tsl R/Rsl P/Psl Re/M/ft q/m^2 (ft) (lb/ft^2) E E E E E E E

7 E-32 Applied Computational Aerodynamis STOP E E E E E E E E E E E E E E

The Standard Atmosphere

The Standard Atmosphere The Standard Atmosphere The Standard Atmosphere Some definitions Absolute altitude Geometric altitude Geopotential altitude Some physics The hydrostatic equation Construction of the standard atmosphere

More information

APPENDIX C. Computer Program to Generate. Design and Analysis Tables

APPENDIX C. Computer Program to Generate. Design and Analysis Tables APPENDIX omputer Program to Generate Design and Analysis Tables 169 MAIN PROGRAM TABLE.FOR VERSION 3.0 PROGRAM TABLE HARATER * 1 UNITS, ANSW, DISK, SYSTEM, FNAME * 64 INTEGER DTYPE DIMENSION R(7), S(7),

More information

Chapter 2 Lecture 9 Longitudinal stick fixed static stability and control 6 Topics

Chapter 2 Lecture 9 Longitudinal stick fixed static stability and control 6 Topics hapter Leture 9 Longitudinal stik fied stati stability and ontrol 6 Topis Eample.4 Eample.4 Referene.4 desribes the stability and ontrol data for ten airplanes. This inludes a general aviation airplane

More information

Chapter 2 Earth s atmosphere (Lectures 4 and 5)

Chapter 2 Earth s atmosphere (Lectures 4 and 5) Chapter 2 Earth s atmosphere (Lectures 4 and 5) Keywords: Earth s atmosphere; International standard atmosphere; geopotential altitude; stability of atmosphere. Topics 2.1 Introduction 2.2 Earth s atmosphere

More information

General Equilibrium. What happens to cause a reaction to come to equilibrium?

General Equilibrium. What happens to cause a reaction to come to equilibrium? General Equilibrium Chemial Equilibrium Most hemial reations that are enountered are reversible. In other words, they go fairly easily in either the forward or reverse diretions. The thing to remember

More information

Formulae and code for the U.S. Standard Atmosphere (1976)

Formulae and code for the U.S. Standard Atmosphere (1976) -100 C -80 C -60 C -40 C -20 C 0 C +20 C Geopotential altitude Formulae and code for the U.S. Standard Atmosphere (1976) It is sometimes convenient to have at hand a mathematical model for the atmosphere

More information

Writing a VUMAT. Appendix 3. Overview

Writing a VUMAT. Appendix 3. Overview ABAQUS/Expliit: Advaned Topis Appendix 3 Writing a VUMAT ABAQUS/Expliit: Advaned Topis A3.2 Overview Introdution Motivation Steps Required in Writing a VUMAT Example: VUMAT for Kinemati Hardening Plastiity

More information

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b Consider the pure initial value problem for a homogeneous system of onservation laws with no soure terms in one spae dimension: Where as disussed previously we interpret solutions to this partial differential

More information

A.1. Member capacities A.2. Limit analysis A.2.1. Tributary weight.. 7. A.2.2. Calculations. 7. A.3. Direct design 13

A.1. Member capacities A.2. Limit analysis A.2.1. Tributary weight.. 7. A.2.2. Calculations. 7. A.3. Direct design 13 APPENDIX A APPENDIX A Due to its extension, the dissertation ould not inlude all the alulations and graphi explanantions whih, being not essential, are neessary to omplete the researh. This appendix inludes

More information

THEORETICAL PROBLEM No. 3 WHY ARE STARS SO LARGE?

THEORETICAL PROBLEM No. 3 WHY ARE STARS SO LARGE? THEORETICAL PROBLEM No. 3 WHY ARE STARS SO LARGE? The stars are spheres of hot gas. Most of them shine beause they are fusing hydrogen into helium in their entral parts. In this problem we use onepts of

More information

Static load and dynamic forced performance of rigid rotor supported on short length journal bearings (includes MEEN 626. Luis San Andres (c)

Static load and dynamic forced performance of rigid rotor supported on short length journal bearings (includes MEEN 626. Luis San Andres (c) Stati load and dynami fored performane of rigid rotor supported on short length journal bearings (inludes MEEN 66. Luis San Andres () thermal effets) Dr. Luis San Andres, UT/ Rigid shaft rotor properties

More information

A Theorem of Mass Being Derived From Electrical Standing Waves (Adapted for a test by Jerry E. Bayles)

A Theorem of Mass Being Derived From Electrical Standing Waves (Adapted for a test by Jerry E. Bayles) EleMaEMCD A Theorem of Mass Being Derived From Eletrial Standing Waves (Adapted for a test by Jerry E Bayles) - by - Jerry E Bayles May 1, 000 This paper formalizes a onept presented in my book, "Eletrogravitation

More information

Physics 523, General Relativity Homework 4 Due Wednesday, 25 th October 2006

Physics 523, General Relativity Homework 4 Due Wednesday, 25 th October 2006 Physis 523, General Relativity Homework 4 Due Wednesday, 25 th Otober 2006 Jaob Lewis Bourjaily Problem Reall that the worldline of a ontinuously aelerated observer in flat spae relative to some inertial

More information

Process engineers are often faced with the task of

Process engineers are often faced with the task of Fluids and Solids Handling Eliminate Iteration from Flow Problems John D. Barry Middough, In. This artile introdues a novel approah to solving flow and pipe-sizing problems based on two new dimensionless

More information

Thermodynamics-1. S. M. Hosseini Sarvari Chapter 1 Introduction & Basic Concepts

Thermodynamics-1. S. M. Hosseini Sarvari Chapter 1 Introduction & Basic Concepts Mechanical Engineering Dept. Shahid Bahonar University of Kerman Thermodynamics-1 S. M. Hosseini Sarvari Chapter 1 Introduction & Basic Concepts Mechanical Engineering Dept. Shahid Bahonar University of

More information

23.1 Tuning controllers, in the large view Quoting from Section 16.7:

23.1 Tuning controllers, in the large view Quoting from Section 16.7: Lesson 23. Tuning a real ontroller - modeling, proess identifiation, fine tuning 23.0 Context We have learned to view proesses as dynami systems, taking are to identify their input, intermediate, and output

More information

COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION

COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION 4 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION Jiri Nozika*, Josef Adame*, Daniel Hanus** *Department of Fluid Dynamis and

More information

Subject: Introduction to Component Matching and Off-Design Operation % % ( (1) R T % (

Subject: Introduction to Component Matching and Off-Design Operation % % ( (1) R T % ( 16.50 Leture 0 Subjet: Introdution to Component Mathing and Off-Design Operation At this point it is well to reflet on whih of the many parameters we have introdued (like M, τ, τ t, ϑ t, f, et.) are free

More information

EF 152 Exam #3, Fall, 2012 Page 1 of 6

EF 152 Exam #3, Fall, 2012 Page 1 of 6 EF 5 Exam #3, Fall, 0 Page of 6 Name: Setion: Guidelines: ssume 3 signifiant figures for all given numbers. Sow all of your work no work, no redit Write your final answer in te box provided - inlude units

More information

NAVAL UNDERWATER SYSTEMS CENTER NEW LONDON LABORATORY NEW LONDON, CONNECTICUT Technical Memorandum

NAVAL UNDERWATER SYSTEMS CENTER NEW LONDON LABORATORY NEW LONDON, CONNECTICUT Technical Memorandum NAVAL UNDERWATER SYSTEMS CENTER NEW LONDON LABORATORY NEW LONDON, CONNECTICUT 06320 Tehnial Memorandum A FORTRAN COMPUTER PROGRAM TO EVALUATE AND PLOT THE STATISTICS OF THE MAGNITUDE-SQUARED COHERENCE

More information

International Standard Atmosphere Web Application

International Standard Atmosphere Web Application International Standard Atmosphere Web Application Keith Atkinson 6 February 2016 Atkinson Science welcomes your comments on this Theory Guide. Please send an email to keith.atkinson@atkinsonscience.co.uk.

More information

Chapter 15 Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium 5/27/2014

Chapter 15 Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium 5/27/2014 Amount of reatant/produt 5/7/01 quilibrium in Chemial Reations Lets look bak at our hypothetial reation from the kinetis hapter. A + B C Chapter 15 quilibrium [A] Why doesn t the onentration of A ever

More information

Chapter 2: Solution of First order ODE

Chapter 2: Solution of First order ODE 0 Chapter : Solution of irst order ODE Se. Separable Equations The differential equation of the form that is is alled separable if f = h g; In order to solve it perform the following steps: Rewrite the

More information

Chapter 15 Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium 2/3/2014

Chapter 15 Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium. Reversible Reactions & Equilibrium 2/3/2014 Amount of reatant/produt //01 quilibrium in Chemial Reations Lets look bak at our hypothetial reation from the kinetis hapter. A + B C Chapter 15 quilibrium [A] Why doesn t the onentration of A ever go

More information

= 390 ( R). Then, for a given edge Mach number, M e., and ratio of wall temperature to adiabatic wall temperature T W = T W. T AW = T e 2 M e 2

= 390 ( R). Then, for a given edge Mach number, M e., and ratio of wall temperature to adiabatic wall temperature T W = T W. T AW = T e 2 M e 2 D-32 Applied Computational Aerodynamics D.5 Program FRICTION FRICTION provides an estimate of laminar and turbulent skin friction suitable for use in aircraft preliminary design. It is an entirely new

More information

7.1 Roots of a Polynomial

7.1 Roots of a Polynomial 7.1 Roots of a Polynomial A. Purpose Given the oeffiients a i of a polynomial of degree n = NDEG > 0, a 1 z n + a 2 z n 1 +... + a n z + a n+1 with a 1 0, this subroutine omputes the NDEG roots of the

More information

Advanced Computational Fluid Dynamics AA215A Lecture 4

Advanced Computational Fluid Dynamics AA215A Lecture 4 Advaned Computational Fluid Dynamis AA5A Leture 4 Antony Jameson Winter Quarter,, Stanford, CA Abstrat Leture 4 overs analysis of the equations of gas dynamis Contents Analysis of the equations of gas

More information

Motor Sizing Application Note

Motor Sizing Application Note PAE-TILOGY Linear Motors 70 Mill orest d. Webster, TX 77598 (8) 6-7750 ax (8) 6-7760 www.trilogysystems.om E-mail emn_support_trilogy@parker.om Motor Sizing Appliation Note By Jak Marsh Introdution Linear

More information

PART II. Fluid Mechanics Pressure. Fluid Mechanics Pressure. Fluid Mechanics Specific Gravity. Some applications of fluid mechanics

PART II. Fluid Mechanics Pressure. Fluid Mechanics Pressure. Fluid Mechanics Specific Gravity. Some applications of fluid mechanics ART II Some applications of fluid mechanics Fluid Mechanics ressure ressure = F/A Units: Newton's per square meter, Nm -, kgm - s - The same unit is also known as a ascal, a, i.e. a = Nm - ) English units:

More information

Experiment 3: Basic Electronic Circuits II (tbc 1/7/2007)

Experiment 3: Basic Electronic Circuits II (tbc 1/7/2007) Experiment 3: Basi Eletroni iruits II (tb /7/007) Objetive: a) To study the first-order dynamis of a apaitive iruits with the appliation of Kirhoff s law, Ohm s law and apaitane formula. b) To learn how

More information

APPENDIX B ABBREVIATIONS, SYMBOLS AND CONVERSION FACTORS Abbreviations

APPENDIX B ABBREVIATIONS, SYMBOLS AND CONVERSION FACTORS Abbreviations APPENDIX B ABBREVIATIONS, SYMBOLS AND CONVERSION FACTORS Abbreviations A ampere AASHTO American Association of State Highway & Transportation Officials ABS (%) Percent of Absorbed Moisture Abs. Vol. Absolute

More information

APPENDIX H CONVERSION FACTORS

APPENDIX H CONVERSION FACTORS APPENDIX H CONVERSION FACTORS A ampere American Association of State AASHTO Highway & Transportation Officials ABS (%) Percent of Absorbed Moisture Abs. Vol. Absolute Volume ACI American Concrete Institute

More information

EFFECTIVE STRESS LAW FOR THE PERMEABILITY OF CLAY-RICH SANDSTONES

EFFECTIVE STRESS LAW FOR THE PERMEABILITY OF CLAY-RICH SANDSTONES SCA22-5 1/6 EFFECTIVE STRESS LAW FOR THE PERMEABILITY OF CLAY-RICH SANDSTONES Widad Al-Wardy and Robert W. Zimmerman Department of Earth Siene and Engineering Imperial College of Siene, Tehnology and Mediine

More information

Supporting Information

Supporting Information Supporting Information Olsman and Goentoro 10.1073/pnas.1601791113 SI Materials Analysis of the Sensitivity and Error Funtions. We now define the sensitivity funtion Sð, «0 Þ, whih summarizes the steepness

More information

Units and Dimensions. Lecture 1. Introduction to Chemical Engineering Calculations

Units and Dimensions. Lecture 1. Introduction to Chemical Engineering Calculations Introduction to Chemical Engineering Calculations Lecture 1. Mathematics and Engineering In mathematics, If x = 500 and y = 100, then (x + y) = 600 In engineering, If x = 500m and y = 100m, then (x + y)

More information

Evaluation of effect of blade internal modes on sensitivity of Advanced LIGO

Evaluation of effect of blade internal modes on sensitivity of Advanced LIGO Evaluation of effet of blade internal modes on sensitivity of Advaned LIGO T0074-00-R Norna A Robertson 5 th Otober 00. Introdution The urrent model used to estimate the isolation ahieved by the quadruple

More information

Control Theory association of mathematics and engineering

Control Theory association of mathematics and engineering Control Theory assoiation of mathematis and engineering Wojieh Mitkowski Krzysztof Oprzedkiewiz Department of Automatis AGH Univ. of Siene & Tehnology, Craow, Poland, Abstrat In this paper a methodology

More information

AAE 333 Final Exam. Dec Open Book, 1 Crib sheet allowed

AAE 333 Final Exam. Dec Open Book, 1 Crib sheet allowed AAE 333 Final Exam Dec 16 2009 Open Book, 1 Crib sheet allowed The right answer is worth 5 points. A wrong answer is worth 0. Fill in the circle on the scantron sheet corresponding to your answer chosen

More information

FINITE WORD LENGTH EFFECTS IN DSP

FINITE WORD LENGTH EFFECTS IN DSP FINITE WORD LENGTH EFFECTS IN DSP PREPARED BY GUIDED BY Snehal Gor Dr. Srianth T. ABSTRACT We now that omputers store numbers not with infinite preision but rather in some approximation that an be paed

More information

Aerodynamics SYST 460/560. George Mason University Fall 2008 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH. Copyright Lance Sherry (2008)

Aerodynamics SYST 460/560. George Mason University Fall 2008 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH. Copyright Lance Sherry (2008) Aerodynamics SYST 460/560 George Mason University Fall 2008 1 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH Copyright Lance Sherry (2008) Ambient & Static Pressure Ambient Pressure Static Pressure 2 Ambient

More information

Introduction to Engineering ENGR System of Units

Introduction to Engineering ENGR System of Units Introduction to Engineering ENGR 1100 - System of Units System of Units The SI system of units (Le Systeme International d unites) is the system used worldwide except for the United States, Liberia and

More information

Gerald J. Franz. Naval Ship Research and Development Center Washington, D.C

Gerald J. Franz. Naval Ship Research and Development Center Washington, D.C '"im-l i l i i um»!»«) GO ROUGHNESS CRITERIA AND THE RELATIONSHIPS BETWEEN SURFACE ROUGHNESS AND FLOW NOISE by Gerald J. Franz Naval Ship Researh and Development Center Washington, D.C. 20007 S UJ OCT

More information

Chapter 3 Church-Turing Thesis. CS 341: Foundations of CS II

Chapter 3 Church-Turing Thesis. CS 341: Foundations of CS II CS 341: Foundations of CS II Marvin K. Nakayama Computer Siene Department New Jersey Institute of Tehnology Newark, NJ 07102 CS 341: Chapter 3 3-2 Contents Turing Mahines Turing-reognizable Turing-deidable

More information

Lect-33. In this lecture... Tutorial on centrifugal compressors. Prof. Bhaskar Roy, Prof. A M Pradeep, Department of Aerospace, IIT Bombay

Lect-33. In this lecture... Tutorial on centrifugal compressors. Prof. Bhaskar Roy, Prof. A M Pradeep, Department of Aerospace, IIT Bombay Let- 33 In this leture... Let-33 utorial on entrifugal ompressors Problem # At the inlet of a entrifugal ompressor eye, the relative Mah number is to be limited to 0.97. he hub-tip radius ratio of the

More information

Chart of Conversion Factors

Chart of Conversion Factors I/9, :2.l J(f)/t..4 Chart of Conversion Fators From English to Metri System and Metri to English System E Douments TTU li rary T U.S. Geologial Survey /Conservation Division USGS: INF-76-16 Chart of Conversion

More information

Learning Objectives. Lesson 6: Mathematical Models of Fluid Flow Components. ET 438a Automatic Control Systems Technology 8/27/2015

Learning Objectives. Lesson 6: Mathematical Models of Fluid Flow Components. ET 438a Automatic Control Systems Technology 8/27/2015 Lesson 6: Mathematical Models of Fluid Flow Components ET 438a Automatic Control Systems Technology lesson6et438a.pptx 1 Learning Objectives After this presentation you will be able to: Define the characteristics

More information

Computational Methods for Engineers Programming in Engineering Problem Solving

Computational Methods for Engineers Programming in Engineering Problem Solving Computational Methods for Engineers Programming in Engineering Problem Solving Abu Hasan Abdullah January 6, 2009 Abu Hasan Abdullah 2009 An Engineering Problem Problem Statement: The length of a belt

More information

HOW TO FACTOR. Next you reason that if it factors, then the factorization will look something like,

HOW TO FACTOR. Next you reason that if it factors, then the factorization will look something like, HOW TO FACTOR ax bx I now want to talk a bit about how to fator ax bx where all the oeffiients a, b, and are integers. The method that most people are taught these days in high shool (assuming you go to

More information

Applications of Integration to Physics and Engineering

Applications of Integration to Physics and Engineering Applications of Integration to Physics and Engineering MATH 211, Calculus II J Robert Buchanan Department of Mathematics Spring 2018 Mass and Weight mass: quantity of matter (units: kg or g (metric) or

More information

Common Mistakes & How to avoid them Class X - Math. Unit: Algebra. Types of Question Common Mistakes Points to be emphasised. points.

Common Mistakes & How to avoid them Class X - Math. Unit: Algebra. Types of Question Common Mistakes Points to be emphasised. points. Common Mistakes & How to avoid them Class X - Math Unit: Algera Chapter: Pair of Linear Equations in Two Variales Types of Question Common Mistakes Points to e emphasised Solving the system of (i) Error

More information

Only if handing in. Name: Student No.: Page 2 of 7

Only if handing in. Name: Student No.: Page 2 of 7 UNIVERSITY OF TORONTO FACULTY OF APPLIED SCIENCE AND ENGINEERING FINAL EXAMINATION, DECEMBER 10, 2014 2:00 PM 2.5 HOURS CHE 211F FLUID MECHANICS EXAMINER: PROFESSOR D.G. ALLEN ANSWER ALL SEVEN (7) QUESTIONS

More information

A Heuristic Approach for Design and Calculation of Pressure Distribution over Naca 4 Digit Airfoil

A Heuristic Approach for Design and Calculation of Pressure Distribution over Naca 4 Digit Airfoil IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 PP 11-15 www.iosrjen.org A Heuristi Approah for Design and Calulation of Pressure Distribution over Naa 4 Digit Airfoil G.

More information

Length, mass, and time

Length, mass, and time Length, mass, and time Objectives Record data using scientific notation. Record data using International System (SI) units. 1. Express the following numbers in scientific notation: a. 275 b..173 c. 93,422

More information

Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the function V ( x ) to be positive definite.

Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the function V ( x ) to be positive definite. Leture Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the funtion V ( x ) to be positive definite. ost often, our interest will be to show that x( t) as t. For that we will need

More information

Addis Ababa University Addis Ababa Institute of Technology School Of Mechanical and Industrial Engineering Extension Division` Assignment 1

Addis Ababa University Addis Ababa Institute of Technology School Of Mechanical and Industrial Engineering Extension Division` Assignment 1 Assignment 1 1. Vehicle B is stopped at a traffic light, as shown in the figure. At the instant that the light turns green, vehicle B starts to accelerate at 0.9144m/s 2. At this time vehicle A is 91.44m

More information

Math 308 Exam II Practice Problems

Math 308 Exam II Practice Problems Math 38 Exam II Practice Problems This review should not be used as your sole source for preparation for the exam. You should also re-work all examples given in lecture and all suggested homework problems..

More information

Geometry of Transformations of Random Variables

Geometry of Transformations of Random Variables Geometry of Transformations of Random Variables Univariate distributions We are interested in the problem of finding the distribution of Y = h(x) when the transformation h is one-to-one so that there is

More information

Systems and Matrices VOCABULARY

Systems and Matrices VOCABULARY TEKS FOCUS 4-4 Systems and Matries VOCABULARY TEKS (3)(B) Solve systems of three linear equations in three variables by using Gaussian elimination, tehnology with matries, and substitution. TEKS ()(C)

More information

(c) Calculate the tensile yield stress based on a critical resolved shear stress that we will (arbitrarily) set at 100 MPa. (c) MPa.

(c) Calculate the tensile yield stress based on a critical resolved shear stress that we will (arbitrarily) set at 100 MPa. (c) MPa. 27-750, A.D. Rollett Due: 20 th Ot., 2011. Homework 5, Volume Frations, Single and Multiple Slip Crystal Plastiity Note the 2 extra redit questions (at the end). Q1. [40 points] Single Slip: Calulating

More information

The Working Man s Guide to Obtaining Self Diffusion Coefficients from Molecular Dynamics Simulations

The Working Man s Guide to Obtaining Self Diffusion Coefficients from Molecular Dynamics Simulations The Working Man s Guide to Obtaining Self Diffusion Coeffiients from Moleular Dynamis Simulations David Keffer Department of Chemial Engineering University of Tennessee, Knoxville Begun: November 11, 2001

More information

EECS 120 Signals & Systems University of California, Berkeley: Fall 2005 Gastpar November 16, Solutions to Exam 2

EECS 120 Signals & Systems University of California, Berkeley: Fall 2005 Gastpar November 16, Solutions to Exam 2 EECS 0 Signals & Systems University of California, Berkeley: Fall 005 Gastpar November 6, 005 Solutions to Exam Last name First name SID You have hour and 45 minutes to omplete this exam. he exam is losed-book

More information

State Diagrams. Margaret M. Fleck. 14 November 2011

State Diagrams. Margaret M. Fleck. 14 November 2011 State Diagrams Margaret M. Flek 14 November 2011 These notes over state diagrams. 1 Introdution State diagrams are a type of direted graph, in whih the graph nodes represent states and labels on the graph

More information

Routh-Hurwitz Lecture Routh-Hurwitz Stability test

Routh-Hurwitz Lecture Routh-Hurwitz Stability test ECE 35 Routh-Hurwitz Leture Routh-Hurwitz Staility test AStolp /3/6, //9, /6/ Denominator of transfer funtion or signal: s n s n s n 3 s n 3 a s a Usually of the Closed-loop transfer funtion denominator

More information

Ben Wolfe 11/3/14. Figure 1: Theoretical diagram showing the each step of heat loss.

Ben Wolfe 11/3/14. Figure 1: Theoretical diagram showing the each step of heat loss. Condenser Analysis Water Cooled Model: For this condenser design there will be a coil of stainless steel tubing suspended in a bath of cold water. The cold water will be stationary and begin at an ambient

More information

Laplace Transforms Chapter 3

Laplace Transforms Chapter 3 Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first. Laplace transforms play a key role in important

More information

THERMAL MODELING OF PACKAGES FOR NORMAL CONDITIONS OF TRANSPORT WITH INSOLATION t

THERMAL MODELING OF PACKAGES FOR NORMAL CONDITIONS OF TRANSPORT WITH INSOLATION t THERMAL MODELING OF PACKAGES FOR NORMAL CONDITIONS OF TRANSPORT WITH INSOLATION THERMAL MODELING OF PACKAGES FOR NORMAL CONDITIONS OF TRANSPORT WITH INSOLATION t Tehnial Programs and Servies/Engineering

More information

Journal of Inequalities in Pure and Applied Mathematics

Journal of Inequalities in Pure and Applied Mathematics Journal of Inequalities in Pure and Applied Mathematis A NEW ARRANGEMENT INEQUALITY MOHAMMAD JAVAHERI University of Oregon Department of Mathematis Fenton Hall, Eugene, OR 97403. EMail: javaheri@uoregon.edu

More information

Determination of the Aerodynamic Characteristics of Flying Vehicles Using Method Large Eddy Simulation with Software ANSYS

Determination of the Aerodynamic Characteristics of Flying Vehicles Using Method Large Eddy Simulation with Software ANSYS Automation, Control and Intelligent Systems 15; 3(6): 118-13 Published online Deember, 15 (http://www.sienepublishinggroup.om//ais) doi: 1.11648/.ais.1536.14 ISSN: 38-5583 (Print); ISSN: 38-5591 (Online)

More information

In this problem, we are given the following quantities: We want to find: Equations and basic calculations:

In this problem, we are given the following quantities: We want to find: Equations and basic calculations: .1 It takes. million tons of oal per year to a 1000-W power plant that operates at a apaity fator of 70%. If the heating value of the oal is 1,000 /lb, alulate the plant s effiieny and the heat rate. In

More information

The Lorenz Transform

The Lorenz Transform The Lorenz Transform Flameno Chuk Keyser Part I The Einstein/Bergmann deriation of the Lorentz Transform I follow the deriation of the Lorentz Transform, following Peter S Bergmann in Introdution to the

More information

Dimensions & Units. This discussion (chap 1) is a brief reminder of how to do it.

Dimensions & Units. This discussion (chap 1) is a brief reminder of how to do it. Dimensions & Units This course is an introduction to Mechanics, the foundation of Physics. It first builds the basis to express motion in mathematical language (kinematics; chaps 2-4) and then it presents

More information

The gravitational phenomena without the curved spacetime

The gravitational phenomena without the curved spacetime The gravitational phenomena without the urved spaetime Mirosław J. Kubiak Abstrat: In this paper was presented a desription of the gravitational phenomena in the new medium, different than the urved spaetime,

More information

2.6-Constructing Functions with Variation

2.6-Constructing Functions with Variation .6-Constructing Functions with Variation Direct Variation: Two quantities vary directly if one quantity increases as the other increases. A direct variation equation will have the general form: where is

More information

To work algebraically with exponential functions, we need to use the laws of exponents. You should

To work algebraically with exponential functions, we need to use the laws of exponents. You should Prealulus: Exponential and Logisti Funtions Conepts: Exponential Funtions, the base e, logisti funtions, properties. Laws of Exponents memorize these laws. To work algebraially with exponential funtions,

More information

Redacted for Privacy

Redacted for Privacy AN ABSTRACT FOR THE THESIS OF Bradley T. Burhett for the degree of Dotor of Philosophy in Mehanial Engineering presented on May 2. 2001. Title: Robust Lateral Pul"e let Control of an Atmospheri Roket.

More information

MLK Day!!! Solving Equations with Radicals Day 1. Practice. Solving Equations with Radicals Day 2. Practice. Applications of Radicals.

MLK Day!!! Solving Equations with Radicals Day 1. Practice. Solving Equations with Radicals Day 2. Practice. Applications of Radicals. Name Algebra 2 Agenda Period Week.3 Objective Stamp Grade Monday January 8, 206 MLK Day!!! Tuesday January 9, 206 Solving Equations with Radicals Day Practice Wednesday January 20, 206 Solving Equations

More information

Variable Normalization (nondimensionalization and scaling) for Navier-Stokes equations: a practical guide

Variable Normalization (nondimensionalization and scaling) for Navier-Stokes equations: a practical guide TR-CFD-13-77 Variable Normalization (nondimensionalization and scaling) for Navier-Stokes equations: a practical guide Marc Montagnac Technical Report V. 1.0 October 013 Copyrighted by the author(s) Centre

More information

A Longitudinal Aerodynamic Data Repeatability Study for a Commercial Transport Model Test in the National Transonic Facility

A Longitudinal Aerodynamic Data Repeatability Study for a Commercial Transport Model Test in the National Transonic Facility NASA Tehnial Paper 3522 A Longitudinal Aerodynami Data Repeatability Study for a Commerial Transport Model Test in the National Transoni Faility R. A. Wahls and J. B. Adok Langley Researh Center Hampton,

More information

Line Radiative Transfer

Line Radiative Transfer http://www.v.nrao.edu/ourse/astr534/ineradxfer.html ine Radiative Transfer Einstein Coeffiients We used armor's equation to estimate the spontaneous emission oeffiients A U for À reombination lines. A

More information

ECE-320 Linear Control Systems. Winter 2013, Exam 1. No calculators or computers allowed, you may leave your answers as fractions.

ECE-320 Linear Control Systems. Winter 2013, Exam 1. No calculators or computers allowed, you may leave your answers as fractions. ECE-320 Linear Control Systems Winter 2013, Exam 1 No alulators or omputers allowed, you may leave your answers as frations. All problems are worth 3 points unless noted otherwise. Total /100 1 Problems

More information

5.1 Composite Functions

5.1 Composite Functions SECTION. Composite Funtions 7. Composite Funtions PREPARING FOR THIS SECTION Before getting started, review the following: Find the Value of a Funtion (Setion., pp. 9 ) Domain of a Funtion (Setion., pp.

More information

1.1 Show that for the geometric unit system the mass of the sun is M = 1.47 km.

1.1 Show that for the geometric unit system the mass of the sun is M = 1.47 km. Problem 1: Geometrical units A geometric unit system is a system of natural units in which the base physical units are chosen so that the speed of light in vacuum, c, and the gravitational constant, G,

More information

Universität Duisburg-Essen Fakultät für Ingenieurwissenschaften WS 2012 Maschinenbau, IVG, Thermodynamik Dr. M. A. Siddiqi

Universität Duisburg-Essen Fakultät für Ingenieurwissenschaften WS 2012 Maschinenbau, IVG, Thermodynamik Dr. M. A. Siddiqi 1 Universität Duisburg-Essen 3. Semester Fakultät für Ingenieurwissenschaften WS 2012 Maschinenbau, IVG, Thermodynamik Dr. M. A. Siddiqi THERMODYNAMICS LAB (ISE) Pressure Measurement 2 2 Pressure Measurement

More information

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker.

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker. UTC Engineering 329 Proportional Controller Design for Speed System By John Beverly Green Team John Beverly Keith Skiles John Barker 24 Mar 2006 Introdution This experiment is intended test the variable

More information

Physics 6C. Special Relativity. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB

Physics 6C. Special Relativity. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB Physis 6C Speial Relatiity Two Main Ideas The Postulates of Speial Relatiity Light traels at the same speed in all inertial referene frames. Laws of physis yield idential results in all inertial referene

More information

Speed-feedback Direct-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion

Speed-feedback Direct-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion Speed-feedbak Diret-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion Y. Yamamoto, T. Nakamura 2, Y. Takada, T. Koseki, Y. Aoyama 3, and Y. Iwaji 3

More information

Tropospheric Effects on GNSS

Tropospheric Effects on GNSS Tropospheric Effects on GNSS The Atmosphere and its Effect on GNSS Systems 14 to 16 April 008 Santiago, Chile Dr. M. Bakry El-Arini Background 1 of The troposphere contains about 80% of the atmosphere

More information

PHYSICS 104B, WINTER 2010 ASSIGNMENT FIVE SOLUTIONS N { N 2 + 1, N 2 + 2, N

PHYSICS 104B, WINTER 2010 ASSIGNMENT FIVE SOLUTIONS N { N 2 + 1, N 2 + 2, N PHYSICS 4B, WINTER 2 ASSIGNMENT FIVE SOLUTIONS [.] For uniform m =. and springs g = 2. the eigenvalues have the analyti form, The ode jaobi test yields λ k = 2g ( os k) m k = k n = 2πn N = 2π N { N 2 +,

More information

III. Instructions and Questions

III. Instructions and Questions (Wednesday, Nov. 8; 15 pts) I. Objectives Estimate the vertical pressure gradient force/mass at various altitudes or depths Estimate how good (or not) the hydrostatic approximation is. Account for differences

More information

Atmospheric pressure. 9 ft. 6 ft

Atmospheric pressure. 9 ft. 6 ft Name CEE 4 Final Exam, Aut 00; Answer all questions; 145 points total. Some information that might be helpful is provided below. A Moody diagram is printed on the last page. For water at 0 o C (68 o F):

More information

Modal Horn Logics Have Interpolation

Modal Horn Logics Have Interpolation Modal Horn Logis Have Interpolation Marus Kraht Department of Linguistis, UCLA PO Box 951543 405 Hilgard Avenue Los Angeles, CA 90095-1543 USA kraht@humnet.ula.de Abstrat We shall show that the polymodal

More information

Rate of Flow Quantity of fluid passing through any section (area) per unit time

Rate of Flow Quantity of fluid passing through any section (area) per unit time Kinematics of Fluid Flow Kinematics is the science which deals with study of motion of liquids without considering the forces causing the motion. Rate of Flow Quantity of fluid passing through any section

More information

FDE 211 MATERIAL & ENERGY BALANCES. Instructor: Dr. Ilgin Paker Yikici Fall 2015

FDE 211 MATERIAL & ENERGY BALANCES. Instructor: Dr. Ilgin Paker Yikici Fall 2015 FDE 211 MATERIAL & ENERGY BALANCES Instructor: Dr. Ilgin Paker Yikici Fall 2015 Meet & Greet Hello! My name is I am from 2 Class Overview Units & Conversions Process & Process Variables Process Units &

More information

Analysis of discretization in the direct simulation Monte Carlo

Analysis of discretization in the direct simulation Monte Carlo PHYSICS OF FLUIDS VOLUME 1, UMBER 1 OCTOBER Analysis of disretization in the diret simulation Monte Carlo iolas G. Hadjionstantinou a) Department of Mehanial Engineering, Massahusetts Institute of Tehnology,

More information

Review for Exam #2. Specific Heat, Thermal Conductivity, and Thermal Diffusivity. Conduction

Review for Exam #2. Specific Heat, Thermal Conductivity, and Thermal Diffusivity. Conduction Review for Exam # Speifi Heat, Thermal Condutivity, and Thermal Diffusivity Speifi heat ( p ) A measure of how muh energy is required to raise the temperature of an objet Thermal ondutivity (k) A measure

More information

Determining the Drag Coefficient from PITCHf/x Data

Determining the Drag Coefficient from PITCHf/x Data Determining the Drag Coefficient from PITCHf/x Data Isaac N. Hall Michigan State University, East Lansing, Michigan 48824 Alan M. Nathan Department of Physics, University of Illinois, Urbana, IL 61801

More information

8.4 Density and 8.5 Work Group Work Target Practice

8.4 Density and 8.5 Work Group Work Target Practice 8.4 Density and 8.5 Work Group Work Target Practice 1. The density of oil in a circular oil slick on the surface of the ocean at a distance meters from the center of the slick is given by δ(r) = 5 1+r

More information

11.1 Polynomial Least-Squares Curve Fit

11.1 Polynomial Least-Squares Curve Fit 11.1 Polynomial Least-Squares Curve Fit A. Purpose This subroutine determines a univariate polynomial that fits a given disrete set of data in the sense of minimizing the weighted sum of squares of residuals.

More information

Chapter IX. Roots of Equations

Chapter IX. Roots of Equations 14 Chapter IX Roots of Equations Root solving typially onsists of finding values of x whih satisfy a relationship suh as: 3 3 x + x = 1 + e x The problem an be restated as: Find the root of 3 f ( x) =

More information

Chapter One: Dimensions, Units, and Their Conversion

Chapter One: Dimensions, Units, and Their Conversion Lecture # 1, 2/8/2012 Chapter One: Dimensions, Units, and Their Conversion Objectives: 1. Understand and explain the difference between dimensions and units. 2. Add, subtract, multiply and divide units

More information