summaryrefslogtreecommitdiff
path: root/1748/CH2/EX2.9.p/problem2_9.sce
blob: 27143b69821c49f7d4476cf729f06067044511f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//problem 2.9
clc;
clear;
close;
//given data :
format('v',5);
P=6;//No. of poles
m=3;//No. of phase
f=50;//in Hz
Xo_int=1;//in ohm/phase
Rrotor_int=0.1;//in ohm/phase
//S=1 for starting
S=1;//unitless
disp("Max. Torque condition : R2=X2");
//Rext+Rrotor_int=Xo_int
Rext=Xo_int-Rrotor_int;//in ohm/phase
disp(Rext,"External resistance to be added(ohm/phase) : ");