summaryrefslogtreecommitdiff
path: root/1418/CH27/EX27.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH27/EX27.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1418/CH27/EX27.2')
-rw-r--r--1418/CH27/EX27.2/EX27_2.jpgbin0 -> 86195 bytes
-rw-r--r--1418/CH27/EX27.2/EX27_2.sce26
2 files changed, 26 insertions, 0 deletions
diff --git a/1418/CH27/EX27.2/EX27_2.jpg b/1418/CH27/EX27.2/EX27_2.jpg
new file mode 100644
index 000000000..4666fffca
--- /dev/null
+++ b/1418/CH27/EX27.2/EX27_2.jpg
Binary files differ
diff --git a/1418/CH27/EX27.2/EX27_2.sce b/1418/CH27/EX27.2/EX27_2.sce
new file mode 100644
index 000000000..2bf8e47d9
--- /dev/null
+++ b/1418/CH27/EX27.2/EX27_2.sce
@@ -0,0 +1,26 @@
+//EXAMPLE 27.2
+//8-POLE GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+P=8;......//Total number of poles
+Z=722;.....//Total number of conductors
+V=500;.......//Termiinal voltage in Volts
+Ia=200;........//Armature current in Amperes
+Z=1280;......//Total number of conductors
+as=160;........//Total number of armature segments
+ba=4;..........//Advancement in brushes from no-load neutral axis
+Al=P;...........//Number of parallel paths in a
+
+I=Ia/P;.....//Current per path in Amperes
+b=ba*360/as;......//Brush lead in degrees
+
+
+ATdpole=Z*I*b/360;.....//Armatuue demagnetizing ampere-turns per pole
+disp(ATdpole,"Armatuue demagnetizing ampere-turns per pole:");
+ATepole=Z*I*((1/(2*P))-(b/360));.......//Armature cross-magnetizing ampere-turns per pole
+disp(ATepole,"Armature cross-magnetizing ampere-turns per pole:");
+
+