diff options
Diffstat (limited to '2021/CH15/EX15.3')
-rwxr-xr-x | 2021/CH15/EX15.3/EX15_3.pdf | bin | 0 -> 23074 bytes | |||
-rwxr-xr-x | 2021/CH15/EX15.3/EX15_3.sce | 12 |
2 files changed, 12 insertions, 0 deletions
diff --git a/2021/CH15/EX15.3/EX15_3.pdf b/2021/CH15/EX15.3/EX15_3.pdf Binary files differnew file mode 100755 index 000000000..ebe43f34a --- /dev/null +++ b/2021/CH15/EX15.3/EX15_3.pdf diff --git a/2021/CH15/EX15.3/EX15_3.sce b/2021/CH15/EX15.3/EX15_3.sce new file mode 100755 index 000000000..50065ac48 --- /dev/null +++ b/2021/CH15/EX15.3/EX15_3.sce @@ -0,0 +1,12 @@ +//Finding of Mach Number
+//Given
+k=1.4;
+R=287;
+T=288;
+V=900;
+//To Find
+C=sqrt(k*R*T);
+C1=C*(18/5);
+disp("Speed of Sound waves ="+string(C1)+" Km/hr");
+M=V/C1;
+disp("Mach Number = "+string(M)+" No units");
|