summaryrefslogtreecommitdiff
path: root/147/CH14/EX14.6/Example14_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH14/EX14.6/Example14_6.sce')
-rw-r--r--147/CH14/EX14.6/Example14_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/147/CH14/EX14.6/Example14_6.sce b/147/CH14/EX14.6/Example14_6.sce
new file mode 100644
index 000000000..890f5f562
--- /dev/null
+++ b/147/CH14/EX14.6/Example14_6.sce
@@ -0,0 +1,15 @@
+//Speed n, Flux per pole phi, Total number of conductors z
+//Maximum line current Ia
+close();
+clear;
+clc;
+p = 4;
+n = 1800;//rpm
+z = 728;
+Ia = 100;//A
+phi = 30*10^(-3);//Wb
+//Since armature is lap wound p=a
+a = p;
+E = phi*n*z/60*p/a;
+P = E*Ia;
+mprintf('Maximum Power developed by the armature P = %0.1f kW',P/1000); \ No newline at end of file