summaryrefslogtreecommitdiff
path: root/2021/CH15/EX15.2/EX15_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH15/EX15.2/EX15_2.sce')
-rwxr-xr-x2021/CH15/EX15.2/EX15_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/2021/CH15/EX15.2/EX15_2.sce b/2021/CH15/EX15.2/EX15_2.sce
new file mode 100755
index 000000000..7d1cc6ae6
--- /dev/null
+++ b/2021/CH15/EX15.2/EX15_2.sce
@@ -0,0 +1,9 @@
+//Finding of Speed of Sound waves
+//Given
+k=1.4;
+R=287;
+T=293;
+//To Find
+C=sqrt(k*R*T);
+C1=C*(18/5);
+disp("Speed of Sound waves ="+string(C1)+" Km/hr");