summaryrefslogtreecommitdiff
path: root/2123/CH5/EX5.18/Exa_5_18.sce
blob: 00d28591c0798a2478c489499301d02bdbe6e955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Example No. 5.18
clc;
clear;
close;
format('v',6);

//Given Data : 
V=400;//V
f=50;//Hz
I=50;//A
Ra=0.1;//ohm
K=0.3;//V/rpm
Ia=5;//A
alfa=30;//degree
Vavg=3*sqrt(3)*V*sqrt(2)/sqrt(3)/2/%pi*(1+cosd(alfa));//V
Eb=Vavg-Ia*Ra;//V
N=Eb/K;//rpm
disp(N,"No load speed in rpm : ");
Speed=1600;//rpm
Eb=Speed*K;//V
Vin=Eb+I*Ra;//V
alfa=acosd(Vin/3/sqrt(3)/V/sqrt(2)*sqrt(3)*2*%pi-1);//degree
disp(alfa,"Fringe angle in degree : ");