0% found this document useful (0 votes)
16 views

Unit 2 - Matlab RC y RL

1. The document compares RC and RL circuits, their components, behaviors, applications, and differences. 2. RC circuits store energy in a capacitor's electric field while RL circuits store energy in an inductor's magnetic field. They also have different transient responses and time constants due to their components. 3. RC and RL circuits are useful for different applications like filtering and timing due to how their properties affect reactance and frequency response. The conclusion summarizes reasons for choosing each type of circuit.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

Unit 2 - Matlab RC y RL

1. The document compares RC and RL circuits, their components, behaviors, applications, and differences. 2. RC circuits store energy in a capacitor's electric field while RL circuits store energy in an inductor's magnetic field. They also have different transient responses and time constants due to their components. 3. RC and RL circuits are useful for different applications like filtering and timing due to how their properties affect reactance and frequency response. The conclusion summarizes reasons for choosing each type of circuit.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Universidad Politécnica de Yucatán

Student Alfredo Israel Puerto Ic


2009108

Robotics 7C

20/02/2024

Teacher Andres Augusto Marrufo Albornoz


RC Circuits: %RC

1. Components: %Voltage Source


Vs=5;
- Resistance (R): Offers opposition to the flow
%define the capacitor value
of current. C=0.1e-6;

- Capacitor (C): Stores electrical charge. %define the resistor value


R=100;
2. Behavior: %definimos el tiempo
Tau=R*C;
- The capacitor charges and discharges
Tincrement=Tau/10;
through the resistance.
Tf= (5*Tau);
- The charging and discharging time is
t=0:Tincrement:Tf;
determined by the RC time constant (tau), which
Vcap = Vs*(1-exp(-t/Tau));
is the product of resistance and capacitance (τ =
Icap = (Vs/R)*(exp(-t/Tau));
R * C).
%Creamos una figura
- As the capacitor charges, the current figure;
%corriente en el lado izquierdo
decreases exponentially until reaching a steady yyaxis left;
plot(t,Icap, 'm--');
state. ylabel('current');
title('Voltage and current in
3. Applications: Capacitor');
hold on;
- Low-pass and high-pass filters. yyaxis right;
plot(t,Vcap,'c--');
- Timers and oscillators. ylabel('Voltage');
xlabel('Time(s)');
hold on
- Signal couplings.
legend('Current','Voltage');

- Delay circuits. %rojo es r, negro es k,


amarillo es y, verde es g
RL Circuits: %azul es b, magenta es m, cyan
es c

1. Components:

- Resistance (R): Offers opposition to the flow of current.

- Inductor (L): Stores energy in the form of a magnetic field.

2. Behavior:
- When a voltage is applied to an RL circuit, the current increases gradually instead of
instantly reaching its maximum value due to inductance.

- The RL time constant (tau) is calculated as the ratio of inductance to resistance (τ = L


/ R).

%Circuito RL - Upon disconnecting a voltage


Vs=5; source, the inductor becomes a
R=100;
L=0.5; temporary voltage source,
%Aqui definimos los valores para el voltaje generating an overvoltage.
%resistencia y valor de la capacitancia
%que usaremos en nuestra ecuación
3. Applications:
Tau= L/R; %Nuestra Tau es definida como el
valor de - Low-pass filters.
%la capacitancia entre la resistencia

Tincrement=Tau/10; - Surge protection circuits.

Tf= (5*Tau); - Coupling and decoupling


t=0:Tincrement:Tf; circuits.
%Las funciones antes mencionadas son para
poder
- Switched-mode power supplies.
%crear nuestra tabla

Similarities:
Il = (Vs/R)*(1-exp(-t/Tau)); %Corriente del
capacitor - Both circuits exhibit transient
Vl = Vs*exp(-t/Tau); %Voltaje del capacitor behavior when a power source is
figure; applied or removed.
yyaxis left;
plot(t,Il, 'g--'); - Both can be used in filters and
ylabel('current');
title('Voltage and current in Inductor'); timing applications.
hold on;
%El codigo escrito arriba y abajo está para
poder Differences:
%sobreponer nuestras tablas.
yyaxis right; - RC circuits involve energy storage
plot(t,Vl,'k--');
ylabel('Voltage'); in an electric field (the capacitor),
xlabel('Time(s)');
hold on
while RL circuits involve energy
legend('Current','Voltage'); storage in a magnetic field (the
inductor).
- Time constants and transient effects differ in each type of circuit due to the electrical
and magnetic properties of their respective components.

In summary, RC and RL circuits are fundamental components in electronics with diverse


applications and behaviors that make them useful in a variety of situations.

Conclusion

In conclusion, the choice between RL (Resistance-Inductance) and RC (Resistance-


Capacitance) circuits depends on the specific requirements of the application,
considering factors such as transient response, frequency response, energy storage,
and circuit behavior. Here's a summary of why one might use RL and RC circuits, along
with relevant formulas:

Reasons for Using RL Circuits:

1. Energy Storage: RL circuits store energy in the form of a magnetic field within the
inductor.

2. Transient Response: RL circuits exhibit gradual changes in current, making them


suitable for applications requiring controlled current flow.

3. Inductive Reactance Dominance: RL circuits are primarily influenced by inductive


reactance (\( X_L = 2 \pi fL \)), making them effective for filtering and applications
sensitive to changes in frequency.

4. Voltage Spike Generation: Upon circuit interruption, RL circuits produce voltage


spikes due to the inductor's property of opposing changes in current flow.

Reasons for Using RC Circuits:

1. Energy Storage: RC circuits store energy in the form of an electric field within the
capacitor.

2. Transient Response: RC circuits exhibit exponential changes in voltage and current


during charging and discharging phases, making them suitable for timing and signal
processing applications.
3. Capacitive Reactance Dominance: RC circuits are mainly influenced by capacitive
reactance (\( X_C = \frac{1}{2 \pi fC} \)), making them effective for filtering and
applications sensitive to changes in frequency.

4. Smooth Discharge: Unlike RL circuits, RC circuits do not produce voltage spikes upon
circuit interruption; instead, they discharge gradually through the resistor.

In practical applications, these formulas help in designing circuits with desired


characteristics such as filtering, timing, or energy storage. RL and RC circuits offer
distinct advantages based on their energy storage mechanisms, transient responses,
and frequency-dependent behaviors, allowing engineers to choose the most suitable
option for a given application.

You might also like