diff options
Diffstat (limited to '1958/CH5/EX5.4/Chapter5_example4.sce')
-rwxr-xr-x | 1958/CH5/EX5.4/Chapter5_example4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1958/CH5/EX5.4/Chapter5_example4.sce b/1958/CH5/EX5.4/Chapter5_example4.sce new file mode 100755 index 000000000..350a77b3f --- /dev/null +++ b/1958/CH5/EX5.4/Chapter5_example4.sce @@ -0,0 +1,11 @@ +clc
+clear
+//Input data
+r=0.003//Radius of drop of glycerine in m
+T=(63.1*10^-3)//Surface tension of glycerine in N/m
+
+//Calculations
+P=((2*T)/r)//Excess pressure inside the drop of glycerine in N/m^2
+
+//Output
+printf('Excess pressure inside the drop of glycerine is %3.2f N/m^2',P)
|