blob: 96f70c2975b418a632cc38cefd60558c9fd6a8eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Electric Drives:concepts and applications by V.subrahmanyam
//Publisher:Tata McGraw-Hill
//Edition:Second
//Ex5_2
clc;
clear;
T=100;//Temperature rise of motor in degree
t1=2;//Time in hour
t2=1.5;//Time in hour
Alpha=0.5;//Angle in rad
e=exp(-t1/t2);
thetam=100/(1-e);
t=thetam/T;
x=sqrt((t*(Alpha+1))-Alpha);
disp(x,"The permissible overloading is:")
|