summaryrefslogtreecommitdiff
path: root/629/CH2/EX2.4
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH2/EX2.4
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '629/CH2/EX2.4')
-rw-r--r--629/CH2/EX2.4/ex2_4.txt1
-rw-r--r--629/CH2/EX2.4/example2_4.sce12
2 files changed, 13 insertions, 0 deletions
diff --git a/629/CH2/EX2.4/ex2_4.txt b/629/CH2/EX2.4/ex2_4.txt
new file mode 100644
index 000000000..87a897a14
--- /dev/null
+++ b/629/CH2/EX2.4/ex2_4.txt
@@ -0,0 +1 @@
+ The height above the reservoir level, the water rises in a glass tube = 18.6 mm. \ No newline at end of file
diff --git a/629/CH2/EX2.4/example2_4.sce b/629/CH2/EX2.4/example2_4.sce
new file mode 100644
index 000000000..95a035738
--- /dev/null
+++ b/629/CH2/EX2.4/example2_4.sce
@@ -0,0 +1,12 @@
+clear
+clc
+//Example 2.4 CAPILLARY RISE IN A TUBE
+d=1.6*10^-3; //[m]
+A=%pi*d^2/4; //area[m^2]
+Gamma=9790; //[N/m^3]
+sigma=0.073; //[N/m]
+//Force balance, Ft-W=0, W=Gamma*Δh*A, theta=0°(assume)
+theta=0;
+Ft=sigma*%pi*d*cosd(theta) //surface tension force [N]
+delh=Ft*10^3/(Gamma*A) //Δh[mm]
+printf("\n The height above the reservoir level, the water rises in a glass tube = %.1f mm.\n",delh) \ No newline at end of file