summaryrefslogtreecommitdiff
path: root/1418/CH26/EX26.33/EX26_33.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH26/EX26.33/EX26_33.sce
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/CH26/EX26.33/EX26_33.sce')
-rw-r--r--1418/CH26/EX26.33/EX26_33.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1418/CH26/EX26.33/EX26_33.sce b/1418/CH26/EX26.33/EX26_33.sce
new file mode 100644
index 000000000..bab8fb03f
--- /dev/null
+++ b/1418/CH26/EX26.33/EX26_33.sce
@@ -0,0 +1,22 @@
+//EXAMPLE 26.33
+//4-POLE DC SHUNT GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+P=4;........//Total number of poles
+Al=P;.......//Number of parallel paths in Lap wound generator
+Aw=2;.......//Number of parallel paths in Wave wound generator
+N=600;.......//Speed of the generator in rpm
+E=216;.........//Generated EMF in Volts
+S=144;........//Total number of slots
+C=6;............//Total number of conductors per slot
+N1=500;............//Speed of the generator when it is rewound in rpm
+Z=S*C;............//Total number of conductors
+
+Phi=(E*60*Al)*1000/(P*N*Z);......//Flux per pole in Mili Webers
+disp(Phi,"Flux per pole in Mili Webers:");
+
+E1=(Phi*P*N1*Z)/(60*Aw*1000);........//Generated EMF if the generator is wave wound in Volts
+disp(E1,"Generated EMF if the generator is wave wound in Volts:");