summaryrefslogtreecommitdiff
path: root/3825/CH1/EX1.2/Ex1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3825/CH1/EX1.2/Ex1_2.sce')
-rw-r--r--3825/CH1/EX1.2/Ex1_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3825/CH1/EX1.2/Ex1_2.sce b/3825/CH1/EX1.2/Ex1_2.sce
new file mode 100644
index 000000000..e78aff5d0
--- /dev/null
+++ b/3825/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,9 @@
+clc
+Rhow=1000 //density of water in ρ(kg/metre cube)
+RhoHg=13.6*(10^3) //density of mercury in ρ(kg/metre cube)
+g=9.81 //gravitational constant in metre/second square
+h=0.2 //in metres
+Pdrop=(RhoHg-Rhow)*g*h
+mprintf('The pressure drop with water in manometer is%fkPa',Pdrop/1000)//ans may vary due to roundoff error with Pdrop converted in kilo pascals
+
+