summaryrefslogtreecommitdiff
path: root/3814/CH1/EX1.2/Ex1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3814/CH1/EX1.2/Ex1_2.sce')
-rw-r--r--3814/CH1/EX1.2/Ex1_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3814/CH1/EX1.2/Ex1_2.sce b/3814/CH1/EX1.2/Ex1_2.sce
new file mode 100644
index 000000000..e085cec83
--- /dev/null
+++ b/3814/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,9 @@
+
+// determine the height that the water will rise to capillary action in the tube
+clc
+sigma=0.073 // sigma of pipe
+gamma1=9800 // gammma constant
+D=2e-3// diameter of the pipe
+h=(4*sigma)/(gamma1*D) // height of the water rise in capillary
+mprintf('\n height of water rise in capillary is given by %f meter',h)
+