You are on page 1of 5

Expt.

No: Performance Parameter of Controlled Rectifiers


Date:
Aim:
To Calculate the various performance parameters of Half wave controlled and full wave controlled
rectifier using Matlab software.

Apparatus Required:
1. PC with Pentium processor
2. MATLAB software

Theory:
The input voltage to rectifier is usually sinusoidal. It is desired that the output voltage from a
rectifier should be constant with no ripples in it. This, however, is not the case. This shows that the rectifier
output voltage is made up of constant dc voltage pulse harmonic components. The waveforms of input and
output currents depends on the nature of load and the rectifier configuration. In order to evaluate the
overall performance of rectifier-load combinations. Certain performance parameters
In general, the instantaneous input current to a converter can be expressed in Fourier series as

i(t)=a0 + ∑ (an cosn ωt +bn sin nω t)
n=1,2,3,4

where

a0 = 1/2∫ i ( t ) d (ω t)
0

an = 1/∫ i ( t ) cosn ω t d (ω t)
0

bn = 1/∫ i ( t ) sin n ω t d (ω t )
0

Input Power Factor:


The input power factor (PF) is defined as the ratio of Mean input power to the total rms input
voltamperes given to the converter system.
P.F. = Real Power/A1pparent Power = Vs.Is1 cos(phi)
P.F. = Is1/Is cos(phi)
Where
Is1 = rms value of fundamental component of supply current Is

Displacement Power Factor:


It is defined as the cosine of the input displacement angle.
Phi = Phase angle between supply voltage Vs and fundamental component Is1 of supply current Is
Distortion Factor:
Distortion factor is defined as the ratio of the rms value of fundamental component-Is 1 of the
input current to the rms value of input current Is.
DF = Is1/Is

Active Power Input:


P = rms value of source voltage*fundamental component of supply current*displacement factor

P = 2Vm/ Idc cos(phi).

Reactive Power Input:


Qi = rms value of source voltage*fundamental component of supply current*displacement factor.

Qi = 2Vm/ Idc sin.

Apparent Power:
It is given by source voltage* source current.
S = Vs * Is

Procedure:
1. Open MATLAB software.
2. File – New Model.
3. Type the program, Made the assumption like firing angle, source voltage etc
4. Simulate the program.
5. Note the readings for various parameters.

62
Program of half wave rectifier:

Close all, clear all, clc


tpi = 2*pi;
Vak = 1.7;
Vs = 120;
Vm = Vs*sqrt(2);
R = 10;
a = 30;
a = a*pi/180;
th = linspace (a,pi,1024);
Ith = Vm/R*sin(th);
Is = sqrt(1/tpi*trapz(th,Ith.^2);
a1 = 2/tpi*trapz(th,Ith.*cos(th));
b1 = 2/tpi*trapz(th,Ith.*sin(th));
Is1 = sqrt((a)^2+b1^2/2);
S = Vs*Is
P = Vm*a1/2
Q = -Vm*a1/2
D = Vs*sqrt(Is^2-Is1^2)
Pf = P/S
Ph1 = atan(a1/b1)
DPF = cos(ph1)
DF = Is1/Is
Pscr = Vak*Vm/(2*pi*R)*(1+cos(a))
Eta = P/(P+Pscr)

63
Program of full wave rectifier:

Close all, clear all, clc


Vs = 6.3;
Vf = 0.7;
Y = Vf/Vm;
f = 60;
T = pi;
W = 2*pi*f;
R = 2;
L = 0.05;
q = w*L/R;
phi = atan(q);
th = linspace(0,pi,1000);
Ith = Vm/R*(sin(2*phi)/(1-exp(pi/q))*exp(-th/q)+cos(phi)*sin(th-phi));
Is = sqrt(1/T*trapz(th,Ith.^2));
a1 = 2/tpi*trapz(th,Ith.*cos(th));
b1 = 2/tpi*trapz(th,Ith.*sin(th));
Is1 = sqrt((a)^2+b1^2/2);
S = Vs*Is
P = Vm*a1/2
Pdio = Vm*Vf/(pi*R)
Q = -Vm*a1/2
D = Vs*sqrt(Is^2-Is1^2)
Pf = P/S
Ph1 = atan(a1/b1)
DPF = cos(ph1)
DF = Is1/Is
Eta = 1/(1+8/pi*y/(1-2*y))

64
Result:
Thus the various performance parameter for 1 Half wave controlled rectifier using MATLAB software
are done and output is verified.

65

You might also like