summaryrefslogtreecommitdiff
path: root/3647/CH12/EX12.3
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH12/EX12.3')
-rw-r--r--3647/CH12/EX12.3/Ex12_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3647/CH12/EX12.3/Ex12_3.sce b/3647/CH12/EX12.3/Ex12_3.sce
new file mode 100644
index 000000000..198ffbb3f
--- /dev/null
+++ b/3647/CH12/EX12.3/Ex12_3.sce
@@ -0,0 +1,16 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+
+clc
+//initialisation of variables
+h=4//ft
+h1=3.24//ft^3/min
+d=0.785//in
+v=5.26//ft^3/min
+//CALCULATIONS
+Cd=h1/v//ft
+C=1/4*%pi*(d)^2/(1/4*%pi*(1)^2)//ft^3
+V=Cd/C
+//RESULTS
+printf('the coefficients of discharge velocity and contraction=% f',V)