summaryrefslogtreecommitdiff
path: root/608/CH21/EX21.03/21_03.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH21/EX21.03/21_03.sce
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 '608/CH21/EX21.03/21_03.sce')
-rwxr-xr-x608/CH21/EX21.03/21_03.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/608/CH21/EX21.03/21_03.sce b/608/CH21/EX21.03/21_03.sce
new file mode 100755
index 000000000..e3c07c47d
--- /dev/null
+++ b/608/CH21/EX21.03/21_03.sce
@@ -0,0 +1,15 @@
+//Problem 21.03: An 8-pole, lap-wound armature has 1200 conductors and a flux per pole of 0.03 Wb. Determine the e.m.f. generated when running at 500 rev/min.
+
+//initializing the variables:
+Z = 1200; // no. of conductors
+p = 1; // let, no. of pairs
+c = 2*p; // for a lap winding
+Phi = 30E-3; // in Wb
+n = 500/60; // in rev/sec
+
+//calculation:
+//Generated e.m.f., E = 2*p*Phi*n*Z/c
+E = 2*p*Phi*n*Z/c
+
+printf("\n\n Result \n\n")
+printf("\n Generated e.m.f. is %.0f V ",E) \ No newline at end of file