Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- \documentclass[a3paper]{article}
- \usepackage{amsmath}
- \usepackage{amssymb}
- \usepackage{tcolorbox}
- \usepackage{multicol}
- \usepackage{lipsum}
- \usepackage[landscape, margin=0.3in]{geometry}
- \usepackage{xcolor}
- \definecolor{titles}{HTML}{d0dbeb}
- \definecolor{myNavy}{RGB}{26,51,89}
- \definecolor{toptitles}{HTML}{6a7390}
- \tcbset{
- mybox/.style={
- colback=titles,
- colframe=titles,
- boxrule=0pt,
- height=2cm,
- arc=10pt,
- left=8pt, right=8pt, top=6pt, bottom=20pt,
- halign=center,
- }
- }
- \tcbset{
- headerbox/.style={
- colback=toptitles,
- colframe=toptitles,
- boxrule=0pt,
- arc=10pt,
- left=8pt, right=8pt, top=6pt, bottom=6pt,
- halign=center,
- }
- }
- \begin{document}
- \begin{minipage}{0.75\linewidth}
- % Full width Heading 1 box
- \begin{tcolorbox}[headerbox]
- \bfseries\color{white} Transient Response cheat-sheet for First-Order RC and RL circuits
- \end{tcolorbox}
- \begin{multicols}{3}
- % RL Time Constant Box
- \begin{tcolorbox}[mybox]
- \bfseries TIME CONSTANT FOR RL-CIRCUIT\\[0.5em]
- {\setlength{\abovedisplayskip}{-4pt}%
- \setlength{\belowdisplayskip}{0pt}%
- \[
- \tau = \dfrac{L}{R}
- \]
- }
- \end{tcolorbox}
- % RL Step Response Box
- \begin{tcolorbox}[
- colback=white!1,
- colframe=titles,
- boxrule=0.5pt,
- title=\textbf{\color{myNavy}\textit{RL}--Circuit}
- ]
- \[
- i(t) = I_f + (I_0 - I_f)e^{-t/\tau}.
- \]
- \textbf{Step 1:} Determine the initial current, \( V_0 \), in the inductor. This usually involves analyzing the circuit for \( t < 0 \).
- \textbf{Step 2:} Calculate the time constant, \( \tau \). To do this, you need to find the equivalent resistance attached to the inductor for \( t \ge 0 \) after zeroing any independent sources.
- \textbf{Step 3:} Calculate the final value of the inductor current I$_f$, by analyzing the circuit as \( t \to \infty \).
- \textbf{Step 4:} Write the equation for the inductor
- current for \( t \ge 0 \) by substituting the values for
- the initial current and the time constant into the
- equation above. If there are no sources when \( t \ge 0 \), then I$_f$ = 0.
- \end{tcolorbox}
- \columnbreak
- % RC Time Constant Box
- \begin{tcolorbox}[mybox]
- \bfseries TIME CONSTANT FOR RC-CIRCUIT\\[0.5em]
- {\setlength{\abovedisplayskip}{-2pt}%
- \setlength{\belowdisplayskip}{0pt}%
- \[
- \tau = RC
- \]
- }
- \end{tcolorbox}
- % RC Step Response Box
- \begin{tcolorbox}[
- colback=white!1,
- colframe=titles,
- boxrule=0.5pt,
- title=\textbf{\color{myNavy}\textit{RC}--Circuit}
- ]
- \[
- v(t) = V_f + (V_0 - V_f) e^{-t/\tau}.
- \]
- \textbf{Step 1:} Determine the initial voltage, \( V_0 \), in the capacitor. This usually involves analyzing the circuit for \( t < 0 \).
- \textbf{Step 2:} Calculate the time constant, \( \tau \). To do this, you need to find the equivalent resistance attached to the capacitor for \( t \ge 0 \) after zeroing any independent sources.
- \textbf{Step 3:} Calculate the final value of the capacitor voltage V$_f$, by analyzing the circuit as \( t \to \infty \).
- \textbf{Step 4:} Write the equation for the capacitor
- voltage for \( t \ge 0 \) by substituting the values for
- the initial voltage and the time constant into the
- equation above. If there are no sources when \( t \ge 0 \), then V$_f$ = 0.
- \end{tcolorbox}
- \columnbreak
- % RL Step Response Box
- \begin{tcolorbox}[
- colback=white!1,
- colframe=titles,
- boxrule=0.5pt,
- title=\textbf{\color{myNavy}\textit{Key Reminders for First-Order RC/RL Circuits}}
- ]
- \begin{enumerate}
- \item \textbf{Continuity at $t=0$}
- \[
- i_L(0^+) = i_L(0^-), \qquad
- v_C(0^+) = v_C(0^-)
- \]
- \item \textbf{DC Steady-State Behavior}
- \[
- \text{Inductor } \rightarrow \text{ short circuit}
- \]
- \[
- \text{Capacitor } \rightarrow \text{ open circuit}
- \]
- \item \textbf{Finding the Time Constant $\tau$}
- \begin{itemize}
- \item Zero all independent sources:
- \[
- \text{Voltage source } \rightarrow \text{ short},
- \]
- \[
- \text{Current source } \rightarrow \text{ open}
- \]
- \item Find $R_{\text{eq}}$ seen by the inductor or capacitor in the $t \ge 0$ circuit, and input into formula for $\tau$.
- \end{itemize}
- \end{enumerate}
- \end{tcolorbox}
- \end{multicols}
- \end{minipage}
- \end{document}
Advertisement
Add Comment
Please, Sign In to add comment