diff options
Diffstat (limited to '3689/CH8/EX8.3/8_3.sce')
-rw-r--r-- | 3689/CH8/EX8.3/8_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3689/CH8/EX8.3/8_3.sce b/3689/CH8/EX8.3/8_3.sce new file mode 100644 index 000000000..662e83fab --- /dev/null +++ b/3689/CH8/EX8.3/8_3.sce @@ -0,0 +1,13 @@ +////
+//Varialble Declaration
+gama = 71.99e-3 //Surface tension of water, N/m
+r = 1.2e-4 //Radius of hemisphere, m
+theta = 0.0 //Contact angle, rad
+
+//Calculations
+DP = 2*gama*cos(theta)/r
+F = DP*%pi*r**2
+
+//Results
+printf("\n Force exerted by one leg %5.3e N",F)
+
|