blob: 3dba3c7545c4df91b6508abb3db10276fd79faa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
clc;
N=1455;
Ns=1500; //General case considered in the problem
s1=(Ns-N)/Ns;
//for V1=0.9V
//V1/V=a
a=0.9;
//T=(3VVs)/(Wsr2)
//As torque is constant
s2=(s1)/(a*a);
Nr=Ns*(1-s2);
//I=s1V/r2
//I22/I21=b
b=(s2*a)/s1;
//Losses Ratio=c
R=b*b;
d=((N-Nr)/N)*100;
e=((R-1)/1)*100;
mprintf('Percentage reduction in speed is %f percent\n',d);
mprintf('Percentage reduction in ohmic losses is %f percent\n',e);
|