summaryrefslogtreecommitdiff
path: root/2504/CH11/EX11.2
diff options
context:
space:
mode:
Diffstat (limited to '2504/CH11/EX11.2')
-rwxr-xr-x2504/CH11/EX11.2/11_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2504/CH11/EX11.2/11_2.sce b/2504/CH11/EX11.2/11_2.sce
new file mode 100755
index 000000000..655fbd9bb
--- /dev/null
+++ b/2504/CH11/EX11.2/11_2.sce
@@ -0,0 +1,18 @@
+clc
+//initialisation of variables
+clear
+vbm= 38 //ft/sec
+va= 17.94 //ft/sec
+a= 147.5 //degrees
+vwm= 10.37 //ft/sec
+C= 1430 //lbf/ft
+P= 763 //lbf/ft^2
+//CALCULATIONS
+vwm1= vbm+va*cotd(a)
+p= (vwm-vwm1)/vwm
+C1= C*(1-p)
+P1= P*(1-p)
+//RESULTS
+printf ('Oulet Velocity = %.2f ft/sec',vwm1)
+printf ('\n Torque = %.f lbf/ft',C1)
+printf ('\n Workdone by the rotor = %.f lbf/ft^2',P1)