SCR Trystor
SCR Trystor
SCR Trystor
Group Members:
A11MJ0069 AHMAD NUR FIRDAUS BIN
HASHIM
A11MJ0027 MOHD HARITH BIN MOHD AMIN
B12MJ0019 AHMAD ZHARIF BIN WAHID
B12MJ0021 WAN AFIQ HAFIZUDIN BIN WAN
KAMARUDIN MAPE
Abstract
Introduction
The Thyristor block is a semiconductor device that
can be turned on via a gate signal. The thyristor is
modeled as a resistor (Ron), inductor (Lon), and DC
voltage source (Vf), connected in series with a
switch. The switch is controlled by a logical signal
depending on the voltage Vak, the current Iak and
the gate signal (G).
Methodology
%Thyristor parameters
% v is the anode-cathode voltage.
% Vf is the forward voltage.
% G is the gate voltage.
% Vgt is the gate trigger voltage.
% i is the anode-cathode current.
% Ih is the holding current.
% Ron is the on-state resistance.
% Goff is the off-state conductance.
v= -50:0.5:100;
Vf = 0.8;
G = 2.5;
Vgt = 6;
Ih = 1;
Ron = 0.001;
Goff = 1e-5;
i= -50:0.5:100;
%Simscape equation
for k=1:length(v)
if (v(k) > Vf)&&((G>Vgt)||(i(k)>Ih))
i(k)= ((v(k) - Vf.*(1-Ron.*Goff)))./Ron;
else
i(k)= v(k).*Goff;
end
end
%plotting V-I characteristics curve
plot(v,i)
Result
From the obtained Simscape equation, we plot the
V-I characteristics curve of the silicon-controlled
rectifier (thyristor). Based on the equation, there
are regulation need to be met in order the
thyristor be switched to on or off state.
On-Off state
Conclusion
References
1.
Off state
2.
3.
4.
5.
6.
7.
8.
On state
http://www.mathworks.com/help/physm
od/sps/ref/thyristor.html
http://yeshsurya.blogspot.com/2012/04/
matlab-program-to-plot-vi.html
http://en.wikipedia.org/wiki/Thyristor
http://pe.gastli.info/pe_html/ch03s1/ch0
3s1p1.htm
http://www.tutorialspoint.com/matlab/m
atlab_plotting.htm
http://www.edaboard.com/thread80782.
html
http://dali.feld.cvut.cz/ucebna/matlab/to
olbox/powersys/thyristor.html
http://www.onsemi.com/pub_link/Collat
eral/HBD855-D.PDF