summaryrefslogtreecommitdiff
path: root/2021/CH1/EX1.7/EX1_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH1/EX1.7/EX1_7.sce')
-rwxr-xr-x2021/CH1/EX1.7/EX1_7.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2021/CH1/EX1.7/EX1_7.sce b/2021/CH1/EX1.7/EX1_7.sce
new file mode 100755
index 000000000..d29a1e4a9
--- /dev/null
+++ b/2021/CH1/EX1.7/EX1_7.sce
@@ -0,0 +1,12 @@
+//Finding of Cappilary rise
+//Given
+d=0.03*10^-2; //Diameter in meter
+st=0.0735; //Surface Tension in N/m
+x=0; //contact angle in degree
+w=1000*9.81;
+//To Find
+h=(4*st)*cos(x)/(w*d);
+h1=h*10^2;
+disp(h);
+disp("Capillary rise ="+string(h)+" meter");
+disp("Capillary rise ="+string(h1)+" Centi meter");