blob: e7de46e5f181219ffef541b94505a02d07d4d22a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc;clear;
//Example 17.10
//given data
//using protactor frpm Fig 17-36
u=19;//u stands for angle of the mach lines
//calculations
//by Eq. 17-47
//i.e u= asin(1/Ma)
Ma=1/sind(u);
disp(Ma,'The Mach number is')
|