diff options
Diffstat (limited to '3819/CH1/EX1.25')
-rw-r--r-- | 3819/CH1/EX1.25/Ex1_25.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3819/CH1/EX1.25/Ex1_25.sce b/3819/CH1/EX1.25/Ex1_25.sce new file mode 100644 index 000000000..63c6f78f7 --- /dev/null +++ b/3819/CH1/EX1.25/Ex1_25.sce @@ -0,0 +1,12 @@ +// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
+// Chapter 1-Properties of Fluid
+// Problem 1.25
+
+//Given Data Set in the Problem(SI Units)
+st=0.0725 //Surface tension
+p=0.02*10^4
+
+//Calculations
+//Using pressure =(4*Surface tension)/(diameter of the droplet)
+d=4*st/p
+mprintf("The diameter of the droplet is %f mm",d*10^3);
|