summaryrefslogtreecommitdiff
path: root/551/CH16/EX16.3/3.sce
diff options
context:
space:
mode:
Diffstat (limited to '551/CH16/EX16.3/3.sce')
-rwxr-xr-x551/CH16/EX16.3/3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/551/CH16/EX16.3/3.sce b/551/CH16/EX16.3/3.sce
new file mode 100755
index 000000000..f7725bf3b
--- /dev/null
+++ b/551/CH16/EX16.3/3.sce
@@ -0,0 +1,16 @@
+clc
+SG=0.8;
+rho_oil=800; //kg/m^3
+K_oil=1.5*10^9; //N/m^2; crude oil
+K_Hg=27*10^9; //N/m^2; Mercury
+rho_Hg=13600; //kg/m^3
+
+C_oil=sqrt(K_oil/rho_oil);
+disp("Sonic velocity of crude oil =")
+disp(C_oil)
+disp("m/s")
+
+C_Hg=sqrt(K_Hg/rho_Hg)
+disp("Sonic velocity of Mercury =")
+disp(C_Hg)
+disp("m/s") \ No newline at end of file