summaryrefslogtreecommitdiff
path: root/3813/CH4/EX4.15/Ex4_15.sce
blob: d5683557114bb977c72362a0d6d9f876ba3e7b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Electric Drives:concepts and applications by V.subrahmanyam
//Publisher:Tata McGraw-Hill 
//Edition:Second 
//Ex4_15
clc;
clear;
P=1000;
N=1500;//Speed in rpm
R2=0.06;// Resistance in ohm
I2=125.6;//Current in A
T=1.5;//Time in sec
N1=1420;//Speed in rpm
S=(R2*P)/N;
K=((S/(2*%pi*N))*(I2)^2*T)/(N1)^2;
T1=K*(N1)^2;
N2=750;//Speed in rpm
S0=0.489;//No load slip
S2=1.12;//load slip
T2=K*(N2)^2;
X1=(T2*S)/T1;
A=acos(-S0/S2);
Alpha=(A*180)/%pi;
disp(Alpha,"The firing angle in deg is:")