summaryrefslogtreecommitdiff
path: root/2642/CH4/EX4.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2642/CH4/EX4.5
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2642/CH4/EX4.5')
-rwxr-xr-x2642/CH4/EX4.5/Ex4_5.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/2642/CH4/EX4.5/Ex4_5.sce b/2642/CH4/EX4.5/Ex4_5.sce
new file mode 100755
index 000000000..7996df6df
--- /dev/null
+++ b/2642/CH4/EX4.5/Ex4_5.sce
@@ -0,0 +1,28 @@
+// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 4 : DIRECT CURRENT GENERATORS
+// Example : 4.5
+
+
+clc;clear; // clears the console and command history
+
+// Given data
+P = 6 // number of poles
+Z = 600 // number of conductors
+phi = 0.05 // flux per pole in Wb
+N = 1000 // speed in rpm
+I_a = 120 // generetor supply current in A
+
+// caclulations
+A=6 // for lap-wound A=P
+E_g = (P*phi*Z*N)/(60*A) // generated voltage in V
+T_em = ((P*Z*phi)/(2*%pi*A))*I_a // electromagnetic torque in N-m
+
+
+// display the result
+disp("Example 4.5 solution");
+printf(" \n Generated voltage \n E_g = %.0f V \n", E_g);
+printf(" \n Electromagnetic torque \n T_em = %.2f N-m \n", T_em);