Series RLC Branch
Implement series RLC branch
Libraries:
Simscape /
Electrical /
Specialized Power Systems /
Passives
Description
The Series RLC Branch block implements a single resistor, inductor, or capacitor, or a series combination of these.
Examples
Obtain the frequency response of a fifth-harmonic filter (tuned frequency = 300
Hz) connected on a 60 Hz power system. This example is available in the
power_seriesbranch
model.
To open this example, at the MATLAB® Command Window, enter power_seriesbranch
.
The network impedance in the Laplace domain is
To obtain the frequency response of the impedance, get the state-space model (A B C D matrices) of the system.
This system is a one-input (Vsource) and one-output (Current Measurement block) system.
Note
If you have Control System Toolbox™ software installed, you can use the bode
function to get the transfer function Z(s) from the
state-space matrices:
[A,B,C,D] = power_analyze('power_seriesbranch'); freq = logspace(1,4,500); w = 2*pi*freq; [Ymag,Yphase] = bode(A,B,C,D,1,w); % invert Y(s) to get Z(s) Zmag = 1./Ymag; Zphase = -Yphase; subplot(2,1,1) loglog(freq,Zmag) grid title('5th harmonic filter') xlabel('Frequency, Hz') ylabel('Impedance Zmag') subplot(2,1,2) semilogx(freq,Zphase) xlabel('Frequency, Hz') ylabel('phase Z') grid
You can also use the Impedance Measurement block and the Powergui block to plot the impedance as a function of frequency. In order to measure the impedance you must disconnect the voltage source.
Ports
Conserving
Parameters
Extended Capabilities
Version History
Introduced before R2006a
See Also
Multimeter | Parallel RLC Branch | Parallel RLC Load | Series RLC Load