summaryrefslogtreecommitdiff
path: root/3760/CH6/EX6.17/Ex6_17.sce
blob: 51e26e64659750e032e08d008c9049dbb3e64789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clc;
//r2/x2=a
a=.5;
Test=25;

//for part a
disp('For part a ');
//b=3(V1)2/r2Ws
//As per given conditions 
b=Test*5;
//When rotor resistace is doubled
Test1=b*(1/4);
mprintf('The starting torque is %f Nm\n',Test1);
//for part b
disp('For part b');
//resisance is half
Test2=b*(2/17);


mprintf('The starting torque is %f Nm',Test2);