Newer
Older
\documentclass[../mainDocument.tex]{subfiles}
\subsection{Systemarchitektur}
Abbildung \ref{fig:hardware-sys} zeigt welche Systemkomponenten in welcher Umgebung laufen und welche Kommunikationswege es zwischen den einzelnen Komponenten gibt. Zur Verf\"ugung steht uns ein Fahrzeug, welches ausger\"ustet ist mit einer Kamera, einem Ultraschallsensor, ein Motor, vier R\"ader, ein STM-Board und ein Odroid-Board.\\
Auf dem STM-Board laufen die Treiber f\"ur die direkte Steuerung des Motors und der R\"ader. Die gesamte Software des STM-Boards von Assystem geliefert und unser Team muss sich lediglich darum k\"ummern die entsprechenden Befehle vom Odroid-Board an das STM-Board zu schicken.\\
Auf dem Odroid-Board laufen die Module zum berechnen des Fahrverhaltens, sowie der Kommunikation mit anderen Fahrzeugen. Die Kamera und der Ultraschallsensor sind mit dem Odroid verbunden. Das Lanekeeping-Modul berechnet die Radstellung. Der Platoon-Controller k\"ummert sich um die Car2Car-Kommunikation. Das Cruise-Control-Modul berechnet die Geschwindigkeit. Die Environment bearbeitet die Kamera- und Sensordaten. Das Egomotion-Modell speichert alle berechneten Daten. Das Logging-Modul speichert alle aktuellen Daten. Weiterhin gibt es zwei Netzwerkschnittstellen, eins zur Kommunikation mit dem STM-Board und ein weiteres zur WLAN-Kommunikation.
\includegraphics[scale=0.5]{SystemArchitektur}
\caption{Systemarchitektur}
\label{fig:hardware-sys}
\end{landscape}
\subsection{ODROID}
\begin{landscape}
\includegraphics[scale=0.45]{Odroid}
\label{fig:ODROID-sys}
\end{landscape}
\subsection{Object Oriented Analysis}
\begin{figure}[h]
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
\begin{tikzpicture}
\begin{umlpackage}{Car}
\begin{umlpackage}{ODROID}
%classes
\umlclass[scale = 0.5]
{MAV-Link}
{
- $v_{new}$ : Integer\\
- $\alpha_{new}$ : Integer\\
- $v_O$ : Interger\\
- $\alpha_O$ : Integer\\
- RC-State : Integer
}
{
+ set($v_{new}$, $\alpha_{new}$)\\
+ RequestNewState(RC-State)\\
+ updateOwn() : (Integer, Integer)
}
\umlclass[scale = 0.5, xshift = -8cm]
{Lane-Keeping}
{
- Image/Path : ?\\
- $\alpha_{new}$ : Integer
}
{
+ Lanekeeping() : ?
}
\umlclass[scale = 0.5, xshift = 8cm, yshift = -4cm]
{Cruise-Control}
{
- $d_O$ : Integer\\
- $v_P$ : Integer\\
- $IPD$ : Integer\\
- $PS$ : Integer\\
- PlatoonState : Integer\\
- $v_s$ : Integer\\
- $d_s$ : Integer\\
+ $v_{new}$ Integer
}
{
- CACC($d_O, v_P, IPD, PS$) : Integer\\
- ACC($d_O, v_P, v_s, d_s$) : Integer\\
- calcNewOptimalDistance($v_s$) : Integer\\
+ setNewSpeed($v_{new}$)
} (CruiseControl)
\umlclass[scale = 0.5, xshift = -5.5cm, yshift = -9cm]
{Egomotion}
{
- $d_O$ : Integer\\
- $v_O$ : Integer\\
- $v_R$ : Integer\\
- $v_P$ : Integer\\
- $\alpha_O$ : Integer\\
- Path : ?\\
+ $\alpha_{new}$ : Integer\\
+ $v_{new}$ : Integer\\
}
{
- calc\_$v_P$($v_R$) : Integer\\
%- getEnvironment() : (Integer, Integer)\\
%- getMavLink() : (Integer, Integer)\\
%- getCurseControl : Integer
} (EgoMotion)
\umlclass[scale = 0.5, xshift = 6.7cm, yshift = -14cm]
{PlatoonController}
{
- $IPD$ : Integer\\
- $PS$ : Integer\\
- PlatoonState : ENUM\\
- $v_s$ : Integer\\
- $CarID$ : Integer\\
- PlatoonMemberList : ?\\
- PlatoonPos : Integer\\
- PlatoonPrevID : ?\\
+ WantsPlatoon : Boolean
}
{
- evaluate\_PlatoonState(PlatoonState : Integer) : ?\\
- determine\_LV\_IPD-PS() : (Integer, Integer)\\
- handle\_PBM() : ?\\
- handle\_PCM() : ?\\
- handle\_PHM() : ?\\
- send\_PBM() : ?\\
- send\_PCM() : ?\\
- send\_PHM() : ?
}
\umlclass[scale = 0.5, xshift = -9cm, yshift = -20cm]
{Environment}
{
- USS-Data : Integer\\
+ $d_O$ : Integer\\
+ $v_R$ : Integer\\
+ PlatoonPrevID : ?
}
{
- calc\_$v_R$
}
\umlclass[scale = 0.5, xshift = -4cm, yshift = -23cm]
{Logging}
{
+ $d_O$ : Integer\\
+ $v_O$ : Integer\\
+ $\alpha_O$ : Integer\\
+ $v_R$ : Integer\\
+ $v_P$ : Integer\\
+ Path : ?\\
+ $\alpha_{new}$ : Integer\\
+ $v_{new}$ : Integer\\
+ WantsPlatoon : Boolean\\
+ UpdateReady : Boolean\\
+ $IPD$ : Integer\\
+ $PS$ : Integer\\
+ PlatoonState : ENUM\\
+ $v_s$ : Integer\\
+ $CarID$ : Integer\\
+ PlatoonMemberList : ?\\
+ PlatoonPos : Integer\\
+ PlatoonPrevID : Integer
}
{
- cacheDate() : ?\\
+ sendToPC(ALL)
}
\umlclass[scale = 0.5, xshift = -11.5cm, yshift = -25cm]
{Camera}
{}
{}
\umlclass[scale = 0.5, xshift = -11.2cm, yshift = -28cm]
{Ultrasonic}
{}
{}
\umlclass[scale = 0.5, xshift = 9.5cm, yshift = -25cm]
{Network}
{
+ $IPD$ : Integer\\
+ $PS$ : Integer
}
{
+ send\_PBM()\\
+ send\_PCM()\\
+ send\_PHM()\\
+ send\_PLM()\\
+ handle\_PBM()\\
+ handle\_PCM()\\
+ handle\_PHM()\\
+ handle\_PLM()\\
+ Car2PC-MSGs.
}
%arrows
\umlinherit [geometry=-|, anchors = 0 and 250] {Camera}{Environment}
\umlinherit [geometry=|-, anchors = 90 and 180] {Camera}{Lane-Keeping}
\umlinherit [geometry=|-, anchors = 90 and 25] {Cruise-Control}{MAV-Link}
\umlinherit [geometry=|-, anchors = 217 and 50] {Cruise-Control}{Egomotion}
\umlinherit [geometry=|-, anchors = 50 and 217] {Egomotion}{Cruise-Control}
\umlinherit [geometry=|-, anchors = -35 and 152] {Egomotion}{PlatoonController}
\umlinherit [geometry=-|, anchors = 115 and 300] {Egomotion}{Lane-Keeping}
\umlinherit [geometry=-|] {Egomotion}{Logging}
\umlinherit [geometry=|-|, anchors = 90 and 245] {Environment}{Egomotion}
\umlinherit [geometry=--] {Lane-Keeping}{MAV-Link}
\umlinherit [geometry=-|, anchors = 300 and 115] {Lane-Keeping}{Egomotion}
\umlinherit [geometry=|- , anchors = -55 and 222] {Logging}{Network}
\umlinherit [geometry=|-|, anchors = 235 and 70] {MAV-Link}{Egomotion}
\umlinherit [geometry=-|, anchors = 180 and 270] {Network}{MAV-Link}
\umlinherit [geometry=-|] {PlatoonController}{Cruise-Control}
\umlinherit [geometry=|-, anchors = 240 and 25] {PlatoonController}{Logging}
\umlinherit [geometry=-|, anchors = 300 and 85] {PlatoonController}{Network}
\umlinherit [geometry=-|, anchors = 85 and 300] {Network}{PlatoonController}
\umlinherit [geometry=-|, anchors = 0 and 290] {Ultrasonic}{Environment}
\end{umlpackage}
\caption{Object Oriented Analysis}
\label{fig:ooa}
\end{figure}
\begin{landscape}
\begin{figure}[h]
\begin{center}
%\includegraphics[width=\textwidth]{SoftwareArchitektur} %photo

Phuc Tran Truong
committed
\includegraphics[scale=0.45]{sw_architektur} % some elements missing/ not recognizable
\end{center}
\caption{Softwarearchitektur}
\label{fig:sw-arch}
\end{figure}
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
%uml-tikz stub TODO
\begin{comment}
\begin{tikzpicture}
\begin{umlpackage}{Softwarearchitektur}
%classes
\umlclass[scale = 0.5, xshift = 8cm]
{MAV-Link}
{}
{}
\umlclass[scale = 0.5, xshift = 8cm, yshift = -4cm]
{Lane-Keeping}
{}
{}
\umlclass[scale = 0.5, xshift = 8cm, yshift = -8cm]
{Kamera}
{}
{}
\umlclass[scale = 0.5, xshift = 8cm, yshift = -12cm]
{USS}
{USS-Daten}
{}
%network
\umlclass[scale = 0.5, xshift = -8cm]
{C2C}
{
IPD, PS
}
{
nach PC\\
nP, NULL\\
nP(FV)\\
nP(LV)\\
FV\\
LV
}
\umlclass[scale = 0.5, xshift = -4cm]
{PC2}
{
}
{
handle IPD aus
}
\umlclass[scale = 0.5]
{Logging}
{
}
{
}
\umlclass[scale = 0.5, yshift = -4cm]
{Egomotion}
{
$v_p = v_0 + v_p$\\
$d_0$
}
{
} (EgoMotion)
\umlclass[scale = 0.5, xshift = -6cm, yshift = -8cm]
{PlatoonController}
{
IPD, PS, $d_0$, PlatSt, $v_s$
}
{
noPlatoon:\\
-wantsPlatoon\\
- FV/LV\\
- C2C initialisieren\\
- IPD, PS bestimmen\\
- $v_s$ weiterreichen\\
- ACC fahren\\
FV:\\
- CACC fahren\\
- leaveMsg\\
LV:\\
- ACC fahren\\
- leaveMsg\\
- IPD/PS update ($v_{new}$ vs. $v_{PC}$)
}
%Stuff: Pub $v_{new}$, Notify, für CC: PlatoonStat, IPD, PS, $v_s$
\umlclass[scale = 0.5, yshift = -8cm]
{CruiseControl}
{
}
{
}
\umlclass[scale = 0.5, xshift = 4cm, yshift = -12cm]
{Environment}
{
$d_0, v_r$
}
{
}
%arrows
%\umlinherit [geometry=-| ,anchors= 0 and 250] {src}{dest}
\end{umlpackage}
\end{tikzpicture}
\end{comment}
\end{landscape}