summaryrefslogtreecommitdiff
path: root/3819/CH1/EX1.30/Ex1_30.sce
diff options
context:
space:
mode:
Diffstat (limited to '3819/CH1/EX1.30/Ex1_30.sce')
-rw-r--r--3819/CH1/EX1.30/Ex1_30.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3819/CH1/EX1.30/Ex1_30.sce b/3819/CH1/EX1.30/Ex1_30.sce
new file mode 100644
index 000000000..c158d5e4d
--- /dev/null
+++ b/3819/CH1/EX1.30/Ex1_30.sce
@@ -0,0 +1,16 @@
+// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
+// Chapter 1-Properties of Fluid
+// Problem 1.30
+
+//Given Data Set in the Problem
+h=0.2*10^-3
+st=0.0725
+dens=1000
+g=9.81
+
+//Calculations
+//Using rise=4*surface tension/(density *g *diameter of capillary)
+d=4*st/(dens*g*h)
+mprintf("The diameter oif the capillary for the rise of 0.2 mm is %f cm",d*100)
+
+