blob: a00a6027de2f7c346b790bc80cba97b1032af22b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//7.9
clc;
Vm=230*2^0.5;
Vf=2*Vm/%pi;
Rf=200;
If=Vf/Rf;
T=50;
Kt=0.8;
Ia=T/(Kt*If);
w=2*%pi*900/60;
Vb=Kt*w*If;
Ra=0.3;
Va=Vb+Ia*Ra;
alph_a=acosd(Va*%pi/Vm-1)
printf("Firing angle of converter in the armature circuit=%.3f degree",alph_a)
Po_a=Va*Ia;
Iin=Ia*((%pi-alph_a*%pi/180)/%pi)^0.5;
VA_input=Iin*230;
pf=Po_a/VA_input;
printf("\npower factor of converter in the armature circuit=%.3f lagging",pf)
|