MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS

Slides:



Advertisements
Similar presentations
Potential Flow Theory : Incompressible Flow
Advertisements

Lakshmi Sankar Module 3.3 Panel Methods Lakshmi Sankar
Remember: Derivative=Slope of the Tangent Line.
Solving Algebraic Equations
Lecture 25 Bodies With Holes / Stress Perturbations Around Cracks Geol 542 Textbook reading: p ;
CURVILINEAR MOTION: CYLINDRICAL COMPONENTS (Section 12.8)
MECH 221 FLUID MECHANICS (Fall 06/07) Chapter 7: INVISCID FLOWS
Potential Flows Title: Advisor : Ali R. Tahavvor, Ph.D.
Chapter Fourteen The Electric Field and the Electric Potential
Bode Magnitude Plots Constructed Bode Actual Bode
Introduction to Engineering MATLAB – 10 Plotting - 3 Agenda Special 2-D Plots fplot command.
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS
Ch 9.1: The Phase Plane: Linear Systems
Motion in Two Dimensions
17 VECTOR CALCULUS.
Potential Flow Theory for Development of A Turbine Blade
Cylindrical and Spherical Coordinates
Scalar and Vector Fields
Vectors and Matrices Class 17.1 E: Ch. 5.
Euler’s Equation in Fluid Mechanics. What is Fluid Mechanics? Fluid mechanics is the study of the macroscopic physical behavior of fluids. Fluids are.
Kinematics of Rigid Bodies
Vectors and the Geometry of Space
Introduction and Vectors
KINEMATICS OF PARTICLES PLANE CURVILINEAR MOTION
1 Tips for solving Project 1 Reactor SO 3 SO 2 +O 2.
MAE 242 Dynamics – Section I Dr. Kostas Sierros. Quiz 1 results Around 10 people asked for a make up quiz… DEADLINE TO ASK FOR A MAKE UP QUIZ IS WEDNESDAY.
Tangent Lines and Arc Length Parametric Equations
DelayRatio: A Gravitational Wave Event Physical Likelihood Estimator Based on Detection Delays and SNR Ratios Amber L. Stuver LIGO Livingston ObservatoryCalifornia.
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Compressible Flow Over Airfoils: Linearized Subsonic Flow Mechanical and Aerospace Engineering Department Florida.
10.2 Vectors and Vector Value Functions. Quantities that we measure that have magnitude but not direction are called scalars. Quantities such as force,
Displacement, Velocity, and Acceleration Equations of Kinematics in 2 Dimensions Projectile Motion Relative Velocity.
The Wrench: Let’s suppose that we have already reduced a complicated force system to single (resultant ) force,, and a single couple with the moment,,
January 23, 2006Vectors1 Directions – Pointed Things January 23, 2005.
Concept Summary Batesville High School Physics. Projectiles  A projectile is an object moving in 2 dimensions under the influence of gravity. For example,
HWQ Find the xy trace:.
MAE 1202: AEROSPACE PRACTICUM An Introduction to MATLAB: Part 2 Mechanical and Aerospace Engineering Department Florida Institute of Technology Developed.
Chapter 4 Motion in Two Dimensions. Kinematics in Two Dimensions Will study the vector nature of position, velocity and acceleration in greater detail.
Dr. Hugh Blanton ENTC Plane-Wave Propagation.
Potential Flow Theory P M V Subbarao Professor Mechanical Engineering Department Only Mathematics Available for Invetion……
1 MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Finite Wings: General Lift Distribution Summary April 18, 2011 Mechanical and Aerospace Engineering Department.
Pharos University MECH 253 FLUID MECHANICS II
Midterm Review  Five Problems 2-D/3-D Vectors, 2-D/3-D equilibrium, Dot Product, EoE, Cross Product, Moments  Closed Book & Note  Allowed to bring.
Homework Complete Problems: Complete all work in pencil
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Aerodynamic Force and Vector Calculus Review January 12, 2011 Mechanical and Aerospace Engineering Department.
Chapter 14 – Basic Elements and Phasors Lecture 17 by Moeen Ghiyas 13/12/
Recap Chapter 5 “Plotting” Two Dimensional Plots Simple x-y Plots Titles, Labels and Grids Multiple Plots.
AC SINUSOIDS Lecture 6 (I). SCOPE Explain the difference between AC and DC Express angular measure in both degrees and radians. Compute the peak, peak-peak,
Properties of Functions. First derivative test. 1.Differentiate 2.Set derivative equal to zero 3.Use nature table to determine the behaviour of.
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Introduction to Streamlines, Stream Functions, and Velocity Potential January 28, 2011 Mechanical and Aerospace.
ENG College of Engineering Engineering Education Innovation Center 1 2D Plots 2 in MATLAB Topics Covered: 1.More about 2-D plots  Placing multiple.
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS
Vectors and the Geometry of Space Section 10.4 Lines and Planes in Space 2015.
Chapter 17 Electric Potential. Question 1 answer.
Chapter 3 Lecture 5: Vectors HW1 (problems): 1.18, 1.27, 2.11, 2.17, 2.21, 2.35, 2.51, 2.67 Due Thursday, Feb. 11.
Examples of Potential Flows
Mathematics to Innovate Blade Profile P M V Subbarao Professor Mechanical Engineering Department Also a Fluid Device, Which abridged the Globe into Global.
VECTOR MECHANICS FOR ENGINEERS: DYNAMICS Seventh Edition Ferdinand P. Beer E. Russell Johnston, Jr. Lecture Notes: J. Walt Oler Texas Tech University CHAPTER.
Advance Fluid Mechanics
Copyright © Cengage Learning. All rights reserved.
Partial Derivative - Definition
Copyright © Cengage Learning. All rights reserved.
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS
Panel Methods.
MAE 5130: VISCOUS FLOWS Examples Utilizing The Navier-Stokes Equations
MAE 5130: VISCOUS FLOWS Homework #2 Solutions September 26, 2006
MatLab – 2D Plots 2 MATLAB has many built-in functions and commands to create various types of plots. Instructor notes: We start with an example of some.
Projectile motion Projectile Motion Subject to Gravity Assumptions:
AE/ME 339 Computational Fluid Dynamics (CFD) K. M. Isaac
Cylindrical and Spherical Coordinates
Stream function in polar coordinate
Presentation transcript:

MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Homework #4 Solution: Questions (1) – (4) Mechanical and Aerospace Engineering Department Florida Institute of Technology D. R. Kirk

QUESTION 1: SAMPLE MATLAB SCRIPT close all; clear all; % Question 1 a=1; lambda=1; [x,y]=meshgrid(-5:0.01:5,-5:0.01:5); psi=lambda./2./pi.*atan(2.*x.*y./(x.^2-y.^2+a.^2)); % Now I am going to set some fixed values of the streamfunction psi to % plot. I am setting up a vector V which will range from the minimum value % of psi to the maximum value. I use the double command min(min(psi)) since % psi is two-dimensional, and the first min will find the minimum row and % the second the minimum of that row, or a single value. Same idea with % max(max(psi)). Since I wanted to plot 10+1 values of constant psi, I % arranged them to be equally spaced between the minimum and maximum value. V=[min(min(psi)):(max(max(psi))-min(min(psi)))/10:max(max(psi))]; cs=contour(x,y,psi,V); % Note the use of the contour function here. To use the streamline command we could have % found the the u and v components of the velocity, which would have added some complexity % to this problem. Since we are only interested in sketching some of the streamlines, % I simply plotted a constant values of psi without any regard for the exact values. % Note that this would involve iteration to solve the resulting equation for either x or y given % a constant value of psi. xlabel('x-direction'); ylabel('y-direction'); title('Homework #4: Question 1'); grid; % clabel(cs,V); % If you uncomment the above line, MATLAB will label all the contours for % you as well. It is a little messy so use the zooming tool to see what is % really going on, especially in Quesiton #2.

QUESTION 1: STREAMLINE PLOT Find the stream function and plot some streamlines for the combination of a line source, L, at (x,y)=(0,a) and an equal line source located at (0,-a)

QUESTION 1: EXAMPLE OF LABELED CONTOURS Find the stream function and plot some streamlines for the combination of a line source, L, at (x,y)=(0,a) and an equal line source located at (0,-a)

QUESTION 2: SAMPLE MATLAB SCRIPT gamma=-1; [x,y]=meshgrid(-2.001:0.01:2.001,-2:0.01:2); % Notice the choice on the starting and ending bounds that I have selected. % Since the natural log of 0 is negative infinity MATLAB has problems % plotting streamlines with this value. Therefore I selected some starting % and ending points that eliminate the argument of the natural log from % ever being zero. psi=gamma./2./pi.*log(sqrt((x-a).^2+y.^2))+gamma./2./pi.*log(sqrt((x+a).^2+y.^2)); figure(2) V=[min(min(psi)):(max(max(psi))-min(min(psi)))/20:max(max(psi))]; cs=contour(x,y,psi,V); clabel(cs,V); xlabel('x-direction'); ylabel('y-direction'); title('Homework #4: Question 2'); grid;

QUESTION 2: STREAMLINE PLOT Find the stream function and plot some streamlines for the combination of a counterclockwise line vortex with strength G at (x,y)=(a,0) and an equal line vortex placed at (-a,0).

QUESTION 2: EXAMPLE OF LABELED CONTOURS Find the stream function and plot some streamlines for the combination of a counterclockwise line vortex with strength G at (x,y)=(a,0) and an equal line vortex placed at (-a,0).

QUESTION 3: SAMPLE MATLAB SCRIPT, POLAR AND CARTESIAN % Question 3 in Polar Coordinates lambda=-1000; gamma=1600; [psi,r]=meshgrid(0:100:1000,0:0.01:10); theta=(psi-gamma./2./pi.*log(r))./(lambda./2./pi); % Note that here we were able to solve for theta explicitly, unlike either % x or y in Question (1) or Question (2). Also, I am not sure if MATLAB can % do contour plots in polar coordinates. figure(3) polar(theta,r); title('Homework #4: Question 3, Polar Approach'); grid; % Question 3 in Cartesian Coordinates [x,y]=meshgrid(-10:0.1:10,-10:0.1:10); psi=lambda./2./pi.*atan(y./x)+gamma./2./pi.*log(sqrt(x.^2+y.^2)); figure(4) V=[min(min(psi)):(max(max(psi))-min(min(psi)))/20:max(max(psi))]; cs=contour(x,y,psi,V); xlabel('x-direction'); ylabel('y-direction'); title('Homework #4: Question 3, Cartesian Approach'); grid;

QUESTION 3: POLAR COORDINATES A tornado is simulated by a line sink L=-1000 m2/s plus a line vortex G=1600 m2/s. Find the angle between any streamline and radial line, and show that it is independent of both r and q. If this tornado forms in sea-level standard air, what is the local pressure and velocity 25 meters from the center of the tornado?

EXTRA CREDIT: LOG SPIRALS AND THE DIVINE RATIO

QUESTION 3: CARTESIAN COORDINATES A tornado is simulated by a line sink L=-1000 m2/s plus a line vortex G=1600 m2/s. Find the angle between any streamline and radial line, and show that it is independent of both r and q. If this tornado forms in sea-level standard air, what is the local pressure and velocity 25 meters from the center of the tornado? Explain what is going on here

QUESTION 3: INCREASED FIDELITY Why are these streamlines not continuous?

QUESTION 4: SAMPLE MATLAB SCRIPT close all; clear all; a=1; gamma=1; [x,y]=meshgrid(-3.001:0.01:3.001,-3:0.01:3); psi=-3.*gamma./2./pi.*log(sqrt(x.^2+(y-a).^2))+1.*gamma./2./pi.*log(sqrt(x.^2+(y+a).^2)); V=[min(min(psi)):(max(max(psi))-min(min(psi)))/50:max(max(psi))]; figure(1) contour(x,y,psi,V); xlabel('x-direction'); ylabel('y-direction'); title('Homework #4: Question 4'); grid; figure(2) phi=3.*gamma./2./pi.*atan((y-a)./x)-1.*gamma./2./pi.*atan((y+a)./x); Z=[min(min(phi)):(max(max(phi))-min(min(phi)))/50:max(max(phi))]; hold on; contour(x,y,phi,Z);

QUESTION 1: FINDING MINIMUM VELOCITY USING SYMBOLIC MATH % find velocity components using MATLAB's symbolic toolbox syms x y a gamma u v psi=-3.*gamma./2./pi.*log(sqrt(x.^2+(y-1).^2))+1.*gamma./2./pi.*log(sqrt(x.^2+(y+1).^2)); % To find Velocity Components, take derivatives of psi with respect to x and y u=diff(psi,y); v=-diff(psi,x); % clear all a=1; gamma=1; [x,y]=meshgrid(-3:0.05:3,-3:0.05:3); u=-3./4.*gamma./pi./(x.^2+y.^2-2.*y+1).*(2.*y-2)+1./4.*gamma./pi./(x.^2+y.^2+2.*y+1).*(2.*y+2); v=3./2.*gamma./pi./(x.^2+y.^2-2.*y+1).*x-1./2.*gamma./pi./(x.^2+y.^2+2.*y+1).*x; V=sqrt(u.^2+v.^2); Vmin=min(min(V)) loc_Vmin=find(V==Vmin); xloc_Vmin=x(loc_Vmin); yloc_Vmin=y(loc_Vmin); % The following command will generate a 3-D picture of the velocity field figure(3) surf(x,y,V); hold on; plot3(xloc_Vmin,yloc_Vmin,Vmin,'.r','MarkerSize',20); colorbar; title('Homework #4: Question 4 Velocity Magnitude'); grid; xlabel('x-direction'); ylabel('y-direction'); zlabel('Velocity Magnitude'); % Examine velocity magnitude on constant x x=xloc_Vmin; y=-3:0.01:3; figure(4) plot(y,V,yloc_Vmin,Vmin,'ro'); grid; legend('Velocity Magnitude on x=0','Location of Minimum Velocity','Location','NorthWest'); xlabel('y-direction'); ylabel('Magnitude of Velocity'); title('Plot of Velocity Profile between Vorticies');

QUESTION 4: PLOT OF y A counterclockwise line vortex of strength 3G at (x,y)=(0,a) is combined with a clockwise vortex G at (0,-a). Plot the streamline and potential-line pattern, and find the point of minimum velocity between the two vorticies.

QUESTION 4: PLOT OF y AND f

QUESTION 4: VELOCITY MAGNITUDE (SYMBOLIC MATH)

QUESTION 4: MAGNITUDE AND LOCATION OF VMIN