diff options
Diffstat (limited to '2870/CH17/EX17.10/Ex17_10.sce')
-rwxr-xr-x | 2870/CH17/EX17.10/Ex17_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2870/CH17/EX17.10/Ex17_10.sce b/2870/CH17/EX17.10/Ex17_10.sce new file mode 100755 index 000000000..e7de46e5f --- /dev/null +++ b/2870/CH17/EX17.10/Ex17_10.sce @@ -0,0 +1,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')
|