



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
These are the Lecture Notes of High Speed Aerodynamics which includes Navier Stokes Equations, Practicing Engineer, Several Simple Solutions, Separation of Variables, Vortices In Potential Flow, Superposition, Potential Flow, Elliptic, Entire Flow Field etc. Key important piints are: Design, Computer Code, Straightening Section, Test Section, Reasonable Contour, Subsonic Section, Expansion, Arbitrary, Sketch Below, Shortest Nozzle
Typology: Study notes
1 / 7
This page cannot be seen from the preview
Don't miss anything!




Read Anderson Section 13.3, especially the example discussed in detail on page
The shape of the expansion section is arbitrary (see p. 591 and the enclosed figure). For simplicity here, take all of the expansion at a sharp corner just downstream of the nozzle throat as illustrated in the sketch below, i.e. set the radius of curvature of the circular arc R , in the figure to zero.
The Mach number at the throat is unity. It may be shown that, for a given Mach number in the test section, the shortest nozzle occurs when the expansion section opens up to an angle equal to one half of the Prandtl-Meyer function ν corresponding to the test section Mach number. The shortest possible nozzle occurs for this condition when all the expansion occurs just downstream of the throat. Thus, the calculation required here corresponds to the design of a shortest possible length nozzle. Because of boundary layer problems, wind tunnel nozzles are normally not designed with the full expansion at the throat.
The nozzles are to be designed for the following test section Mach numbers: 2. and 4.0.
In the figure, the expansion region immediately downstream of the throat is represented by 3 steps. The program must allow for any number of expansion steps, N (N < 10). Take 6 to 10 steps through the expansion turning angle (the more you take, the more accurate the solution).
How does the program work?
(i,j)
(i,j-1)
(i-1,j)
i) Compute first the flow slope θ and ν at (i,j) from the compatibility relations:
θ (^) i,j = [ θ (^) i,j-1 + ν (^) i,j-1 + θ (^) i-1,j - ν (^) i-1,j ] / 2
ν (^) i,j = [ θ (^) i,j-1 + ν (^) i,j-1 - θ (^) i-1,j + ν (^) i-1,j ] / 2
ii) Compute from ν (^) i,j the Mach number and Mach angle μ at (i,j).
iii) Compute the (x,y) locations of the node (i,j) as the intersection of characteristics originating at nodes (i,j-1) and (i-1,j).
(i,i-1)
(i,i) Nozzle Axis
θi,i-1+ νi,i-1 = θi,i + νi,i = νi,i
Once the Prandtl Meyer function values νi,i at these axis points are known, the Mach number at these locations, and the corresponding Mach angles may be found. The (x,y) locations of these axial points are finally found by solving:
yi,i = 0
a) Assume that the value of M for the given ν lies in an interval between two extremes MLEFT and MRIGHT.
Good starting guesses are: MLEFT = 1 and MRIGHT = 10.
b) Find the mid-point of this interval, MMID = (MLEFT + MRIGHT) / 2
c) Check the width of the interval MRIGHT - MLEFT... If this interval is less than some tolerance, say 0.001, then the Mach number you are seeking is MMID. Exit the iteration loop.
d) Compare given ν with ν(MMID).
If ν is greater than ν(MMID) then you need to search in the right portion of the current interval. Therefore, set MLEFT to MMID.
If ν is less than ν(MMID) then you need to search in the left half of your current interval. Therefore, set MRIGHT to MMID.
e) Go to step (b). Repeat until the criterion in step (c) is satisfied.