summaryrefslogtreecommitdiff
path: root/2231/CH2/EX2.10/Ex_2_10.sce
blob: e1074e23e4b3463bf5264494c538a05f11a7fb83 (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 2_10
clc;
clear;close;

//Given data: 
Vs=230;//V
f=50;//Hz
Vdc=100;//V
Ip=15;//A
alfa=30;//degree

//Solution :
//Vdc=2*Vm*cosd(alfa)/%pi-2*1.7//(Full converter bridge)
Vm=(Vdc+2*1.7)/2/cosd(alfa)*%pi;//V
Vrms=Vm/sqrt(2);//V
TurnRatio=Vs/Vrms;
disp(TurnRatio,"(a) Turn ratio of transformer");
Irms=sqrt(Ip^2/2);//A
Rating=Vrms*Ip;//VA
disp(Rating,"(b) Transformer rating in VA");
PIV=Vm;//V
disp(PIV,"(c) PIV in V");
disp(Irms,"(d) RMS value of thyristor current in A");