blob: 645b6e11b476fa78d60b68632c86a0b8724ab908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
\documentclass[a11paper, 11pt]{article}
% xelatex
\usepackage{titlepage}
\usepackage{booktabs}
\usepackage{subcaption}
\usepackage[american]{circuitikz}
% \usepackage{showframe}
\usepackage{float}
\usepackage{multicol}
\usepackage{siunitx}
\usepackage{amsmath}
\usepackage[dvipsnames]{xcolor}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage[french]{babel}
\usepackage{hyperref}
\usepackage[french]{cleveref}
\newcommand{\note}[1]{\begin{color}{Orange}\textbf{NOTE:} #1\end{color}}
\newcommand{\fixme}[1]{\begin{color}{Fuchsia}\textbf{FIXME:} #1\end{color}}
\newcommand{\question}[1]{\begin{color}{ForestGreen}\textbf{QUESTION:} #1\end{color}}
% \d{x} command for integral delimiters
\renewcommand{\d}[1]{\mathrm{d}#1}
\newcommand{\dt}{\mathrm{d}t}
\newcommand{\ddt}[1]{\frac{d^{#1}}{dt^{#1}}}
\newcommand{\vlt}{V_L(t)}
\newcommand{\vlz}{V_L(0)}
\newcommand{\e}{\mathrm{e}}
\newcommand{\al}{\alpha}
\newcommand{\la}{\lambda}
\newcommand{\wz}{\omega_{0}}
\newcommand{\ws}{\omega_{0}^2}
\newcommand{\wn}{\omega_{\mathrm{n}}}
\DeclareSIPrefix{\micro}{%
\text{%
\fontencoding{TS1}\fontfamily{kurier}\selectfont
\symbol{"B5}%
}%
}{-6}
% \addbibresource{bibliography.bib}
% \institution{Université de Sherbrooke}
% \faculty{Faculté de génie}
% \department{Département de génie électrique et de génie informatique}
\title{Annexe de résolution à la problématique}
\class{Circuits et systèmes du deuxième ordre}
\classnb{GEN111,GEN136,GEN122}
\author{
\addtolength{\tabcolsep}{-0.4em}
\begin{tabular}{rcl} % Ajouter des auteurs au besoin
Benjamin Chausse & -- & CHAB1704 \\
Sarah Gosselin & -- & GOSS3005 \\
\end{tabular}
}
\teacher{Jean-Philippe Gouin}
% \location{Sherbrooke}
% \date{\today}
\begin{document}
\maketitle
\newpage
\begin{appendix}
\section{Circuit RLC}
\subsection{Charge}
On pose l'équation de l'état du circuit au temp $t(0)$ et on substitue pour
avoir en fonction de $\vlt$.
Puisque que circuit simplifié est constituer d'une seule boucle,
$I_C = I_R = I_V = I$
\begin{gather}
V_S &= V_C(t) + V_R(t) + V_L(t) \\
V_S &= \frac{1}{C}\int I(t) \dt + RI(t) + V_L \\
V_S &= \frac{1}{CL}\int\int \vlt \dt\dt + \frac{R}{L}\int\vlt\dt + V_L \\
\end{gather}
\subsection{Décharge}
\begin{align}
0 & = \vlt + V_C(t) + V_R(t) \\
0 & = \vlt+\frac{1}{C}\int I_(t)\dt + R_I(t) \\
0 & = \ddt{2}\left[ \vlt + \frac{1}{LC}\int\int\vlt\dt^2 + \frac{R}{L}\ddt{} \vlt \right] \\
0 & = \ddt{2}\vlt+ \frac{R}{L}\ddt{}\vlt +\frac{1}{LC}\vlt \\
0 & = \ddt{2}+2\al\la A\e
\end{align}
\end{appendix}
\end{document}
|