summaryrefslogtreecommitdiff
path: root/914/CH9/EX9.5/ex9_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '914/CH9/EX9.5/ex9_5.sce')
-rwxr-xr-x914/CH9/EX9.5/ex9_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/914/CH9/EX9.5/ex9_5.sce b/914/CH9/EX9.5/ex9_5.sce
new file mode 100755
index 000000000..1d2e22124
--- /dev/null
+++ b/914/CH9/EX9.5/ex9_5.sce
@@ -0,0 +1,17 @@
+clc;
+warning("off");
+printf("\n\n example9.5 - pg 393");
+// given
+n=[0.5 0.6 0.7 0.8 0.9 1.0];
+D2=3.806;
+D1=0.25;
+R=D2/D1;
+N1=690;
+N2=N1*((D1/D2)^n);
+P1=9.33*10^-3; //[hp]
+P2=P1*R^(5-3*n);
+printf("\n\n n N,rpm P,hp");
+for i=1:6
+printf("\n %f %f %f",n(i),N2(i),P2(i));
+end
+