Aerodynamics Computational Assignment #3: Flow Over Thick Airfoils

$24.99 $18.99

Matlab Code Policy: Computational codes must be written individually and are expected to be written in MAT-LAB. If you have collaborated with others while writing your code be sure to acknowledge them in the header of your code, otherwise you may receive a zero for plagiarism. All code files required to successfully run the computational…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:

Description

5/5 – (2 votes)

Matlab Code Policy:

Computational codes must be written individually and are expected to be written in MAT-LAB. If you have collaborated with others while writing your code be sure to acknowledge them in the header of your code, otherwise you may receive a zero for plagiarism. All code files required to successfully run the computational assignment driver script should be sub-mitted via the course website by 11:59pm on the due date. Code files will not be accepted after the given due date.

Reflection Questions:

In this assignment, there are multiple reflection questions. These reflection questions are provided to help you review the functionality of your code, help you analyze and understand your results, and to test your understanding of the concepts being studied.

Learning Outcomes:

  1. Practice using the vortex panel method to calculate aerodynamic forces on a thick airfoil.

  1. Understand the difference between the application and results of thin airfoil theory and the vortex panel method.

  1. Understand how the changes in wing section camber and thickness alter the lift slope.

ASEN 3111 Aero Computational Assignment # 3

Problem #1:

Write a MATLAB function to apply the vortex panel method for an arbitrary two-dimensional body defined by a set of (x, y) coordinates that define its surface. Your function should include the following steps:

  1. Read in the list of points.

  1. Read in necessary flow conditions (e.g. the free-stream flow speed and angle of attack).

  1. Form the system of equations.

  1. Solve the system of equations.

  1. Return the coefficient of pressure resulting from your calculations and consider plot-ting it within the function.

  1. Return the sectional coefficient of lift resulting from your calculations.

Your function should take the form:

function [c_l, C_p] = Vortex_Panel(x,y,V_inf,alpha)

where c_l is the section coefficient of lift and C_p is the coefficient of pressure (both which should be computed and returned), x is a vector containing the x-location of your coordi-nates (i.e. the boundary points in the panel method), y is a vector containing the y-location of your coordinates, V_inf is the free-stream flow speed, and alpha is the angle of attack. It is recommended that the first and last entries of x and y correspond to the trailing edge to ease implementation.

While debugging your function you are encouraged to plot the coefficient pressure within the function, but after debugging is complete it is recommended that you pass the coefficient of pressure back out of the function for plotting and analysis (as detailed in Problem # 2 below). You are free to plot the coefficient of pressure in any form you like. For instance, you may plot the coefficient of pressure versus x/c, where c = max(x) − min(x) is the chord length. Alternatively, you may plot the coefficient of pressure versus the arc length s.

Problem #2:

Apply the MATLAB function you wrote for Problem #1 to lifting flow over a NACA 0012 airfoil at various angles of attack. For an angle of attack of 0, compute the flow for a couple of different resolutions and compare the results. From this study, choose a nominal number of panels required for a desired quantitative level of accuracy. It is up to the student to define a measure of error in this regard. Produce a plot of the change in error versus the number of total panels (e.g. upper and lower surfaces) and print the nominal number of panels needed to the command window. Then, using the nominal number of panels, compute lifting flow over a NACA 0012 airfoil and plot the results (i.e. coefficients of lift and pressure) for the following angles of attack: α = −5, 0, 5, 10.

ASEN 3111 Aero Computational Assignment # 3

Reflection: How does the pressure coefficient field change with increasing angle of attack? How similar is it to thin airfoil theory (i.e. Comp. Assignment 02) and what differences exist?

Problem #3:

Using the MATLAB function you wrote for Problem #1, obtain plots of the sectional coefficient of lift versus angle of attack for the following airfoils:

  • NACA 0012

  • NACA 2412

  • NACA 4412

  • NACA 2424

Using these plots, estimate the lift slope and zero-lift angle of attack for each of the airfoils, and compare these results with thin airfoil theory. It is recommended that you plot all of these together to provide a clearer comparison.

Reflection: How do changes in the wing section camber and thickness alter the lift slope and the zero lift angle of attack?

Bonus (Up to +10 Points):

Use the vortex panel method to compute lifting flow over the following multi-element wing:

Y

0.05C

0.75C

X

V

where both the airfoil and trailing edge flap are constructed from NACA 0012 airfoils. Obtain a plot of the section coefficient of lift versus angle of attack for a deflection angle of δ = 30, and compare this plot with the corresponding plot of sectional coefficient of lift versus angle of attack for a NACA 0012 airfoil without flap.

ASEN 3111 Aero Computational Assignment # 3

Suggested Approach:

You will need to build 4-digit NACA airfoils repeatedly throughout this lab. As such, it is suggested that you build a MATLAB function to construct panels for a given NACA airfoil. For instance, your MATLAB function may take the form:

[x,y] = function NACA_Airfoils(m,p,t,c,N)

where x is a vector containing the x-location of the boundary points, y is a vector contain-ing the y-location of the boundary points, m is the maximum camber, p is the location of maximum camber, t is the thickness, c is the chord length, and N is the number of employed panels.

Note: The formula for the shape of a NACA 4-digit series airfoil with camber is a bit involved. The first ingredient is the thickness distribution of the airfoil from the mean camber line, whichc is given by:

yt = 0.2 c

0.2969r

c

0.1260

c

0.3516

c

+ 0.2843

c

0.1036

c

t

x

x

x

2

x

3

x

4

where c is the chord length, x is the position along the chord from 0 to c, yt is the half thickness at a given value of x (mean camber line to surface), and t is the maximum thickness aas a fraction of the chord. As with the case of a symmetric NACA airfoil, the last two digits in the NACA XXXX description gives 100t. The second ingredient is the formula for the mean camber line, which is:

( m (1−p)2

1 + c

2p , pc ≤ x ≤ c

m x2

2p − x

,

0

x ≤ pc

yc =

p

x

c

c−x

where m is the maximum camber and p is the location of maximum camber. The first digit in the NACA XXXX description gives 100m while the second digit gives 10p. Then, the coordinates (xU , yU ) and (xL, yL) of the upper and lower airfoil surface, respectively, become:

4

Aerodynamics Computational Assignment #3: Flow Over Thick Airfoils
$24.99 $18.99