blob: f1fabc3275af5b12b8d0b2e377fde2dafbff66c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//problem 2.11
clc;
clear;
close;
//given data :
N=290;//in rpm
f=50;//in Hz
disp("Motor running at full load, no. of poles should be 20");
P=20;//no. of poles
Ns=120*f/P;//in rpm
Slip=(Ns-N)/Ns*100;//in %
disp("T is proportional to S/R2 but T is same");
Slip=2*Slip;//doubling R2 also doubles the slip
disp(Slip,"New value of slip is : ");
|