-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath_test_slides.do.txt
More file actions
161 lines (140 loc) · 2.74 KB
/
math_test_slides.do.txt
File metadata and controls
161 lines (140 loc) · 2.74 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
TITLE: Math Test for Use with Slides
AUTHOR: Mirco Meiners at Hochschule Bremen - City University of Applied Sciences
DATE: today
!split
======= Network Analysis =======
!bblock
This presentation is a test vehicle for MathJax test to be used in different types of slides.
As electrical engineer one needs to do network analysis very often. Such analysis are represented
by ordenary differential equations or state-space models.
!eblock
!split
===== Network Analysis of Periodic Signals =====
Node 0:
!bt
\begin{align*}
-i_0 - i_1 - i_5 &= 0 \\
-G_1(v_3-v_0) - C_5 {\frac{d }{d t}}(v_1-v_0) &= i_0
\end{align*}
!et
Node 1:
!bt
\begin{align*}
-i_2 + i_3 + i_5 + i_6 &= 0 \\
-G_2(v_3-v_1) + G_3(v_1-v_3) + C_5 {\frac{d }{d t}}(v_1-v_0) + C_6 {\frac{d }{d t}}(v_1-v_6) &= 0
\end{align*}
!et
!split
===== ODE System =====
!bt
\begin{align*}
\begin{pmatrix}
G_2 + G_3 & -G_3 & -G_2 & 0 \\
-G_3 & G_3 + G_4 & 0 & -G_4 \\
-G_2 & 0 & G_1 + G_2 & 0 \\
0 & -G_4 & 0 & G_4
\end{pmatrix}
\begin{pmatrix}
v_1 \\
v_2 \\
v_3 \\
v_4
\end{pmatrix}
&+ \cdots \\
\begin{pmatrix}
C_5 + C_6 & -C_6 & 0 & 0 \\
-C_6 & C_6 & 0 & 0 \\
0 & 0 & 0 & 0 \\
0 & 0 & 0 & 0
\end{pmatrix}
\frac{d}{dt}
\begin{pmatrix}
v_1 \\
v_2 \\
v_3 \\
v_4
\end{pmatrix} &=
\begin{pmatrix}
0 \\
0 \\
0 \\
-i_0
\end{pmatrix}
\end{align*}
!et
!split
===== Compact Description =====
!bt
\begin{align*}
\mathbf{A} \mathbf{x} + \mathbf{B} \dot{\mathbf{x}} &= \mathbf{b} \\
\dot{\mathbf{x}} &= -\mathbf{B}^{-1}\mathbf{A}\mathbf{x} + \mathbf{B}^{-1}\mathbf{b}(t) \\
&= \mathbf{T}\mathbf{x} + \mathbf{g}(t)
\end{align*}
!et
!split
===== Kirchhoff's Voltage Law =====
Choice of independent currents $I_M$: $I_1, I_4, I_7, I_8$
State-space analysis in laplace domain:
!bt
\begin{align*}
\begin{pmatrix}
I_2 \\
I_3 \\
I_5 \\
I_6 \\
I_9 \\
I_{10}
\end{pmatrix}
&=
\begin{pmatrix}
-1 & -1 & -1 & 0 \\
-1 & 0 & -1 & 0 \\
0 & -1 & -1 & 0 \\
0 & -1 & -1 & 0 \\
0 & 1 & 1 & -1 \\
0 & 0 & 1 & -1 \\
\end{pmatrix}
\begin{pmatrix}
I_1 \\
I_4 \\
I_7 \\
I_8
\end{pmatrix}
\end{align*}
!et
!split
===== Loop Equation =====
!bt
\begin{align*}
I_1 Z_1 - I_2 Z_2 - I_3 Z_3 &= 0 \\
U_4 + I_4 Z_4 + I_9 + Z_9 - I_6 Z_6 - I_5 Z_5 - I_2 Z_2 &= 0 \\
I_7 Z_7 + I_{10} Z_{10} + I_9 Z_9 - I_6 Z_6 - I_5 Z_5 - I_2 Z_2 -I_3 Z_3 &= 0 \\
U_8 + I_8 Z_8 - I_9 Z_9 - I_{10} Z_{10} &= 0
\end{align*}
!et
!split
===== Sorting and Preperation for Linear Equation System =====
!bt
\begin{align*}
\begin{pmatrix}
\sum Z_{1,3} & Z_2 & \sum Z_{2,3} & 0 \\
Z_2 & \sum Z_{2,4,5,6,9} & \sum Z_{2,5,6,9,10} & -Z_9 \\
\sum Z_{2,3} & \sum Z_{2,5,6,9,10} & \sum Z_{2,3,5,6,7,9,10} &
\sum -Z_{9,10} \\
0 & -Z_9 & \sum -Z_{9,10} & \sum Z_{8,9,10}
\end{pmatrix}
\begin{pmatrix}
I_1 \\
I_4 \\
I_7 \\
I_8
\end{pmatrix}
&=
\begin{pmatrix}
0 \\
-U_4 \\
0 \\
-U_8
\end{pmatrix}
\end{align*}
!et