summaryrefslogtreecommitdiff
path: root/3720/CH12/EX12.10/Ex12_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3720/CH12/EX12.10/Ex12_10.sce')
-rw-r--r--3720/CH12/EX12.10/Ex12_10.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3720/CH12/EX12.10/Ex12_10.sce b/3720/CH12/EX12.10/Ex12_10.sce
new file mode 100644
index 000000000..8b7f3977f
--- /dev/null
+++ b/3720/CH12/EX12.10/Ex12_10.sce
@@ -0,0 +1,9 @@
+//Example 12_10
+clc;clear;
+// Given values
+mu=19;// Angle of Mach lines in degrees
+
+// Calculation
+// mu=asind(1/Ma_1)
+Ma_1=1/sind (19);// Mach number
+printf('Mach number ,Ma=%0.2f \n',Ma_1);