summaryrefslogtreecommitdiff
path: root/3681/CH9/EX9.8/Ex9_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3681/CH9/EX9.8/Ex9_8.sce')
-rw-r--r--3681/CH9/EX9.8/Ex9_8.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3681/CH9/EX9.8/Ex9_8.sce b/3681/CH9/EX9.8/Ex9_8.sce
new file mode 100644
index 000000000..b10213d48
--- /dev/null
+++ b/3681/CH9/EX9.8/Ex9_8.sce
@@ -0,0 +1,11 @@
+// Calculating the maximum permissible output from a machine
+clc;
+disp('Example 9.8, Page No. = 9.33')
+// Given Data
+D = 2;// Diameter (in meter)
+ac = 50000;// Specific electric loading
+ez = 7.5;// emf generated in a conductor at no load (in Volts)
+// Calculation of the maximum permissible output from a machine
+P = %pi*D*ac*ez*10^(-3);// Maximum permissible output (in kW)
+disp(P,'Maximum permissible output (kW)=');
+//in book answer is 2350 (kW). The answers vary due to round off error