From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1418/CH26/EX26.33/EX26_33.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 1418/CH26/EX26.33/EX26_33.sce (limited to '1418/CH26/EX26.33/EX26_33.sce') 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:"); -- cgit