summaryrefslogtreecommitdiff
path: root/3819/CH3/EX3.4/Ex3_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3819/CH3/EX3.4/Ex3_4.sce')
-rw-r--r--3819/CH3/EX3.4/Ex3_4.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3819/CH3/EX3.4/Ex3_4.sce b/3819/CH3/EX3.4/Ex3_4.sce
new file mode 100644
index 000000000..63fc40385
--- /dev/null
+++ b/3819/CH3/EX3.4/Ex3_4.sce
@@ -0,0 +1,20 @@
+// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
+// Chapter 3-Hydrostatic Forces on surfaces
+// Problem 3.4
+
+//Data given in the Problem
+d=3
+A=%pi*d^2/4
+h=4
+g=9.81
+
+//Calculations
+//1)Force on disc
+F=dens*g*A*h
+mprintf("The force on the disc is %f kN\n",10^-3*F)
+
+//2)Torque required
+IG=%pi/64*d^4
+H=(IG/A/h)+h
+T=F*(H-h)
+mprintf("The Torque required to maintain the disc in edulirium is %f Nm ",T)