Starting from:

$29

Aerospace Computational Techniques Homework 3


MAE 3150: Aerospace Computational Techniques
 
Homework 3
For this assignment, you will need to write some short codes to complete the following problems. You are free to
write in any language you prefer, including MATLAB, provided you do not use any built-in commands or intrinsic
functions to shortcut the methods you are asked to investigate (though you may use them to verify your answers).
For instance, you may not use MATLAB’s fzero command to find the roots of an equation. The only restrictions
on your codes are that they must write your output to a file, and numbers in your results must be properly formatted
with an appropriate number of significant figures. Use exponential notation where (and only where) appropriate.
Please turn in both hard and electronic copies of both your codes, and your hardcopies of your results.
1. Root finding has its place in several applications in the areas of vibration (modal analysis of wing flutter),
acoustics (microphone and speaker placement for acoustic signature measurements), and computational fluid
dynamics (matching governing equations to proper numerical schemes for aerodynamic calculations).
 Determine the real root
0 2 root   x
 , out to exactly three decimal points, of the polynomial
 
3 2 f x x x x     8 6 6
a) graphically (no code required; simply plot; you may use any function of any software
to do this) Hint: Plot a separate line y = 0 to show where the function crosses the axis.
The suggested plot range is x = 0 to x = 6.
b) using fixed-point iteration (five iterations, xo = 2)
c) using Newton-Raphson (five iterations, xo = 2)
d) using Secant method (five iterations, x-1 = 1, xo = 2)
Compute the approximate percent relative errors out to exactly four decimal points for each iteration of your
solutions as described in the notes.
If a method appears to diverge, provide a mathematical reason why that is.
The file name for your fixed-point iteration code should be: firstname_lastname.hmwk3_fpi.sp16.ext
The file name for your Newton-Raphson code should be: firstname_lastname.hmwk3_nr.sp16.ext
The file name for your Secant method code should be: firstname_lastname.hmwk3_sec.sp16.ext
Assigned 2/9/16
2. There are many applications where numerical integration is required in aerospace engineering. Examples include
integrating a pressure distribution about an airfoil to find lift and drag, integrating a time-dependent drag profile on a
rocket to determine time of flight and burnout altitude, and integrating a probability distribution function to find the
average fuel drop diameter in an aircraft engine. In many instances, the function to be integrated may be a set of
discrete data points rather than being analytical, but the technique is similar.
Integrate the following function both analytically (you may want to look this up in a table of integrals) and
numerically:
 
2
0
cos x
I f e x dx


 
Use both the trapezoidal and Simpson’s 1/3 rules to numerically integrate the function out to exactly seven decimal
points. For both cases, start with n = 1, then double the number of segments until your last computation includes
512 segments. Compute the percent relative errors, out to exactly four decimal points, for the numerical results (as
compared to the analytic answer).
Numerical Answer - Analytic Answer % Error =
Analytic Answer
The file name for your Trapezoidal Rule code should be: firstname_lastname.hmwk3_trap.sp16.ext
The file name for your Simpson’s Rule code should be: firstname_lastname.hmwk3_simp.sp16.ext
Assigned 2/9/16

More products