summaryrefslogtreecommitdiff
path: root/1268/CH8/EX8.4/8_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1268/CH8/EX8.4/8_4.sce')
-rw-r--r--1268/CH8/EX8.4/8_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1268/CH8/EX8.4/8_4.sce b/1268/CH8/EX8.4/8_4.sce
new file mode 100644
index 000000000..bfe709a89
--- /dev/null
+++ b/1268/CH8/EX8.4/8_4.sce
@@ -0,0 +1,12 @@
+clc;
+disp("Example 8.4")
+delZ=0.5
+densityw=1000 // of water
+densitym=13600 // of mercury
+g=9.81 // acceleration due to gravity in m/s^2
+reading=0.15
+delP=reading*(densitym-densityw)*g+delZ*g*densityw
+disp(delP)
+// applying bernoullis law and the relation U2=4U1
+U1=((2*g*(delP/(densityw*g)-0.5))/15)^0.5
+disp(U1,"Velocity is ")