blob: 61090457db5b59377a26728dba785e1b2683d934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//EXAMPLE 26.34
//4-POLE LAP WOUND DC MACHINE
clc;
funcprot(0);
//Variable Initialisation
Ra=0.15;...........//Armature resistance in Ohms
P=4;..............//Number of poles
Al=P;...............//Number of parallel paths if generator is lap wound
Ral=Al*Ra;............//Armature resistance if generator is wave wound
disp(Ral,"Armature resistance if generator is wave wound in Ohms:");
|