summaryrefslogtreecommitdiff
path: root/3720/CH14/EX14.10
diff options
context:
space:
mode:
Diffstat (limited to '3720/CH14/EX14.10')
-rw-r--r--3720/CH14/EX14.10/Ex14_10.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3720/CH14/EX14.10/Ex14_10.sce b/3720/CH14/EX14.10/Ex14_10.sce
new file mode 100644
index 000000000..78ea2f1ab
--- /dev/null
+++ b/3720/CH14/EX14.10/Ex14_10.sce
@@ -0,0 +1,9 @@
+// Example 14_10
+clc;clear;funcprot(0);
+//Given data
+omega_a=1;// Unit Speed
+
+// Calculation
+omega_b=2*omega_a;// Speed
+bhp_ratio=(omega_b/omega_a)^3;
+printf('\nThe power to the pump motor must be increased by a factor of %0.0f.',bhp_ratio);