-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument_root.aux
More file actions
1080 lines (1080 loc) · 106 KB
/
document_root.aux
File metadata and controls
1080 lines (1080 loc) · 106 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\BKM@entry[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\providecommand\csxdef[2]{}
\@writefile{toc}{\providecommand\autonum@processReference[2]{}}
\@writefile{lof}{\providecommand\autonum@processReference[2]{}}
\citation{4459797}
\citation{iswarm}
\citation{micron}
\citation{1429425}
\citation{Dunbar2006549}
\citation{4389042}
\citation{1470732}
\citation{FINDEISEN2003190}
\citation{262032}
\citation{grune2016nonlinear}
\citation{Mayne2000789}
\citation{1470732}
\citation{00207170600867123}
\citation{Lav06}
\citation{Gustavi2010133}
\citation{Dunbar2006549}
\citation{1383977}
\citation{1429425}
\citation{1185106}
\csxdef {autonum@chapter:notation_reliminariesReferenced}{}
\csxdef {autonum@chapter:prob_formulationReferenced}{}
\csxdef {autonum@part:advocated_solutionsReferenced}{}
\csxdef {autonum@part:simulationsReferenced}{}
\csxdef {autonum@chapter:conclusions_future_workReferenced}{}
\csxdef {autonum@chapter:proofs_of_lemmasReferenced}{}
\csxdef {autonum@chapter:simulation_figures_without_disturbancesReferenced}{}
\csxdef {autonum@chapter:simulation_figures_with_disturbancesReferenced}{}
\BKM@entry{id=1,dest={706172742E31},srcline={63},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{495C3034305468655C30343070726F626C656D}
\@writefile{toc}{\contentsline {part}{I\hspace {1em}The problem}{5}{part.1}}
\BKM@entry{id=2,dest={636861707465722E31},srcline={67},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{5072656C696D696E6172696573}
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Preliminaries}{7}{chapter.1}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:notation_reliminaries}{{1}{7}{Preliminaries}{chapter.1}{}}
\newlabel{chapter:notation_reliminaries@cref}{{[chapter][1][]1}{7}}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Notation}{7}{section.1.1}}
\citation{khalil_nonlinear_systems}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Auxiliary Prerequisites}{8}{section.1.2}}
\csxdef {autonum@part:advocated_solutionsReferenced}{}
\newlabel{lemma:bellman_inequality}{{1.2.1}{8}{}{lemma.1.2.1}{}}
\newlabel{lemma:bellman_inequality@cref}{{[lemma][1][1,2]1.2.1}{8}}
\citation{khalil_nonlinear_systems}
\citation{khalil_nonlinear_systems}
\citation{Fontes2007}
\newlabel{def:k_class}{{1.2.1}{9}{}{definition.1.2.1}{}}
\newlabel{def:k_class@cref}{{[definition][1][1,2]1.2.1}{9}}
\newlabel{def:kl_class}{{1.2.2}{9}{}{definition.1.2.2}{}}
\newlabel{def:kl_class@cref}{{[definition][2][1,2]1.2.2}{9}}
\newlabel{lemma:barbalat}{{1.2.2}{9}{}{lemma.1.2.2}{}}
\newlabel{lemma:barbalat@cref}{{[lemma][2][1,2]1.2.2}{9}}
\citation{marquez2003nonlinear}
\citation{1185106}
\citation{marquez2003nonlinear}
\newlabel{def:ISS}{{1.2.3}{10}{}{definition.1.2.3}{}}
\newlabel{def:ISS@cref}{{[definition][3][1,2]1.2.3}{10}}
\newlabel{def:ISS_remark}{{1.2.1}{10}{}{remark.1.2.1}{}}
\newlabel{def:ISS_remark@cref}{{[remark][1][1,2]1.2.1}{10}}
\newlabel{def:ISS_Lyapunov}{{1.2.4}{10}{}{definition.1.2.4}{}}
\newlabel{def:ISS_Lyapunov@cref}{{[definition][4][1,2]1.2.4}{10}}
\citation{marquez2003nonlinear}
\citation{ISS_SKATOLINI}
\newlabel{remark:ISS_Lyapunov}{{1.2.2}{11}{}{remark.1.2.2}{}}
\newlabel{remark:ISS_Lyapunov@cref}{{[remark][2][1,2]1.2.2}{11}}
\csxdef {autonum@def:ISS_LyapunovReferenced}{}
\newlabel{def:ISS_Lyapunov_admit_theorem}{{1.2.1}{11}{}{theorem.1.2.1}{}}
\newlabel{def:ISS_Lyapunov_admit_theorem@cref}{{[theorem][1][1,2]1.2.1}{11}}
\newlabel{def:positively_invariant}{{1.2.5}{11}{}{definition.1.2.5}{}}
\newlabel{def:positively_invariant@cref}{{[definition][5][1,2]1.2.5}{11}}
\newlabel{def:robust_positively_invariant_set}{{1.2.6}{11}{}{definition.1.2.6}{}}
\newlabel{def:robust_positively_invariant_set@cref}{{[definition][6][1,2]1.2.6}{11}}
\csxdef {autonum@chapter:proofs_of_lemmasReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Model Predictive control for non-linear continuous-time systems}{12}{section.1.3}}
\citation{262032}
\citation{FINDEISEN2003190}
\BKM@entry{id=3,dest={636861707465722E32},srcline={77},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{50726F626C656D5C303430466F726D756C6174696F6E}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Problem Formulation}{15}{chapter.2}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:prob_formulation}{{2}{15}{Problem Formulation}{chapter.2}{}}
\newlabel{chapter:prob_formulation@cref}{{[chapter][2][]2}{15}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}System Model}{15}{section.2.1}}
\newlabel{eq:system_1}{{2.1a}{16}{System Model}{equation.2.0.1a}{}}
\newlabel{eq:system_1@cref}{{[subequation][1][2,1]2.1a}{16}}
\newlabel{eq:system_2}{{2.1b}{16}{System Model}{equation.2.0.1b}{}}
\newlabel{eq:system_2@cref}{{[subequation][2][2,1]2.1b}{16}}
\newlabel{eq:system}{{2.1}{16}{System Model}{equation.2.0.1b}{}}
\newlabel{eq:system@cref}{{[subequation][1][2]2.1}{16}}
\csxdef {autonum@eq:system_1Referenced}{}
\csxdef {autonum@eq:system_1Referenced}{}
\csxdef {autonum@eq:system_2Referenced}{}
\newlabel{ass:measurements_access}{{2.1.1}{16}{}{assumption.2.1.1}{}}
\newlabel{ass:measurements_access@cref}{{[assumption][1][2,1]2.1.1}{16}}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@fig:two_agents_one_obstacleReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces Illustration of two agents $i, j \in \mathcal {V}$ and a static obstacle $\ell \in \mathcal {L}$ in the workspace; $\{\mathcal {O}\}$ is the inertial frame, $\{i\}, \{j\}$ are the frames attached to the agents' center of mass, $\bm {\mathbf {p}}_i, \bm {\mathbf {p}}_j, \bm {\mathbf {p}}_{\ell } \in \mathbb {R}^3$ are the positions of the centers of mass of agents $i,j$ and obstacle $\ell $ respectively, expressed in frame $\{\mathcal {O}\}$. $r_i, r_j, r_{\ell }$ are the radii of the agents $i,j$ and the obstacle $\ell $ respectively. $d_i, d_j$ with $d_i > d_j$ are the agents' sensing ranges. In this figure, agents $i$ and $j$ are neighbours, since the center of mass of agent $j$ is within the sensing range of agent $i$ and vice versa: $\bm {\mathbf {p}}_j \in \mathcal {B}{\setbox \z@ \hbox {\frozen@everymath \@emptytoks \mathsurround \z@ $\nulldelimiterspace \z@ \left (\vcenter to\@ne \big@size {}\right .$}\box \z@ }\bm {\mathbf {p}}_i(t), d_i{\setbox \z@ \hbox {\frozen@everymath \@emptytoks \mathsurround \z@ $\nulldelimiterspace \z@ \left )\vcenter to\@ne \big@size {}\right .$}\box \z@ }$ and $\bm {\mathbf {p}}_i \in \mathcal {B}{\setbox \z@ \hbox {\frozen@everymath \@emptytoks \mathsurround \z@ $\nulldelimiterspace \z@ \left (\vcenter to\@ne \big@size {}\right .$}\box \z@ }\bm {\mathbf {p}}_j(t), d_j{\setbox \z@ \hbox {\frozen@everymath \@emptytoks \mathsurround \z@ $\nulldelimiterspace \z@ \left )\vcenter to\@ne \big@size {}\right .$}\box \z@ }$. Furthermore, the configuration between the two agents and the obstacle is a collision-free configuration.\relax }}{18}{figure.caption.4}}
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
\newlabel{fig:two_agents_one_obstacle}{{2.1}{18}{Illustration of two agents $i, j \in \mathcal {V}$ and a static obstacle $\ell \in \mathcal {L}$ in the workspace; $\{\mathcal {O}\}$ is the inertial frame, $\{i\}, \{j\}$ are the frames attached to the agents' center of mass, $\vect {p}_i, \vect {p}_j, \vect {p}_{\ell } \in \mathbb {R}^3$ are the positions of the centers of mass of agents $i,j$ and obstacle $\ell $ respectively, expressed in frame $\{\mathcal {O}\}$. $r_i, r_j, r_{\ell }$ are the radii of the agents $i,j$ and the obstacle $\ell $ respectively. $d_i, d_j$ with $d_i > d_j$ are the agents' sensing ranges. In this figure, agents $i$ and $j$ are neighbours, since the center of mass of agent $j$ is within the sensing range of agent $i$ and vice versa: $\vect {p}_j \in \mathcal {B}\big (\vect {p}_i(t), d_i\big )$ and $\vect {p}_i \in \mathcal {B}\big (\vect {p}_j(t), d_j\big )$. Furthermore, the configuration between the two agents and the obstacle is a collision-free configuration.\relax }{figure.caption.4}{}}
\newlabel{fig:two_agents_one_obstacle@cref}{{[figure][1][2]2.1}{18}}
\newlabel{definition:collision_free_conf}{{2.1.1}{19}{}{definition.2.1.1}{}}
\newlabel{definition:collision_free_conf@cref}{{[definition][1][2,1]2.1.1}{19}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Initial Conditions}{19}{section.2.2}}
\csxdef {autonum@eq:systemReferenced}{}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\newlabel{ass:initial_conditions}{{2.2.1}{20}{}{assumption.2.2.1}{}}
\newlabel{ass:initial_conditions@cref}{{[assumption][1][2,2]2.2.1}{20}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Objective}{21}{section.2.3}}
\newlabel{sec:objective}{{2.3}{21}{Objective}{section.2.3}{}}
\newlabel{sec:objective@cref}{{[section][3][2]2.3}{21}}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\csxdef {autonum@definition:feasible_steady_state_confReferenced}{}
\newlabel{definition:feasible_steady_state_conf}{{2.3.1}{21}{}{definition.2.3.1}{}}
\newlabel{definition:feasible_steady_state_conf@cref}{{[definition][1][2,3]2.3.1}{21}}
\csxdef {autonum@definition:collision_free_confReferenced}{}
\csxdef {autonum@def:intra_environmental_arrangementReferenced}{}
\newlabel{def:intra_environmental_arrangement}{{2.3.2}{22}{}{definition.2.3.2}{}}
\newlabel{def:intra_environmental_arrangement@cref}{{[definition][2][2,3]2.3.2}{22}}
\newlabel{ass:intra_environmental_arrangement}{{2.3.1}{22}{}{assumption.2.3.1}{}}
\newlabel{ass:intra_environmental_arrangement@cref}{{[assumption][1][2,3]2.3.1}{22}}
\csxdef {autonum@def:intra_environmental_arrangementReferenced}{}
\newlabel{definition:feasible_control_input}{{2.3.3}{23}{}{definition.2.3.3}{}}
\newlabel{definition:feasible_control_input@cref}{{[definition][3][2,3]2.3.3}{23}}
\csxdef {autonum@eq:systemReferenced}{}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\csxdef {autonum@ass:intra_environmental_arrangementReferenced}{}
\csxdef {autonum@problemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Problem Statement}{23}{section.2.4}}
\newlabel{sec:problem_statement}{{2.4}{23}{Problem Statement}{section.2.4}{}}
\newlabel{sec:problem_statement@cref}{{[section][4][2]2.4}{23}}
\newlabel{problem}{{2.4}{24}{Problem Statement}{Item.24}{}}
\newlabel{problem@cref}{{[section][4][2]2.4}{24}}
\csxdef {autonum@eq:systemReferenced}{}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\csxdef {autonum@ass:intra_environmental_arrangementReferenced}{}
\csxdef {autonum@definition:feasible_steady_state_confReferenced}{}
\csxdef {autonum@definition:feasible_control_inputReferenced}{}
\BKM@entry{id=4,dest={706172742E32},srcline={88},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{49495C3034304164766F63617465645C303430536F6C7574696F6E73}
\@writefile{toc}{\contentsline {part}{II\hspace {1em}Advocated Solutions}{27}{part.2}}
\BKM@entry{id=5,dest={636861707465722E33},srcline={93},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{44697374757262616E63652D667265655C30343053746162696C696C697A6174696F6E}
\newlabel{part:advocated_solutions}{{II}{29}{Advocated Solutions}{part.2}{}}
\newlabel{part:advocated_solutions@cref}{{[part][2][]II}{29}}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Disturbance-free Stabililization}{29}{chapter.3}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:stabilization_without_disturbance}{{3}{29}{Disturbance-free Stabililization}{chapter.3}{}}
\newlabel{chapter:stabilization_without_disturbance@cref}{{[chapter][3][]3}{29}}
\csxdef {autonum@eq:systemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Formalizing the system's model}{30}{section.3.1}}
\csxdef {autonum@eq:system_1Referenced}{}
\csxdef {autonum@eq:system_2Referenced}{}
\newlabel{eq:state_space_system}{{3.1}{30}{Formalizing the system's model}{equation.3.0.1.1}{}}
\newlabel{eq:state_space_system@cref}{{[subequation][1][3]3.1}{30}}
\newlabel{eq:original_z_system}{{3.3}{31}{Formalizing the system's model}{equation.3.0.3}{}}
\newlabel{eq:original_z_system@cref}{{[equation][3][3]3.3}{31}}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@problemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}The error model}{31}{section.3.2}}
\newlabel{eq:position_based_error_model}{{3.4}{31}{The error model}{equation.3.0.4}{}}
\newlabel{eq:position_based_error_model@cref}{{[equation][4][3]3.4}{31}}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@problemReferenced}{}
\newlabel{ass:g_i_Lipschitz}{{3.2.1}{32}{}{assumption.3.2.1}{}}
\newlabel{ass:g_i_Lipschitz@cref}{{[assumption][1][3,2]3.2.1}{32}}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@problemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}The optimization problem}{32}{section.3.3}}
\newlabel{problem:opt_without_disturbances}{{3.3.1}{32}{}{problem.3.3.1}{}}
\newlabel{problem:opt_without_disturbances@cref}{{[problem][1][3,3]3.3.1}{32}}
\newlabel{position_based_cost}{{3.5}{32}{}{equation.3.0.5}{}}
\newlabel{position_based_cost@cref}{{[equation][5][3]3.5}{32}}
\newlabel{eq:internal_error_model}{{3.6}{33}{}{equation.3.0.6}{}}
\newlabel{eq:internal_error_model@cref}{{[equation][6][3]3.6}{33}}
\csxdef {autonum@eq:internal_error_modelReferenced}{}
\newlabel{ass:access_to_predicted_info_n}{{3.3.1}{33}{}{assumption.3.3.1}{}}
\newlabel{ass:access_to_predicted_info_n@cref}{{[assumption][1][3,3]3.3.1}{33}}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@fig:constraint_regime_horizonReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces The inter-agent constraint regime for two agents, $i,j$. Fully outlined circles denote measured configurations, while partly outlined circles denote predicted configurations. During the solution to the individual optimization problems, the predicted configuration of each agent at each timestep is constrained by the predicted configuration of the other agent at the same timestep (hence the homologously identical colours at each discrete timestep).\relax }}{36}{figure.caption.5}}
\newlabel{fig:constraint_regime_horizon}{{3.1}{36}{The inter-agent constraint regime for two agents, $i,j$. Fully outlined circles denote measured configurations, while partly outlined circles denote predicted configurations. During the solution to the individual optimization problems, the predicted configuration of each agent at each timestep is constrained by the predicted configuration of the other agent at the same timestep (hence the homologously identical colours at each discrete timestep).\relax }{figure.caption.5}{}}
\newlabel{fig:constraint_regime_horizon@cref}{{[figure][1][3]3.1}{36}}
\newlabel{eq:F_i_def}{{3.8}{36}{The optimization problem}{equation.3.0.8}{}}
\newlabel{eq:F_i_def@cref}{{[equation][8][3]3.8}{36}}
\newlabel{eq:V_i_def}{{3.9}{36}{The optimization problem}{equation.3.0.9}{}}
\newlabel{eq:V_i_def@cref}{{[equation][9][3]3.9}{36}}
\newlabel{lemma:F_i_bounded_K_class}{{3.3.1}{36}{}{lemma.3.3.1}{}}
\newlabel{lemma:F_i_bounded_K_class@cref}{{[lemma][1][3,3]3.3.1}{36}}
\csxdef {autonum@eq:F_i_defReferenced}{}
\newlabel{lemma:F_Lipschitz}{{3.3.2}{37}{}{lemma.3.3.2}{}}
\newlabel{lemma:F_Lipschitz@cref}{{[lemma][2][3,3]3.3.2}{37}}
\csxdef {autonum@eq:F_i_defReferenced}{}
\csxdef {autonum@def:positively_invariantReferenced}{}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\newlabel{lemma:V_Lipschitz_e_0}{{3.3.3}{37}{}{lemma.3.3.3}{}}
\newlabel{lemma:V_Lipschitz_e_0@cref}{{[lemma][3][3,3]3.3.3}{37}}
\csxdef {autonum@eq:V_i_defReferenced}{}
\newlabel{lemma:V_i_lower_upper_bounded}{{3.3.4}{38}{}{lemma.3.3.4}{}}
\newlabel{lemma:V_i_lower_upper_bounded@cref}{{[lemma][4][3,3]3.3.4}{38}}
\csxdef {autonum@eq:V_i_defReferenced}{}
\csxdef {autonum@position_based_costReferenced}{}
\newlabel{eq:position_based_optimal_u}{{3.10}{38}{The optimization problem}{equation.3.0.10}{}}
\newlabel{eq:position_based_optimal_u@cref}{{[equation][10][3]3.10}{38}}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\newlabel{ass:existence_of_solutions_without_disturbance}{{3.3.2}{38}{}{assumption.3.3.2}{}}
\newlabel{ass:existence_of_solutions_without_disturbance@cref}{{[assumption][2][3,3]3.3.2}{38}}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@eq:internal_error_modelReferenced}{}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@eq:position_based_optimal_uReferenced}{}
\newlabel{eq:without_disturbances_closed_loop}{{3.11}{39}{The optimization problem}{equation.3.0.11}{}}
\newlabel{eq:without_disturbances_closed_loop@cref}{{[equation][11][3]3.11}{39}}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\newlabel{definition:admissible_input}{{3.3.1}{39}{}{definition.3.3.1}{}}
\newlabel{definition:admissible_input@cref}{{[definition][1][3,3]3.3.1}{39}}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Stabilization: Feasibility and Convergence}{40}{section.3.4}}
\csxdef {autonum@position_based_costReferenced}{}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\csxdef {autonum@ass:intra_environmental_arrangementReferenced}{}
\csxdef {autonum@ass:g_i_LipschitzReferenced}{}
\csxdef {autonum@ass:access_to_predicted_info_nReferenced}{}
\csxdef {autonum@ass:existence_of_solutions_without_disturbanceReferenced}{}
\csxdef {autonum@eq:without_disturbances_closed_loopReferenced}{}
\csxdef {autonum@eq:position_based_optimal_uReferenced}{}
\csxdef {autonum@position_based_costReferenced}{}
\newlabel{eq:optimal_input_portions_without_disturbances}{{3.12}{41}{Stabilization: Feasibility and Convergence}{equation.3.0.12}{}}
\newlabel{eq:optimal_input_portions_without_disturbances@cref}{{[equation][12][3]3.12}{41}}
\csxdef {autonum@eq:optimal_input_portions_without_disturbancesReferenced}{}
\newlabel{eq:optimal_input_t_plus_one_without_disturbances}{{3.13}{41}{Stabilization: Feasibility and Convergence}{equation.3.0.13}{}}
\newlabel{eq:optimal_input_t_plus_one_without_disturbances@cref}{{[equation][13][3]3.13}{41}}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\csxdef {autonum@eq:optimal_input_t_plus_one_without_disturbancesReferenced}{}
\newlabel{remark:predicted_actual_equations_without_disturbance}{{3.4.1}{42}{}{remark.3.4.1}{}}
\newlabel{remark:predicted_actual_equations_without_disturbance@cref}{{[remark][1][3,4]3.4.1}{42}}
\newlabel{eq:convergence_4_integrals}{{3.14}{43}{Stabilization: Feasibility and Convergence}{equation.3.0.14}{}}
\newlabel{eq:convergence_4_integrals@cref}{{[equation][14][3]3.14}{43}}
\csxdef {autonum@remark:predicted_actual_equations_without_disturbanceReferenced}{}
\csxdef {autonum@eq:optimal_input_t_plus_one_without_disturbancesReferenced}{}
\newlabel{eq:equal_predicted_without_disturbance}{{3.15}{45}{Stabilization: Feasibility and Convergence}{equation.3.0.15}{}}
\newlabel{eq:equal_predicted_without_disturbance@cref}{{[equation][15][3]3.15}{45}}
\csxdef {autonum@eq:convergence_4_integralsReferenced}{}
\newlabel{eq:convergence_2_integrals}{{3.16}{45}{Stabilization: Feasibility and Convergence}{equation.3.0.16}{}}
\newlabel{eq:convergence_2_integrals@cref}{{[equation][16][3]3.16}{45}}
\csxdef {autonum@eq:error_now_to_predicted_errorReferenced}{}
\newlabel{eq:error_now_to_predicted_error}{{3.4.2}{45}{}{remark.3.4.2}{}}
\newlabel{eq:error_now_to_predicted_error@cref}{{[remark][2][3,4]3.4.2}{45}}
\csxdef {autonum@eq:convergence_2_integralsReferenced}{}
\csxdef {autonum@lemma:V_Lipschitz_e_0Referenced}{}
\csxdef {autonum@eq:equal_predicted_without_disturbanceReferenced}{}
\csxdef {autonum@eq:convergence_2_integralsReferenced}{}
\newlabel{eq:J_opt_between_consecutive_k}{{3.17}{48}{Stabilization: Feasibility and Convergence}{equation.3.0.17}{}}
\newlabel{eq:J_opt_between_consecutive_k@cref}{{[equation][17][3]3.17}{48}}
\csxdef {autonum@eq:J_opt_between_consecutive_kReferenced}{}
\newlabel{eq:J_opt_between_k_and_0}{{3.18}{49}{Stabilization: Feasibility and Convergence}{equation.3.0.18}{}}
\newlabel{eq:J_opt_between_k_and_0@cref}{{[equation][18][3]3.18}{49}}
\csxdef {autonum@eq:position_based_error_modelReferenced}{}
\csxdef {autonum@eq:J_opt_between_k_and_0Referenced}{}
\csxdef {autonum@lemma:barbalatReferenced}{}
\csxdef {autonum@eq:error_now_to_predicted_errorReferenced}{}
\csxdef {autonum@eq:original_z_systemReferenced}{}
\BKM@entry{id=6,dest={636861707465722E34},srcline={103},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{53746162696C697A6174696F6E5C303430696E5C3034307468655C303430666163655C3034306F665C30343044697374757262616E636573}
\@writefile{toc}{\contentsline {chapter}{\numberline {4}Stabilization in the face of Disturbances}{51}{chapter.4}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:stabilization_with_disturbance}{{4}{51}{Stabilization in the face of Disturbances}{chapter.4}{}}
\newlabel{chapter:stabilization_with_disturbance@cref}{{[chapter][4][]4}{51}}
\csxdef {autonum@eq:systemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}The perturbed model}{52}{section.4.1}}
\newlabel{eq:perturbed_system}{{4.1}{52}{The perturbed model}{equation.4.0.1}{}}
\newlabel{eq:perturbed_system@cref}{{[equation][1][4]4.1}{52}}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@problemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}The error model}{53}{section.4.2}}
\newlabel{eq:position_based_error_model_with_disturbance}{{4.2}{53}{The error model}{equation.4.0.2}{}}
\newlabel{eq:position_based_error_model_with_disturbance@cref}{{[equation][2][4]4.2}{53}}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\csxdef {autonum@problemReferenced}{}
\newlabel{ass:g_i_g_R_Lipschitz}{{4.2.1}{53}{}{assumption.4.2.1}{}}
\newlabel{ass:g_i_g_R_Lipschitz@cref}{{[assumption][1][4,2]4.2.1}{53}}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\csxdef {autonum@problemReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}The optimization problem}{54}{section.4.3}}
\newlabel{problem:opt_with_disturbances}{{4.3.1}{54}{}{problem.4.3.1}{}}
\newlabel{problem:opt_with_disturbances@cref}{{[problem][1][4,3]4.3.1}{54}}
\newlabel{position_based_cost_2}{{4.3}{54}{}{equation.4.0.3}{}}
\newlabel{position_based_cost_2@cref}{{[equation][3][4]4.3}{54}}
\newlabel{eq:internal_error_model_2}{{4.4}{54}{}{equation.4.0.4}{}}
\newlabel{eq:internal_error_model_2@cref}{{[equation][4][4]4.4}{54}}
\csxdef {autonum@eq:internal_error_model_2Referenced}{}
\csxdef {autonum@ass:access_to_predicted_info_nReferenced}{}
\csxdef {autonum@fig:constraint_regime_horizonReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces The nominal constraint set $\mathcal {E}_i$ in bold and the consecutive restricted constraint sets $\mathcal {E}_i \ominus \mathcal {B}_{i, s-t_k}$, $s \in [t_k, t_k + T_p]$, dashed.\relax }}{55}{figure.caption.6}}
\newlabel{fig:tightening_high_level}{{4.1}{55}{The nominal constraint set $\mathcal {E}_i$ in bold and the consecutive restricted constraint sets $\mathcal {E}_i \ominus \mathcal {B}_{i, s-t_k}$, $s \in [t_k, t_k + T_p]$, dashed.\relax }{figure.caption.6}{}}
\newlabel{fig:tightening_high_level@cref}{{[figure][1][4]4.1}{55}}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\newlabel{eq:restricted_constraint_set}{{4.5}{55}{The optimization problem}{equation.4.0.5}{}}
\newlabel{eq:restricted_constraint_set@cref}{{[equation][5][4]4.5}{55}}
\citation{Fontes2007}
\newlabel{eq:b_restricted_constraint_set}{{4.6}{56}{The optimization problem}{equation.4.0.6}{}}
\newlabel{eq:b_restricted_constraint_set@cref}{{[equation][6][4]4.6}{56}}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\csxdef {autonum@eq:restricted_constraint_setReferenced}{}
\csxdef {autonum@property:restricted_constraint_setReferenced}{}
\newlabel{property:restricted_constraint_set}{{4.3.1}{56}{}{property.4.3.1}{}}
\newlabel{property:restricted_constraint_set@cref}{{[property][1][4,3]4.3.1}{56}}
\csxdef {autonum@eq:b_restricted_constraint_setReferenced}{}
\newlabel{ass:psi}{{4.3.1}{56}{}{assumption.4.3.1}{}}
\newlabel{ass:psi@cref}{{[assumption][1][4,3]4.3.1}{56}}
\csxdef {autonum@def:positively_invariantReferenced}{}
\citation{262032}
\citation{FINDEISEN2003190}
\newlabel{ass:phi_psi}{{4.3.2}{57}{}{assumption.4.3.2}{}}
\newlabel{ass:phi_psi@cref}{{[assumption][2][4,3]4.3.2}{57}}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\newlabel{remark:aux_control_stabilizability}{{4.3.1}{57}{}{remark.4.3.1}{}}
\newlabel{remark:aux_control_stabilizability@cref}{{[remark][1][4,3]4.3.1}{57}}
\newlabel{ass:psi_omega}{{4.3.3}{57}{}{assumption.4.3.3}{}}
\newlabel{ass:psi_omega@cref}{{[assumption][3][4,3]4.3.3}{57}}
\newlabel{ass:omega}{{4.3.4}{57}{}{assumption.4.3.4}{}}
\newlabel{ass:omega@cref}{{[assumption][4][4,3]4.3.4}{57}}
\newlabel{remark:E_T_P_limit}{{4.3.2}{57}{}{remark.4.3.2}{}}
\newlabel{remark:E_T_P_limit@cref}{{[remark][2][4,3]4.3.2}{57}}
\csxdef {autonum@eq:F_i_defReferenced}{}
\csxdef {autonum@eq:V_i_defReferenced}{}
\csxdef {autonum@lemma:F_i_bounded_K_classReferenced}{}
\csxdef {autonum@lemma:F_LipschitzReferenced}{}
\csxdef {autonum@lemma:V_Lipschitz_e_0Referenced}{}
\csxdef {autonum@lemma:V_i_lower_upper_boundedReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces The hierarchy of sets $\Omega _i \subseteq \Psi _i \subseteq \Phi _i \subseteq \mathcal {E}_{i,T_p}$, in bold, dash-dotted, dash-dotted, and dashed, respectively. For every state in $\Phi _i$ there is a linear state feedback control $h_i(\bm {\mathbf {e}}_i)$ which, when applied to a state $\bm {\mathbf {e}}_i \in \Psi _i$, causes the trajectory of the state of the system to fall into the terminal set $\Omega _i$.\relax }}{58}{figure.caption.7}}
\newlabel{fig:tightening_low_level}{{4.2}{58}{The hierarchy of sets $\Omega _i \subseteq \Psi _i \subseteq \Phi _i \subseteq \mathcal {E}_{i,T_p}$, in bold, dash-dotted, dash-dotted, and dashed, respectively. For every state in $\Phi _i$ there is a linear state feedback control $h_i(\vect {e}_i)$ which, when applied to a state $\vect {e}_i \in \Psi _i$, causes the trajectory of the state of the system to fall into the terminal set $\Omega _i$.\relax }{figure.caption.7}{}}
\newlabel{fig:tightening_low_level@cref}{{[figure][2][4]4.2}{58}}
\csxdef {autonum@position_based_cost_2Referenced}{}
\newlabel{eq:position_based_optimal_u_2}{{4.7}{58}{The optimization problem}{equation.4.0.7}{}}
\newlabel{eq:position_based_optimal_u_2@cref}{{[equation][7][4]4.7}{58}}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\csxdef {autonum@eq:position_based_error_model_with_disturbanceReferenced}{}
\newlabel{ass:existence_of_solutions_with_disturbance}{{4.3.5}{59}{}{assumption.4.3.5}{}}
\newlabel{ass:existence_of_solutions_with_disturbance@cref}{{[assumption][5][4,3]4.3.5}{59}}
\newlabel{eq:with_disturbances_closed_loop}{{4.8}{59}{The optimization problem}{equation.4.0.8}{}}
\newlabel{eq:with_disturbances_closed_loop@cref}{{[equation][8][4]4.8}{59}}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\newlabel{definition:admissible_input_with_disturbance}{{4.3.1}{59}{}{definition.4.3.1}{}}
\newlabel{definition:admissible_input_with_disturbance@cref}{{[definition][1][4,3]4.3.1}{59}}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Stabilization: Feasibility and Convergence}{60}{section.4.4}}
\newlabel{theorem:with_disturbances}{{4.4.1}{60}{}{theorem.4.4.1}{}}
\newlabel{theorem:with_disturbances@cref}{{[theorem][1][4,4]4.4.1}{60}}
\csxdef {autonum@position_based_cost_2Referenced}{}
\csxdef {autonum@ass:measurements_accessReferenced}{}
\csxdef {autonum@ass:initial_conditionsReferenced}{}
\csxdef {autonum@ass:intra_environmental_arrangementReferenced}{}
\csxdef {autonum@ass:access_to_predicted_info_nReferenced}{}
\csxdef {autonum@ass:g_i_g_R_LipschitzReferenced}{}
\csxdef {autonum@ass:existence_of_solutions_with_disturbanceReferenced}{}
\csxdef {autonum@eq:with_disturbances_closed_loopReferenced}{}
\csxdef {autonum@eq:position_based_optimal_u_2Referenced}{}
\newlabel{remark:predicted_actual_equations_with_disturbance}{{4.4.1}{61}{}{remark.4.4.1}{}}
\newlabel{remark:predicted_actual_equations_with_disturbance@cref}{{[remark][1][4,4]4.4.1}{61}}
\newlabel{lemma:diff_state_from_same_conditions}{{4.4.1}{62}{}{lemma.4.4.1}{}}
\newlabel{lemma:diff_state_from_same_conditions@cref}{{[lemma][1][4,4]4.4.1}{62}}
\csxdef {autonum@definition:admissible_input_with_disturbanceReferenced}{}
\csxdef {autonum@problem:opt_with_disturbancesReferenced}{}
\newlabel{eq:optimal_input_portions_with_disturbances}{{4.9}{62}{Stabilization: Feasibility and Convergence}{equation.4.0.9}{}}
\newlabel{eq:optimal_input_portions_with_disturbances@cref}{{[equation][9][4]4.9}{62}}
\newlabel{eq:predicted_t_k_T_p_from_t_k_in_omega}{{4.10}{62}{Stabilization: Feasibility and Convergence}{equation.4.0.10}{}}
\newlabel{eq:predicted_t_k_T_p_from_t_k_in_omega@cref}{{[equation][10][4]4.10}{62}}
\csxdef {autonum@eq:optimal_input_portions_with_disturbancesReferenced}{}
\newlabel{eq:optimal_input_t_plus_one_with_disturbances}{{4.11}{62}{Stabilization: Feasibility and Convergence}{equation.4.0.11}{}}
\newlabel{eq:optimal_input_t_plus_one_with_disturbances@cref}{{[equation][11][4]4.11}{62}}
\citation{kolmanovsky}
\citation{schneider_2013}
\csxdef {autonum@lemma:diff_state_from_same_conditionsReferenced}{}
\csxdef {autonum@proof:lemma_diff_state_from_same_conditionsReferenced}{}
\csxdef {autonum@lemma:diff_state_from_same_conditionsReferenced}{}
\newlabel{eq:feasibility_2}{{4.12}{65}{Stabilization: Feasibility and Convergence}{equation.4.0.12}{}}
\newlabel{eq:feasibility_2@cref}{{[equation][12][4]4.12}{65}}
\csxdef {autonum@property:restricted_constraint_setReferenced}{}
\newlabel{eq:from_DV_to_De}{{4.13}{66}{Stabilization: Feasibility and Convergence}{equation.4.0.13}{}}
\newlabel{eq:from_DV_to_De@cref}{{[equation][13][4]4.13}{66}}
\csxdef {autonum@remark:predicted_actual_equations_with_disturbanceReferenced}{}
\csxdef {autonum@lemma:diff_state_from_same_conditionsReferenced}{}
\csxdef {autonum@eq:from_DV_to_DeReferenced}{}
\newlabel{eq:from_DV_to_eq}{{4.14}{68}{Stabilization: Feasibility and Convergence}{equation.4.0.14}{}}
\newlabel{eq:from_DV_to_eq@cref}{{[equation][14][4]4.14}{68}}
\csxdef {autonum@eq:predicted_t_k_T_p_from_t_k_in_omegaReferenced}{}
\csxdef {autonum@eq:from_DV_to_eqReferenced}{}
\csxdef {autonum@theorem:with_disturbancesReferenced}{}
\newlabel{eq:delta_inequality}{{4.15}{69}{Stabilization: Feasibility and Convergence}{equation.4.0.15}{}}
\newlabel{eq:delta_inequality@cref}{{[equation][15][4]4.15}{69}}
\csxdef {autonum@ass:psi_omegaReferenced}{}
\newlabel{eq:feasibility_3}{{4.16}{69}{Stabilization: Feasibility and Convergence}{equation.4.0.16}{}}
\newlabel{eq:feasibility_3@cref}{{[equation][16][4]4.16}{69}}
\csxdef {autonum@eq:optimal_input_t_plus_one_with_disturbancesReferenced}{}
\csxdef {autonum@eq:feasibility_2Referenced}{}
\csxdef {autonum@eq:feasibility_3Referenced}{}
\csxdef {autonum@definition:admissible_input_with_disturbanceReferenced}{}
\csxdef {autonum@remark:E_T_P_limitReferenced}{}
\csxdef {autonum@fig:tightening_low_levelReferenced}{}
\csxdef {autonum@eq:delta_inequalityReferenced}{}
\csxdef {autonum@eq:with_disturbances_closed_loopReferenced}{}
\csxdef {autonum@def:ISS_LyapunovReferenced}{}
\csxdef {autonum@remark:ISS_LyapunovReferenced}{}
\csxdef {autonum@problem:opt_without_disturbancesReferenced}{}
\csxdef {autonum@eq:optimal_input_t_plus_one_with_disturbancesReferenced}{}
\newlabel{eq:convergence_4_integrals_2}{{4.17}{71}{Stabilization: Feasibility and Convergence}{equation.4.0.17}{}}
\newlabel{eq:convergence_4_integrals_2@cref}{{[equation][17][4]4.17}{71}}
\csxdef {autonum@eq:convergence_4_integrals_2Referenced}{}
\newlabel{eq:integrals_over_same_u_LV}{{4.18}{72}{Stabilization: Feasibility and Convergence}{equation.4.0.18}{}}
\newlabel{eq:integrals_over_same_u_LV@cref}{{[equation][18][4]4.18}{72}}
\csxdef {autonum@remark:predicted_actual_equations_with_disturbanceReferenced}{}
\newlabel{eq:df_interim_es}{{4.19}{73}{Stabilization: Feasibility and Convergence}{equation.4.0.19}{}}
\newlabel{eq:df_interim_es@cref}{{[equation][19][4]4.19}{73}}
\csxdef {autonum@lemma:diff_state_from_same_conditionsReferenced}{}
\csxdef {autonum@eq:df_interim_esReferenced}{}
\csxdef {autonum@eq:df_interim_esReferenced}{}
\csxdef {autonum@eq:integrals_over_same_u_LVReferenced}{}
\newlabel{eq:end_result_two_integrals}{{4.20}{74}{Stabilization: Feasibility and Convergence}{equation.4.0.20}{}}
\newlabel{eq:end_result_two_integrals@cref}{{[equation][20][4]4.20}{74}}
\csxdef {autonum@eq:convergence_4_integrals_2Referenced}{}
\csxdef {autonum@theorem:with_disturbancesReferenced}{}
\csxdef {autonum@eq:convergence_4_integrals_2Referenced}{}
\csxdef {autonum@eq:from_DV_to_eqReferenced}{}
\newlabel{eq:end_result_diff_V_plus_int}{{4.21}{76}{Stabilization: Feasibility and Convergence}{equation.4.0.21}{}}
\newlabel{eq:end_result_diff_V_plus_int@cref}{{[equation][21][4]4.21}{76}}
\csxdef {autonum@eq:end_result_two_integralsReferenced}{}
\csxdef {autonum@eq:end_result_diff_V_plus_intReferenced}{}
\csxdef {autonum@eq:convergence_4_integrals_2Referenced}{}
\citation{ISS_SKATOLINI}
\citation{marquez2003nonlinear}
\newlabel{eq:check_for_ISS_here_main_branch}{{4.22}{78}{Stabilization: Feasibility and Convergence}{equation.4.0.22}{}}
\newlabel{eq:check_for_ISS_here_main_branch@cref}{{[equation][22][4]4.22}{78}}
\csxdef {autonum@def:k_classReferenced}{}
\csxdef {autonum@lemma:V_i_lower_upper_boundedReferenced}{}
\csxdef {autonum@remark:ISS_LyapunovReferenced}{}
\csxdef {autonum@def:ISS_LyapunovReferenced}{}
\csxdef {autonum@def:ISS_Lyapunov_admit_theoremReferenced}{}
\csxdef {autonum@ass:phi_psiReferenced}{}
\csxdef {autonum@ass:psi_omegaReferenced}{}
\csxdef {autonum@theorem:with_disturbancesReferenced}{}
\csxdef {autonum@eq:check_for_ISS_here_main_branchReferenced}{}
\csxdef {autonum@ass:psi_omegaReferenced}{}
\csxdef {autonum@eq:perturbed_systemReferenced}{}
\csxdef {autonum@ass:psi_omegaReferenced}{}
\BKM@entry{id=7,dest={706172742E33},srcline={114},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{4949495C30343053696D756C6174696F6E73}
\@writefile{toc}{\contentsline {part}{III\hspace {1em}Simulations}{79}{part.3}}
\BKM@entry{id=8,dest={636861707465722E35},srcline={119},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{496E74726F64756374696F6E}
\citation{grune2016nonlinear}
\newlabel{part:simulations}{{III}{81}{Simulations}{part.3}{}}
\newlabel{part:simulations@cref}{{[part][3][]III}{81}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Introduction}{81}{chapter.5}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:simulations_introduction}{{5}{81}{Introduction}{chapter.5}{}}
\newlabel{chapter:simulations_introduction@cref}{{[chapter][5][]5}{81}}
\csxdef {autonum@chapter:stabilization_without_disturbanceReferenced}{}
\csxdef {autonum@chapter:stabilization_with_disturbanceReferenced}{}
\csxdef {autonum@chapter:simulations_without_disturbancesReferenced}{}
\csxdef {autonum@chapter:simulations_with_disturbancesReferenced}{}
\csxdef {autonum@chapter:prob_formulationReferenced}{}
\csxdef {autonum@chapter:stabilization_without_disturbanceReferenced}{}
\csxdef {autonum@chapter:stabilization_with_disturbanceReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}The operational model}{82}{section.5.1}}
\newlabel{eq:unicycle_kinematic}{{5.1}{82}{The operational model}{equation.5.0.1}{}}
\newlabel{eq:unicycle_kinematic@cref}{{[equation][1][5]5.1}{82}}
\csxdef {autonum@fig:unicycle_figureReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces The 2D plane, agent $i$, whose orientation relative to the $x$ axis is $\theta $, and two obstacles.\relax }}{82}{figure.caption.8}}
\newlabel{fig:unicycle_figure}{{5.1}{82}{The 2D plane, agent $i$, whose orientation relative to the $x$ axis is $\theta $, and two obstacles.\relax }{figure.caption.8}{}}
\newlabel{fig:unicycle_figure@cref}{{[figure][1][5]5.1}{82}}
\csxdef {autonum@eq:unicycle_kinematicReferenced}{}
\newlabel{eq:unicycle_kinematic_with_disturbances}{{5.2}{83}{The operational model}{equation.5.0.2}{}}
\newlabel{eq:unicycle_kinematic_with_disturbances@cref}{{[equation][2][5]5.2}{83}}
\newlabel{lemma:lipschitz_unicycle}{{5.1.1}{83}{}{lemma.5.1.1}{}}
\newlabel{lemma:lipschitz_unicycle@cref}{{[lemma][1][5,1]5.1.1}{83}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}The problem reformed}{83}{section.5.2}}
\csxdef {autonum@sec:problem_statementReferenced}{}
\newlabel{eq:error_constraint_set_unicycle}{{5.3}{85}{The problem reformed}{equation.5.0.3}{}}
\newlabel{eq:error_constraint_set_unicycle@cref}{{[equation][3][5]5.3}{85}}
\csxdef {autonum@eq:restricted_constraint_setReferenced}{}
\csxdef {autonum@remark:aux_control_stabilizabilityReferenced}{}
\csxdef {autonum@chapter:simulations_without_disturbancesReferenced}{}
\csxdef {autonum@chapter:simulations_with_disturbancesReferenced}{}
\csxdef {autonum@chapter:stabilization_without_disturbanceReferenced}{}
\csxdef {autonum@chapter:stabilization_with_disturbanceReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Simulation scenarios}{85}{section.5.3}}
\csxdef {autonum@proof:stabilizability_unicycleReferenced}{}
\csxdef {autonum@fig:test_case_2_1Referenced}{}
\csxdef {autonum@fig:test_case_2_2Referenced}{}
\csxdef {autonum@fig:test_case_3_1Referenced}{}
\csxdef {autonum@fig:test_case_3_2Referenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces Test case one: two agents and one obstacle.\relax }}{86}{figure.caption.9}}
\newlabel{fig:test_case_2_1}{{5.2}{86}{Test case one: two agents and one obstacle.\relax }{figure.caption.9}{}}
\newlabel{fig:test_case_2_1@cref}{{[figure][2][5]5.2}{86}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces Test case two: two agents and two obstacles.\relax }}{86}{figure.caption.10}}
\newlabel{fig:test_case_2_2}{{5.3}{86}{Test case two: two agents and two obstacles.\relax }{figure.caption.10}{}}
\newlabel{fig:test_case_2_2@cref}{{[figure][3][5]5.3}{86}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.4}{\ignorespaces Test case three: three agents and one obstacle.\relax }}{86}{figure.caption.11}}
\newlabel{fig:test_case_3_1}{{5.4}{86}{Test case three: three agents and one obstacle.\relax }{figure.caption.11}{}}
\newlabel{fig:test_case_3_1@cref}{{[figure][4][5]5.4}{86}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.5}{\ignorespaces Test case four: three agents and two obstacles.\relax }}{86}{figure.caption.12}}
\newlabel{fig:test_case_3_2}{{5.5}{86}{Test case four: three agents and two obstacles.\relax }{figure.caption.12}{}}
\newlabel{fig:test_case_3_2@cref}{{[figure][5][5]5.5}{86}}
\csxdef {autonum@chapter:simulation_figures_without_disturbancesReferenced}{}
\csxdef {autonum@chapter:simulation_figures_with_disturbancesReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Process \& information flow}{87}{section.5.4}}
\csxdef {autonum@fig:process_flowReferenced}{}
\csxdef {autonum@fig:information_flowReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {5.6}{\ignorespaces The procedure is approached sequentially. Notice that the figure implies that recursive feasibility is established if the initial configuration is itself feasible.\relax }}{88}{figure.caption.13}}
\newlabel{fig:process_flow}{{5.6}{88}{The procedure is approached sequentially. Notice that the figure implies that recursive feasibility is established if the initial configuration is itself feasible.\relax }{figure.caption.13}{}}
\newlabel{fig:process_flow@cref}{{[figure][6][5]5.6}{88}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.7}{\ignorespaces The flow of information to agent $i$ regarding his perception of agents within its sensing range $\mathcal {R}_i$ at arbitrary FHOCP solution time $t_k$. Agents $m,n \in \mathcal {R}_i(t_k)$ have solved their FHOCP; agent $i$ is next; agents $p,q \in \mathcal {R}_i(t_k)$ have not solved their FHOCP yet.\relax }}{89}{figure.caption.14}}
\newlabel{fig:information_flow}{{5.7}{89}{The flow of information to agent $i$ regarding his perception of agents within its sensing range $\mathcal {R}_i$ at arbitrary FHOCP solution time $t_k$. Agents $m,n \in \mathcal {R}_i(t_k)$ have solved their FHOCP; agent $i$ is next; agents $p,q \in \mathcal {R}_i(t_k)$ have not solved their FHOCP yet.\relax }{figure.caption.14}{}}
\newlabel{fig:information_flow@cref}{{[figure][7][5]5.7}{89}}
\BKM@entry{id=9,dest={636861707465722E36},srcline={131},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{53696D756C6174696F6E735C3034306F665C30343044697374757262616E63652D667265655C30343053746162696C696C697A6174696F6E}
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Simulations of Disturbance-free Stabililization}{91}{chapter.6}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:simulations_without_disturbances}{{6}{91}{Simulations of Disturbance-free Stabililization}{chapter.6}{}}
\newlabel{chapter:simulations_without_disturbances@cref}{{[chapter][6][]6}{91}}
\csxdef {autonum@eq:unicycle_kinematicReferenced}{}
\csxdef {autonum@eq:error_constraint_set_unicycleReferenced}{}
\csxdef {autonum@chapter:stabilization_without_disturbanceReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Simulation results}{92}{section.6.1}}
\csxdef {autonum@fig:d_OFF_res_trajectory_3_2Referenced}{}
\csxdef {autonum@fig:d_OFF_res_3_2_distance_agents_13Referenced}{}
\csxdef {autonum@fig:d_OFF_res_3_2_distance_obstacle_2_agentsReferenced}{}
\csxdef {autonum@fig:d_OFF_res_3_2_inputs_agent_1Referenced}{}
\csxdef {autonum@fig:d_OFF_res_3_2_errors_agent_1Referenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. A faint green line connects agents deemed neighbours. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }}{93}{figure.caption.15}}
\newlabel{fig:d_OFF_res_trajectory_3_2}{{6.1}{93}{The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. A faint green line connects agents deemed neighbours. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }{figure.caption.15}{}}
\newlabel{fig:d_OFF_res_trajectory_3_2@cref}{{[figure][1][6]6.1}{93}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{94}{figure.caption.16}}
\newlabel{fig:d_OFF_res_3_2_errors_agent_1}{{6.2}{94}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.16}{}}
\newlabel{fig:d_OFF_res_3_2_errors_agent_1@cref}{{[figure][2][6]6.2}{94}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{94}{figure.caption.17}}
\newlabel{fig:d_OFF_res_3_2_distance_agents_13}{{6.3}{94}{The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.17}{}}
\newlabel{fig:d_OFF_res_3_2_distance_agents_13@cref}{{[figure][3][6]6.3}{94}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }}{94}{figure.caption.18}}
\newlabel{fig:d_OFF_res_3_2_distance_obstacle_2_agents}{{6.4}{94}{The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.18}{}}
\newlabel{fig:d_OFF_res_3_2_distance_obstacle_2_agents@cref}{{[figure][4][6]6.4}{94}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{94}{figure.caption.19}}
\newlabel{fig:d_OFF_res_3_2_inputs_agent_1}{{6.5}{94}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.19}{}}
\newlabel{fig:d_OFF_res_3_2_inputs_agent_1@cref}{{[figure][5][6]6.5}{94}}
\BKM@entry{id=10,dest={636861707465722E37},srcline={139},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{53696D756C6174696F6E735C3034306F665C30343053746162696C697A6174696F6E5C303430696E5C3034307468655C303430666163655C3034306F665C30343044697374757262616E636573}
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Simulations of Stabilization in the face of Disturbances}{95}{chapter.7}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:simulations_with_disturbances}{{7}{95}{Simulations of Stabilization in the face of Disturbances}{chapter.7}{}}
\newlabel{chapter:simulations_with_disturbances@cref}{{[chapter][7][]7}{95}}
\csxdef {autonum@eq:unicycle_kinematic_with_disturbancesReferenced}{}
\csxdef {autonum@chapter:stabilization_with_disturbanceReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Simulation results}{96}{section.7.1}}
\csxdef {autonum@fig:d_ON_res_3_2_distance_agents_13Referenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_distance_obstacle_1_agentsReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_inputs_agent_2Referenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_errors_agent_1Referenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{97}{figure.caption.20}}
\newlabel{fig:d_ON_res_3_2_errors_agent_1}{{7.1}{97}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.20}{}}
\newlabel{fig:d_ON_res_3_2_errors_agent_1@cref}{{[figure][1][7]7.1}{97}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.2}{\ignorespaces The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }}{97}{figure.caption.21}}
\newlabel{fig:d_ON_res_3_2_distance_agents_13}{{7.2}{97}{The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }{figure.caption.21}{}}
\newlabel{fig:d_ON_res_3_2_distance_agents_13@cref}{{[figure][2][7]7.2}{97}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.3}{\ignorespaces The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.51$.\relax }}{97}{figure.caption.22}}
\newlabel{fig:d_ON_res_3_2_distance_obstacle_1_agents}{{7.3}{97}{The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.51$.\relax }{figure.caption.22}{}}
\newlabel{fig:d_ON_res_3_2_distance_obstacle_1_agents@cref}{{[figure][3][7]7.3}{97}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.4}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{97}{figure.caption.23}}
\newlabel{fig:d_ON_res_3_2_inputs_agent_2}{{7.4}{97}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.23}{}}
\newlabel{fig:d_ON_res_3_2_inputs_agent_2@cref}{{[figure][4][7]7.4}{97}}
\csxdef {autonum@fig:d_ON_res_3_2_VReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoomReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoom_zoomReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoomReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoom_zoomReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoom_zoom_unattenuatedReferenced}{}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoom_zoomReferenced}{}
\@writefile{lof}{\contentsline {figure}{\numberline {7.5}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time.\relax }}{98}{figure.caption.24}}
\newlabel{fig:d_ON_res_3_2_V}{{7.5}{98}{The $\mat {P}-$norms of the errors of the three agents through time.\relax }{figure.caption.24}{}}
\newlabel{fig:d_ON_res_3_2_V@cref}{{[figure][5][7]7.5}{98}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.6}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, focused. The colour magenta is used to illustrate the threshold $\varepsilon _{\Psi }$, while cyan is used for $\varepsilon _{\Omega }$.\relax }}{98}{figure.caption.25}}
\newlabel{fig:d_ON_res_3_2_V_zoom}{{7.6}{98}{The $\mat {P}-$norms of the errors of the three agents through time, focused. The colour magenta is used to illustrate the threshold $\varepsilon _{\Psi }$, while cyan is used for $\varepsilon _{\Omega }$.\relax }{figure.caption.25}{}}
\newlabel{fig:d_ON_res_3_2_V_zoom@cref}{{[figure][6][7]7.6}{98}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.7}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, in greater detail and for a longer time-period of execution. The colour cyan is used to depict their ceiling $\varepsilon _{\Omega }$.\relax }}{98}{figure.caption.26}}
\newlabel{fig:d_ON_res_3_2_V_zoom_zoom}{{7.7}{98}{The $\mat {P}-$norms of the errors of the three agents through time, in greater detail and for a longer time-period of execution. The colour cyan is used to depict their ceiling $\varepsilon _{\Omega }$.\relax }{figure.caption.26}{}}
\newlabel{fig:d_ON_res_3_2_V_zoom_zoom@cref}{{[figure][7][7]7.7}{98}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.8}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, \textit {if the disturbance is left unaddressed}. In direct comparison with figure \textup {\hbox {\mathsurround \z@ \normalfont (\ignorespaces \autonum@processReference {autonum@referencerefOld}{autonum@use}{fig:d_ON_res_3_2_V_zoom_zoom}\unskip \@@italiccorr )}}, it is clear that the energy of the system, as measured by the $\bm {\mathit {P}}-$norms of the agents' errors, oscillates with a larger magnitude than that under the proposed control regime.\relax }}{99}{figure.caption.27}}
\csxdef {autonum@fig:d_ON_res_3_2_V_zoom_zoomReferenced}{}
\newlabel{fig:d_ON_res_3_2_V_zoom_zoom_unattenuated}{{7.8}{99}{The $\mat {P}-$norms of the errors of the three agents through time, \textit {if the disturbance is left unaddressed}. In direct comparison with figure \eqref {fig:d_ON_res_3_2_V_zoom_zoom}, it is clear that the energy of the system, as measured by the $\mat {P}-$norms of the agents' errors, oscillates with a larger magnitude than that under the proposed control regime.\relax }{figure.caption.27}{}}
\newlabel{fig:d_ON_res_3_2_V_zoom_zoom_unattenuated@cref}{{[figure][8][7]7.8}{99}}
\BKM@entry{id=11,dest={706172742E34},srcline={148},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{49565C303430436F6E636C7573696F6E735C303430265C3034306675747572655C303430776F726B}
\@writefile{toc}{\contentsline {part}{IV\hspace {1em}Conclusions \& future work}{101}{part.4}}
\BKM@entry{id=12,dest={636861707465722E38},srcline={1},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{4675747572655C303430776F726B}
\newlabel{chapter:conclusions_future_work}{{IV}{103}{Conclusions \& future work}{part.4}{}}
\newlabel{chapter:conclusions_future_work@cref}{{[part][4][]IV}{103}}
\@writefile{toc}{\contentsline {chapter}{\numberline {8}Future work}{103}{chapter.8}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\BKM@entry{id=13,dest={636861707465722E39},srcline={1},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{436F6E636C7573696F6E73}
\@writefile{toc}{\contentsline {chapter}{\numberline {9}Conclusions}{105}{chapter.9}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\csxdef {autonum@chapter:prob_formulationReferenced}{}
\csxdef {autonum@chapter:stabilization_without_disturbanceReferenced}{}
\csxdef {autonum@chapter:stabilization_with_disturbanceReferenced}{}
\csxdef {autonum@chapter:simulations_without_disturbancesReferenced}{}
\csxdef {autonum@chapter:simulations_with_disturbancesReferenced}{}
\csxdef {autonum@sec:objectiveReferenced}{}
\csxdef {autonum@sec:problem_statementReferenced}{}
\BKM@entry{id=14,dest={73656374696F6E2A2E3238},srcline={162},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{417070656E6469636573}
\@writefile{toc}{\contentsline {chapter}{Appendices}{109}{section*.28}}
\BKM@entry{id=15,dest={417070656E6469782E612E41},srcline={166},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{50726F6F66735C3034306F665C3034306C656D6D6173}
\@writefile{toc}{\setcounter {tocdepth}{0}}
\@writefile{toc}{\contentsline {chapter}{\numberline {A}Proofs of lemmas}{111}{Appendix.a.A}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:proofs_of_lemmas}{{A}{111}{Proofs of lemmas}{Appendix.a.A}{}}
\newlabel{chapter:proofs_of_lemmas@cref}{{[chapter][1][]A}{111}}
\@writefile{toc}{\contentsline {section}{\numberline {A.1}Proof of lemma 3.3.1}{111}{section.a.A.1}}
\newlabel{proof:lemma:F_i_bounded_K_class}{{A.1}{111}{Proof of lemma \getrefnumber {lemma:F_i_bounded_K_class}}{section.a.A.1}{}}
\newlabel{proof:lemma:F_i_bounded_K_class@cref}{{[section][1][1]A.1}{111}}
\csxdef {autonum@def:k_classReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {A.2}Proof of lemma 3.3.2}{112}{section.a.A.2}}
\@writefile{toc}{\contentsline {section}{\numberline {A.3}Proof of lemma 3.3.3}{113}{section.a.A.3}}
\@writefile{toc}{\contentsline {section}{\numberline {A.4}Proof of lemma 3.3.4}{113}{section.a.A.4}}
\citation{kolmanovsky}
\csxdef {autonum@def:k_classReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {A.5}Proof of property 4.3.1}{114}{section.a.A.5}}
\csxdef {autonum@lemma:diff_state_from_same_conditionsReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {A.6}Proof of lemma 4.4.1}{115}{section.a.A.6}}
\newlabel{proof:lemma_diff_state_from_same_conditions}{{A.6}{115}{Proof of lemma \getrefnumber {lemma:diff_state_from_same_conditions}}{section.a.A.6}{}}
\newlabel{proof:lemma_diff_state_from_same_conditions@cref}{{[section][6][1]A.6}{115}}
\csxdef {autonum@remark:predicted_actual_equations_with_disturbanceReferenced}{}
\@writefile{toc}{\contentsline {section}{\numberline {A.7}Proof of lemma 5.1.1}{116}{section.a.A.7}}
\@writefile{toc}{\contentsline {section}{\numberline {A.8}Stabilizability of the unicycle model}{117}{section.a.A.8}}
\newlabel{proof:stabilizability_unicycle}{{A.8}{117}{Stabilizability of the unicycle model}{section.a.A.8}{}}
\newlabel{proof:stabilizability_unicycle@cref}{{[section][8][1]A.8}{117}}
\newlabel{eq:linearized_unicycle_proof}{{A.1}{117}{Stabilizability of the unicycle model}{equation.a.A.0.1}{}}
\newlabel{eq:linearized_unicycle_proof@cref}{{[equation][1][1]A.1}{117}}
\csxdef {autonum@eq:linearized_unicycle_proofReferenced}{}
\csxdef {autonum@eq:linearized_unicycle_proofReferenced}{}
\BKM@entry{id=16,dest={417070656E6469782E612E42},srcline={180},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{53696D756C6174696F6E5C303430666967757265735C3034302D5C30343064697374757262616E6365735C303430616273656E74}
\@writefile{toc}{\contentsline {chapter}{\numberline {B}Simulation figures $-$ disturbances absent}{119}{Appendix.a.B}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:simulation_figures_without_disturbances}{{B}{119}{Simulation figures $-$ disturbances absent}{Appendix.a.B}{}}
\newlabel{chapter:simulation_figures_without_disturbances@cref}{{[chapter][2][]B}{119}}
\@writefile{toc}{\contentsline {section}{\numberline {B.1}Test case one: two agents $-$ one obstacle}{120}{section.a.B.1}}
\csxdef {autonum@subsection:d_OFF_trajectories_2_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_errors_2_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_inputs_2_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_distances_2_1Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.1.1}Trajectories in 2D}{121}{subsection.a.B.1.1}}
\newlabel{subsection:d_OFF_trajectories_2_1}{{B.1.1}{121}{Trajectories in 2D}{subsection.a.B.1.1}{}}
\newlabel{subsection:d_OFF_trajectories_2_1@cref}{{[subsection][1][2,1]B.1.1}{121}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.1}{\ignorespaces The trajectories of the two agents in the $x-y$ plane. Agent 1 is with blue and agent 2 with red. The obstacle is black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }}{121}{figure.caption.29}}
\newlabel{fig:d_OFF_trajectory_2_1}{{B.1}{121}{The trajectories of the two agents in the $x-y$ plane. Agent 1 is with blue and agent 2 with red. The obstacle is black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }{figure.caption.29}{}}
\newlabel{fig:d_OFF_trajectory_2_1@cref}{{[figure][1][2]B.1}{121}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.1.2}State errors}{122}{subsection.a.B.1.2}}
\newlabel{subsection:d_OFF_errors_2_1}{{B.1.2}{122}{State errors}{subsection.a.B.1.2}{}}
\newlabel{subsection:d_OFF_errors_2_1@cref}{{[subsection][2][2,1]B.1.2}{122}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.2}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{122}{figure.caption.30}}
\newlabel{fig:d_OFF_2_1_errors_agent_1}{{B.2}{122}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.30}{}}
\newlabel{fig:d_OFF_2_1_errors_agent_1@cref}{{[figure][2][2]B.2}{122}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.3}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{122}{figure.caption.31}}
\newlabel{fig:d_OFF_e2_1_errors_agent_1}{{B.3}{122}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.31}{}}
\newlabel{fig:d_OFF_e2_1_errors_agent_1@cref}{{[figure][3][2]B.3}{122}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.1.3}Distances between actors}{122}{subsection.a.B.1.3}}
\newlabel{subsection:d_OFF_distances_2_1}{{B.1.3}{122}{Distances between actors}{subsection.a.B.1.3}{}}
\newlabel{subsection:d_OFF_distances_2_1@cref}{{[subsection][3][2,1]B.1.3}{122}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.4}{\ignorespaces The distance between the two agents over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{122}{figure.caption.32}}
\newlabel{fig:d_OFF_2_1_distance_agents}{{B.4}{122}{The distance between the two agents over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.32}{}}
\newlabel{fig:d_OFF_2_1_distance_agents@cref}{{[figure][4][2]B.4}{122}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.5}{\ignorespaces The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.6$.\relax }}{122}{figure.caption.33}}
\newlabel{fig:d_OFF_2_1_distance_obstacle_agents}{{B.5}{122}{The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.33}{}}
\newlabel{fig:d_OFF_2_1_distance_obstacle_agents@cref}{{[figure][5][2]B.5}{122}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.1.4}Input signals}{123}{subsection.a.B.1.4}}
\newlabel{subsection:d_OFF_inputs_2_1}{{B.1.4}{123}{Input signals}{subsection.a.B.1.4}{}}
\newlabel{subsection:d_OFF_inputs_2_1@cref}{{[subsection][4][2,1]B.1.4}{123}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.6}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{123}{figure.caption.34}}
\newlabel{fig:d_OFF_2_1_inputs_agent_1}{{B.6}{123}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.34}{}}
\newlabel{fig:d_OFF_2_1_inputs_agent_1@cref}{{[figure][6][2]B.6}{123}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.7}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{123}{figure.caption.35}}
\newlabel{fig:d_OFF_2_1_inputs_agent_2}{{B.7}{123}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.35}{}}
\newlabel{fig:d_OFF_2_1_inputs_agent_2@cref}{{[figure][7][2]B.7}{123}}
\@writefile{toc}{\contentsline {section}{\numberline {B.2}Test case two: two agents $-$ two obstacles}{123}{section.a.B.2}}
\csxdef {autonum@subsection:d_OFF_trajectories_2_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_errors_2_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_inputs_2_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_distances_2_2Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.2.1}Trajectories in 2D}{124}{subsection.a.B.2.1}}
\newlabel{subsection:d_OFF_trajectories_2_2}{{B.2.1}{124}{Trajectories in 2D}{subsection.a.B.2.1}{}}
\newlabel{subsection:d_OFF_trajectories_2_2@cref}{{[subsection][1][2,2]B.2.1}{124}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.8}{\ignorespaces The trajectories of the two agents in the $x-y$ plane. Agent 1 is with blue and agent 2 with red. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }}{124}{figure.caption.36}}
\newlabel{fig:d_OFF_trajectory_2_2}{{B.8}{124}{The trajectories of the two agents in the $x-y$ plane. Agent 1 is with blue and agent 2 with red. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }{figure.caption.36}{}}
\newlabel{fig:d_OFF_trajectory_2_2@cref}{{[figure][8][2]B.8}{124}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.2.2}State errors}{125}{subsection.a.B.2.2}}
\newlabel{subsection:d_OFF_errors_2_2}{{B.2.2}{125}{State errors}{subsection.a.B.2.2}{}}
\newlabel{subsection:d_OFF_errors_2_2@cref}{{[subsection][2][2,2]B.2.2}{125}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.9}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{125}{figure.caption.37}}
\newlabel{fig:d_OFF_2_2_errors_agent_1}{{B.9}{125}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.37}{}}
\newlabel{fig:d_OFF_2_2_errors_agent_1@cref}{{[figure][9][2]B.9}{125}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.10}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{125}{figure.caption.38}}
\newlabel{fig:d_OFF_e2_2_errors_agent_2}{{B.10}{125}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.38}{}}
\newlabel{fig:d_OFF_e2_2_errors_agent_2@cref}{{[figure][10][2]B.10}{125}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.2.3}Distances between actors}{125}{subsection.a.B.2.3}}
\newlabel{subsection:d_OFF_distances_2_2}{{B.2.3}{125}{Distances between actors}{subsection.a.B.2.3}{}}
\newlabel{subsection:d_OFF_distances_2_2@cref}{{[subsection][3][2,2]B.2.3}{125}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.11}{\ignorespaces The distance between the two agents over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{125}{figure.caption.39}}
\newlabel{fig:d_OFF_2_2_distance_agents}{{B.11}{125}{The distance between the two agents over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.39}{}}
\newlabel{fig:d_OFF_2_2_distance_agents@cref}{{[figure][11][2]B.11}{125}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.12}{\ignorespaces The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.6$.\relax }}{126}{figure.caption.40}}
\newlabel{fig:d_OFF_2_2_distance_obstacle_1_agents}{{B.12}{126}{The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.40}{}}
\newlabel{fig:d_OFF_2_2_distance_obstacle_1_agents@cref}{{[figure][12][2]B.12}{126}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.13}{\ignorespaces The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }}{126}{figure.caption.41}}
\newlabel{fig:d_OFF_2_2_distance_obstacle_2_agents}{{B.13}{126}{The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.41}{}}
\newlabel{fig:d_OFF_2_2_distance_obstacle_2_agents@cref}{{[figure][13][2]B.13}{126}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.2.4}Input signals}{126}{subsection.a.B.2.4}}
\newlabel{subsection:d_OFF_inputs_2_2}{{B.2.4}{126}{Input signals}{subsection.a.B.2.4}{}}
\newlabel{subsection:d_OFF_inputs_2_2@cref}{{[subsection][4][2,2]B.2.4}{126}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.14}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{126}{figure.caption.42}}
\newlabel{fig:d_OFF_2_2_inputs_agent_1}{{B.14}{126}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.42}{}}
\newlabel{fig:d_OFF_2_2_inputs_agent_1@cref}{{[figure][14][2]B.14}{126}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.15}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{126}{figure.caption.43}}
\newlabel{fig:d_OFF_2_2_inputs_agent_2}{{B.15}{126}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.43}{}}
\newlabel{fig:d_OFF_2_2_inputs_agent_2@cref}{{[figure][15][2]B.15}{126}}
\@writefile{toc}{\contentsline {section}{\numberline {B.3}Test case three: three agents $-$ one obstacle}{126}{section.a.B.3}}
\csxdef {autonum@subsection:d_OFF_trajectories_3_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_errors_3_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_inputs_3_1Referenced}{}
\csxdef {autonum@subsection:d_OFF_distances_3_1Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.3.1}Trajectories in 2D}{127}{subsection.a.B.3.1}}
\newlabel{subsection:d_OFF_trajectories_3_1}{{B.3.1}{127}{Trajectories in 2D}{subsection.a.B.3.1}{}}
\newlabel{subsection:d_OFF_trajectories_3_1@cref}{{[subsection][1][2,3]B.3.1}{127}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.16}{\ignorespaces The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. The obstacle is black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }}{127}{figure.caption.44}}
\newlabel{fig:d_OFF_trajectory_3_1}{{B.16}{127}{The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. The obstacle is black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }{figure.caption.44}{}}
\newlabel{fig:d_OFF_trajectory_3_1@cref}{{[figure][16][2]B.16}{127}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.3.2}State errors}{128}{subsection.a.B.3.2}}
\newlabel{subsection:d_OFF_errors_3_1}{{B.3.2}{128}{State errors}{subsection.a.B.3.2}{}}
\newlabel{subsection:d_OFF_errors_3_1@cref}{{[subsection][2][2,3]B.3.2}{128}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.17}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{128}{figure.caption.45}}
\newlabel{fig:d_OFF_3_1_errors_agent_1}{{B.17}{128}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.45}{}}
\newlabel{fig:d_OFF_3_1_errors_agent_1@cref}{{[figure][17][2]B.17}{128}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.18}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{128}{figure.caption.46}}
\newlabel{fig:d_OFF_3_1_errors_agent_2}{{B.18}{128}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.46}{}}
\newlabel{fig:d_OFF_3_1_errors_agent_2@cref}{{[figure][18][2]B.18}{128}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.19}{\ignorespaces The evolution of the error states of agent 3 over time.\relax }}{128}{figure.caption.47}}
\newlabel{fig:d_OFF_3_1_errors_agent_3}{{B.19}{128}{The evolution of the error states of agent 3 over time.\relax }{figure.caption.47}{}}
\newlabel{fig:d_OFF_3_1_errors_agent_3@cref}{{[figure][19][2]B.19}{128}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.3.3}Distances between actors}{129}{subsection.a.B.3.3}}
\newlabel{subsection:d_OFF_distances_3_1}{{B.3.3}{129}{Distances between actors}{subsection.a.B.3.3}{}}
\newlabel{subsection:d_OFF_distances_3_1@cref}{{[subsection][3][2,3]B.3.3}{129}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.20}{\ignorespaces The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{129}{figure.caption.48}}
\newlabel{fig:d_OFF_3_1_distance_agents_12}{{B.20}{129}{The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.48}{}}
\newlabel{fig:d_OFF_3_1_distance_agents_12@cref}{{[figure][20][2]B.20}{129}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.21}{\ignorespaces The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{129}{figure.caption.49}}
\newlabel{fig:d_OFF_3_1_distance_agents_13}{{B.21}{129}{The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.49}{}}
\newlabel{fig:d_OFF_3_1_distance_agents_13@cref}{{[figure][21][2]B.21}{129}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.22}{\ignorespaces The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.1$.\relax }}{129}{figure.caption.50}}
\newlabel{fig:d_OFF_3_1_distance_agents_23}{{B.22}{129}{The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.1$.\relax }{figure.caption.50}{}}
\newlabel{fig:d_OFF_3_1_distance_agents_23@cref}{{[figure][22][2]B.22}{129}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.23}{\ignorespaces The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.6$.\relax }}{129}{figure.caption.51}}
\newlabel{fig:d_OFF_3_1_distance_obstacle_agents}{{B.23}{129}{The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.51}{}}
\newlabel{fig:d_OFF_3_1_distance_obstacle_agents@cref}{{[figure][23][2]B.23}{129}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.3.4}Input signals}{130}{subsection.a.B.3.4}}
\newlabel{subsection:d_OFF_inputs_3_1}{{B.3.4}{130}{Input signals}{subsection.a.B.3.4}{}}
\newlabel{subsection:d_OFF_inputs_3_1@cref}{{[subsection][4][2,3]B.3.4}{130}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.24}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{130}{figure.caption.52}}
\newlabel{fig:d_OFF_3_1_inputs_agent_1}{{B.24}{130}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.52}{}}
\newlabel{fig:d_OFF_3_1_inputs_agent_1@cref}{{[figure][24][2]B.24}{130}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.25}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{130}{figure.caption.53}}
\newlabel{fig:d_OFF_3_1_inputs_agent_2}{{B.25}{130}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.53}{}}
\newlabel{fig:d_OFF_3_1_inputs_agent_2@cref}{{[figure][25][2]B.25}{130}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.26}{\ignorespaces The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }}{130}{figure.caption.54}}
\newlabel{fig:d_OFF_3_1_inputs_agent_3}{{B.26}{130}{The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.54}{}}
\newlabel{fig:d_OFF_3_1_inputs_agent_3@cref}{{[figure][26][2]B.26}{130}}
\@writefile{toc}{\contentsline {section}{\numberline {B.4}Test case four: three agents $-$ two obstacles}{130}{section.a.B.4}}
\csxdef {autonum@subsection:d_OFF_trajectories_3_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_errors_3_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_inputs_3_2Referenced}{}
\csxdef {autonum@subsection:d_OFF_distances_3_2Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.4.1}Trajectories in 2D}{131}{subsection.a.B.4.1}}
\newlabel{subsection:d_OFF_trajectories_3_2}{{B.4.1}{131}{Trajectories in 2D}{subsection.a.B.4.1}{}}
\newlabel{subsection:d_OFF_trajectories_3_2@cref}{{[subsection][1][2,4]B.4.1}{131}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.27}{\ignorespaces The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }}{131}{figure.caption.55}}
\newlabel{fig:d_OFF_trajectory_3_2}{{B.27}{131}{The trajectories of the three agents in the $x-y$ plane. Agent 1 is with blue, agent 2 with red and agent 3 with yellow. The obstacles are black. Mark O denotes equilibrium configurations. Mark X marks desired configurations.\relax }{figure.caption.55}{}}
\newlabel{fig:d_OFF_trajectory_3_2@cref}{{[figure][27][2]B.27}{131}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.4.2}State errors}{132}{subsection.a.B.4.2}}
\newlabel{subsection:d_OFF_errors_3_2}{{B.4.2}{132}{State errors}{subsection.a.B.4.2}{}}
\newlabel{subsection:d_OFF_errors_3_2@cref}{{[subsection][2][2,4]B.4.2}{132}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.28}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{132}{figure.caption.56}}
\newlabel{fig:d_OFF_3_2_errors_agent_1}{{B.28}{132}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.56}{}}
\newlabel{fig:d_OFF_3_2_errors_agent_1@cref}{{[figure][28][2]B.28}{132}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.29}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{132}{figure.caption.57}}
\newlabel{fig:d_OFF_3_2_errors_agent_2}{{B.29}{132}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.57}{}}
\newlabel{fig:d_OFF_3_2_errors_agent_2@cref}{{[figure][29][2]B.29}{132}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.30}{\ignorespaces The evolution of the error states of agent 3 over time.\relax }}{132}{figure.caption.58}}
\newlabel{fig:d_OFF_3_2_errors_agent_3}{{B.30}{132}{The evolution of the error states of agent 3 over time.\relax }{figure.caption.58}{}}
\newlabel{fig:d_OFF_3_2_errors_agent_3@cref}{{[figure][30][2]B.30}{132}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.4.3}Distances between actors}{133}{subsection.a.B.4.3}}
\newlabel{subsection:d_OFF_distances_3_2}{{B.4.3}{133}{Distances between actors}{subsection.a.B.4.3}{}}
\newlabel{subsection:d_OFF_distances_3_2@cref}{{[subsection][3][2,4]B.4.3}{133}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.31}{\ignorespaces The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{133}{figure.caption.59}}
\newlabel{fig:d_OFF_3_2_distance_agents_12}{{B.31}{133}{The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.59}{}}
\newlabel{fig:d_OFF_3_2_distance_agents_12@cref}{{[figure][31][2]B.31}{133}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.32}{\ignorespaces The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }}{133}{figure.caption.60}}
\newlabel{fig:d_OFF_3_2_distance_agents_13}{{B.32}{133}{The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.1$ and the minimum allowed distance a value of $1.1$.\relax }{figure.caption.60}{}}
\newlabel{fig:d_OFF_3_2_distance_agents_13@cref}{{[figure][32][2]B.32}{133}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.33}{\ignorespaces The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.1$.\relax }}{133}{figure.caption.61}}
\newlabel{fig:d_OFF_3_2_distance_agents_23}{{B.33}{133}{The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.1$.\relax }{figure.caption.61}{}}
\newlabel{fig:d_OFF_3_2_distance_agents_23@cref}{{[figure][33][2]B.33}{133}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.34}{\ignorespaces The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.6$.\relax }}{134}{figure.caption.62}}
\newlabel{fig:d_OFF_3_2_distance_obstacle_1_agents}{{B.34}{134}{The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.62}{}}
\newlabel{fig:d_OFF_3_2_distance_obstacle_1_agents@cref}{{[figure][34][2]B.34}{134}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.35}{\ignorespaces The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }}{134}{figure.caption.63}}
\newlabel{fig:d_OFF_3_2_distance_obstacle_2_agents}{{B.35}{134}{The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.6$.\relax }{figure.caption.63}{}}
\newlabel{fig:d_OFF_3_2_distance_obstacle_2_agents@cref}{{[figure][35][2]B.35}{134}}
\@writefile{toc}{\contentsline {subsection}{\numberline {B.4.4}Input signals}{134}{subsection.a.B.4.4}}
\newlabel{subsection:d_OFF_inputs_3_2}{{B.4.4}{134}{Input signals}{subsection.a.B.4.4}{}}
\newlabel{subsection:d_OFF_inputs_3_2@cref}{{[subsection][4][2,4]B.4.4}{134}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.36}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{134}{figure.caption.64}}
\newlabel{fig:d_OFF_3_2_inputs_agent_1}{{B.36}{134}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.64}{}}
\newlabel{fig:d_OFF_3_2_inputs_agent_1@cref}{{[figure][36][2]B.36}{134}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.37}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{135}{figure.caption.65}}
\newlabel{fig:d_OFF_3_2_inputs_agent_2}{{B.37}{135}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.65}{}}
\newlabel{fig:d_OFF_3_2_inputs_agent_2@cref}{{[figure][37][2]B.37}{135}}
\@writefile{lof}{\contentsline {figure}{\numberline {B.38}{\ignorespaces The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }}{135}{figure.caption.66}}
\newlabel{fig:d_OFF_3_2_inputs_agent_3}{{B.38}{135}{The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.66}{}}
\newlabel{fig:d_OFF_3_2_inputs_agent_3@cref}{{[figure][38][2]B.38}{135}}
\BKM@entry{id=17,dest={417070656E6469782E612E43},srcline={191},srcfile={2E2F646F63756D656E745F726F6F742E746578}}{53696D756C6174696F6E5C303430666967757265735C3034302D5C30343064697374757262616E6365735C30343070726573656E74}
\@writefile{toc}{\contentsline {chapter}{\numberline {C}Simulation figures $-$ disturbances present}{137}{Appendix.a.C}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:simulation_figures_with_disturbances}{{C}{137}{Simulation figures $-$ disturbances present}{Appendix.a.C}{}}
\newlabel{chapter:simulation_figures_with_disturbances@cref}{{[chapter][3][]C}{137}}
\@writefile{toc}{\contentsline {section}{\numberline {C.1}Test case one: two agents $-$ one obstacle}{137}{section.a.C.1}}
\csxdef {autonum@subsection:d_ON_errors_2_1Referenced}{}
\csxdef {autonum@subsection:d_ON_inputs_2_1Referenced}{}
\csxdef {autonum@subsection:d_ON_distances_2_1Referenced}{}
\csxdef {autonum@subsection:d_ON_V_2_1Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.1.1}State errors}{138}{subsection.a.C.1.1}}
\newlabel{subsection:d_ON_errors_2_1}{{C.1.1}{138}{State errors}{subsection.a.C.1.1}{}}
\newlabel{subsection:d_ON_errors_2_1@cref}{{[subsection][1][3,1]C.1.1}{138}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.1}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{138}{figure.caption.67}}
\newlabel{fig:d_ON_2_1_errors_agent_1}{{C.1}{138}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.67}{}}
\newlabel{fig:d_ON_2_1_errors_agent_1@cref}{{[figure][1][3]C.1}{138}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.2}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{138}{figure.caption.68}}
\newlabel{fig:d_ON_e2_1_errors_agent_1}{{C.2}{138}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.68}{}}
\newlabel{fig:d_ON_e2_1_errors_agent_1@cref}{{[figure][2][3]C.2}{138}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.1.2}Distances between actors}{138}{subsection.a.C.1.2}}
\newlabel{subsection:d_ON_distances_2_1}{{C.1.2}{138}{Distances between actors}{subsection.a.C.1.2}{}}
\newlabel{subsection:d_ON_distances_2_1@cref}{{[subsection][2][3,1]C.1.2}{138}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.3}{\ignorespaces The distance between the two agents over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }}{138}{figure.caption.69}}
\newlabel{fig:d_ON_2_1_distance_agents}{{C.3}{138}{The distance between the two agents over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }{figure.caption.69}{}}
\newlabel{fig:d_ON_2_1_distance_agents@cref}{{[figure][3][3]C.3}{138}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.4}{\ignorespaces The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.51$.\relax }}{138}{figure.caption.70}}
\newlabel{fig:d_ON_2_1_distance_obstacle_agents}{{C.4}{138}{The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.51$.\relax }{figure.caption.70}{}}
\newlabel{fig:d_ON_2_1_distance_obstacle_agents@cref}{{[figure][4][3]C.4}{138}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.1.3}Input signals}{139}{subsection.a.C.1.3}}
\newlabel{subsection:d_ON_inputs_2_1}{{C.1.3}{139}{Input signals}{subsection.a.C.1.3}{}}
\newlabel{subsection:d_ON_inputs_2_1@cref}{{[subsection][3][3,1]C.1.3}{139}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.5}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{139}{figure.caption.71}}
\newlabel{fig:d_ON_2_1_inputs_agent_1}{{C.5}{139}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.71}{}}
\newlabel{fig:d_ON_2_1_inputs_agent_1@cref}{{[figure][5][3]C.5}{139}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.6}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{139}{figure.caption.72}}
\newlabel{fig:d_ON_2_1_inputs_agent_2}{{C.6}{139}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.72}{}}
\newlabel{fig:d_ON_2_1_inputs_agent_2@cref}{{[figure][6][3]C.6}{139}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.1.4}Energy of the system}{139}{subsection.a.C.1.4}}
\newlabel{subsection:d_ON_V_2_1}{{C.1.4}{139}{Energy of the system}{subsection.a.C.1.4}{}}
\newlabel{subsection:d_ON_V_2_1@cref}{{[subsection][4][3,1]C.1.4}{139}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.7}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time.\relax }}{139}{figure.caption.73}}
\newlabel{}{{C.7}{139}{The $\mat {P}-$norms of the errors of the three agents through time.\relax }{figure.caption.73}{}}
\newlabel{@cref}{{[figure][7][3]C.7}{139}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.8}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, focused. The colour magenta is used to illustrate the threshold $\varepsilon _{\Psi }$, while cyan is used for $\varepsilon _{\Omega }$.\relax }}{139}{figure.caption.74}}
\newlabel{}{{C.8}{139}{The $\mat {P}-$norms of the errors of the three agents through time, focused. The colour magenta is used to illustrate the threshold $\varepsilon _{\Psi }$, while cyan is used for $\varepsilon _{\Omega }$.\relax }{figure.caption.74}{}}
\newlabel{@cref}{{[figure][8][3]C.8}{139}}
\@writefile{toc}{\contentsline {section}{\numberline {C.2}Test case two: two agents $-$ two obstacles}{140}{section.a.C.2}}
\csxdef {autonum@subsection:d_ON_errors_2_2Referenced}{}
\csxdef {autonum@subsection:d_ON_inputs_2_2Referenced}{}
\csxdef {autonum@subsection:d_ON_distances_2_2Referenced}{}
\csxdef {autonum@subsection:d_ON_V_2_2Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.2.1}State errors}{140}{subsection.a.C.2.1}}
\newlabel{subsection:d_ON_errors_2_2}{{C.2.1}{140}{State errors}{subsection.a.C.2.1}{}}
\newlabel{subsection:d_ON_errors_2_2@cref}{{[subsection][1][3,2]C.2.1}{140}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.9}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{140}{figure.caption.75}}
\newlabel{fig:d_ON_2_2_errors_agent_1}{{C.9}{140}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.75}{}}
\newlabel{fig:d_ON_2_2_errors_agent_1@cref}{{[figure][9][3]C.9}{140}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.10}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{140}{figure.caption.76}}
\newlabel{fig:d_ON_e2_2_errors_agent_2}{{C.10}{140}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.76}{}}
\newlabel{fig:d_ON_e2_2_errors_agent_2@cref}{{[figure][10][3]C.10}{140}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.2.2}Distances between actors}{141}{subsection.a.C.2.2}}
\newlabel{subsection:d_ON_distances_2_2}{{C.2.2}{141}{Distances between actors}{subsection.a.C.2.2}{}}
\newlabel{subsection:d_ON_distances_2_2@cref}{{[subsection][2][3,2]C.2.2}{141}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.11}{\ignorespaces The distance between the two agents over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }}{141}{figure.caption.77}}
\newlabel{fig:d_ON_2_2_distance_agents}{{C.11}{141}{The distance between the two agents over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }{figure.caption.77}{}}
\newlabel{fig:d_ON_2_2_distance_agents@cref}{{[figure][11][3]C.11}{141}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.12}{\ignorespaces The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.51$.\relax }}{141}{figure.caption.78}}
\newlabel{fig:d_ON_2_2_distance_obstacle_1_agents}{{C.12}{141}{The distance between each agent and obstacle 1 over time. The minimum allowed distance has a value of $1.51$.\relax }{figure.caption.78}{}}
\newlabel{fig:d_ON_2_2_distance_obstacle_1_agents@cref}{{[figure][12][3]C.12}{141}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.13}{\ignorespaces The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.51$.\relax }}{141}{figure.caption.79}}
\newlabel{fig:d_ON_2_2_distance_obstacle_2_agents}{{C.13}{141}{The distance between each agent and obstacle 2 over time. The minimum allowed distance has a value of $1.51$.\relax }{figure.caption.79}{}}
\newlabel{fig:d_ON_2_2_distance_obstacle_2_agents@cref}{{[figure][13][3]C.13}{141}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.2.3}Input signals}{142}{subsection.a.C.2.3}}
\newlabel{subsection:d_ON_inputs_2_2}{{C.2.3}{142}{Input signals}{subsection.a.C.2.3}{}}
\newlabel{subsection:d_ON_inputs_2_2@cref}{{[subsection][3][3,2]C.2.3}{142}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.14}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-8$ and $8$.\relax }}{142}{figure.caption.80}}
\newlabel{fig:d_ON_2_2_inputs_agent_1}{{C.14}{142}{The inputs signals directing agent 1 over time. Their value is constrained between $-8$ and $8$.\relax }{figure.caption.80}{}}
\newlabel{fig:d_ON_2_2_inputs_agent_1@cref}{{[figure][14][3]C.14}{142}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.15}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-8$ and $8$.\relax }}{142}{figure.caption.81}}
\newlabel{fig:d_ON_2_2_inputs_agent_2}{{C.15}{142}{The inputs signals directing agent 2 over time. Their value is constrained between $-8$ and $8$.\relax }{figure.caption.81}{}}
\newlabel{fig:d_ON_2_2_inputs_agent_2@cref}{{[figure][15][3]C.15}{142}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.2.4}Energy of the system}{142}{subsection.a.C.2.4}}
\newlabel{subsection:d_ON_V_2_2}{{C.2.4}{142}{Energy of the system}{subsection.a.C.2.4}{}}
\newlabel{subsection:d_ON_V_2_2@cref}{{[subsection][4][3,2]C.2.4}{142}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.16}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time.\relax }}{142}{figure.caption.82}}
\newlabel{}{{C.16}{142}{The $\mat {P}-$norms of the errors of the three agents through time.\relax }{figure.caption.82}{}}
\newlabel{@cref}{{[figure][16][3]C.16}{142}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.17}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, focused. The colour cyan is used to illustrate the threshold $\varepsilon _{\Omega }$.\relax }}{142}{figure.caption.83}}
\newlabel{}{{C.17}{142}{The $\mat {P}-$norms of the errors of the three agents through time, focused. The colour cyan is used to illustrate the threshold $\varepsilon _{\Omega }$.\relax }{figure.caption.83}{}}
\newlabel{@cref}{{[figure][17][3]C.17}{142}}
\@writefile{toc}{\contentsline {section}{\numberline {C.3}Test case three: three agents $-$ one obstacle}{142}{section.a.C.3}}
\csxdef {autonum@subsection:d_ON_errors_3_1Referenced}{}
\csxdef {autonum@subsection:d_ON_inputs_3_1Referenced}{}
\csxdef {autonum@subsection:d_ON_distances_3_1Referenced}{}
\csxdef {autonum@subsection:d_ON_V_3_1Referenced}{}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.3.1}State errors}{143}{subsection.a.C.3.1}}
\newlabel{subsection:d_ON_errors_3_1}{{C.3.1}{143}{State errors}{subsection.a.C.3.1}{}}
\newlabel{subsection:d_ON_errors_3_1@cref}{{[subsection][1][3,3]C.3.1}{143}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.18}{\ignorespaces The evolution of the error states of agent 1 over time.\relax }}{143}{figure.caption.84}}
\newlabel{fig:d_ON_3_1_errors_agent_1}{{C.18}{143}{The evolution of the error states of agent 1 over time.\relax }{figure.caption.84}{}}
\newlabel{fig:d_ON_3_1_errors_agent_1@cref}{{[figure][18][3]C.18}{143}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.19}{\ignorespaces The evolution of the error states of agent 2 over time.\relax }}{144}{figure.caption.85}}
\newlabel{fig:d_ON_3_1_errors_agent_2}{{C.19}{144}{The evolution of the error states of agent 2 over time.\relax }{figure.caption.85}{}}
\newlabel{fig:d_ON_3_1_errors_agent_2@cref}{{[figure][19][3]C.19}{144}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.20}{\ignorespaces The evolution of the error states of agent 3 over time.\relax }}{144}{figure.caption.86}}
\newlabel{fig:d_ON_3_1_errors_agent_3}{{C.20}{144}{The evolution of the error states of agent 3 over time.\relax }{figure.caption.86}{}}
\newlabel{fig:d_ON_3_1_errors_agent_3@cref}{{[figure][20][3]C.20}{144}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.3.2}Distances between actors}{145}{subsection.a.C.3.2}}
\newlabel{subsection:d_ON_distances_3_1}{{C.3.2}{145}{Distances between actors}{subsection.a.C.3.2}{}}
\newlabel{subsection:d_ON_distances_3_1@cref}{{[subsection][2][3,3]C.3.2}{145}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.21}{\ignorespaces The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }}{145}{figure.caption.87}}
\newlabel{fig:d_ON_3_1_distance_agents_12}{{C.21}{145}{The distance between agents 1 and 2 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }{figure.caption.87}{}}
\newlabel{fig:d_ON_3_1_distance_agents_12@cref}{{[figure][21][3]C.21}{145}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.22}{\ignorespaces The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }}{145}{figure.caption.88}}
\newlabel{fig:d_ON_3_1_distance_agents_13}{{C.22}{145}{The distance between agents 1 and 3 over time. The maximum allowed distance has a value of $2.01$ and the minimum allowed distance a value of $1.01$.\relax }{figure.caption.88}{}}
\newlabel{fig:d_ON_3_1_distance_agents_13@cref}{{[figure][22][3]C.22}{145}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.23}{\ignorespaces The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.01$.\relax }}{145}{figure.caption.89}}
\newlabel{fig:d_ON_3_1_distance_agents_23}{{C.23}{145}{The distance between agents 2 and 3 over time. The minimum allowed distance a value of $1.01$.\relax }{figure.caption.89}{}}
\newlabel{fig:d_ON_3_1_distance_agents_23@cref}{{[figure][23][3]C.23}{145}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.24}{\ignorespaces The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.51$.\relax }}{145}{figure.caption.90}}
\newlabel{fig:d_ON_3_1_distance_obstacle_agents}{{C.24}{145}{The distance between each agent and the obstacle over time. The minimum allowed distance has a value of $1.51$.\relax }{figure.caption.90}{}}
\newlabel{fig:d_ON_3_1_distance_obstacle_agents@cref}{{[figure][24][3]C.24}{145}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.3.3}Input signals}{146}{subsection.a.C.3.3}}
\newlabel{subsection:d_ON_inputs_3_1}{{C.3.3}{146}{Input signals}{subsection.a.C.3.3}{}}
\newlabel{subsection:d_ON_inputs_3_1@cref}{{[subsection][3][3,3]C.3.3}{146}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.25}{\ignorespaces The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }}{146}{figure.caption.91}}
\newlabel{fig:d_ON_3_1_inputs_agent_1}{{C.25}{146}{The inputs signals directing agent 1 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.91}{}}
\newlabel{fig:d_ON_3_1_inputs_agent_1@cref}{{[figure][25][3]C.25}{146}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.26}{\ignorespaces The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }}{146}{figure.caption.92}}
\newlabel{fig:d_ON_3_1_inputs_agent_2}{{C.26}{146}{The inputs signals directing agent 2 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.92}{}}
\newlabel{fig:d_ON_3_1_inputs_agent_2@cref}{{[figure][26][3]C.26}{146}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.27}{\ignorespaces The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }}{146}{figure.caption.93}}
\newlabel{fig:d_ON_3_1_inputs_agent_3}{{C.27}{146}{The inputs signals directing agent 3 over time. Their value is constrained between $-10$ and $10$.\relax }{figure.caption.93}{}}
\newlabel{fig:d_ON_3_1_inputs_agent_3@cref}{{[figure][27][3]C.27}{146}}
\@writefile{toc}{\contentsline {subsection}{\numberline {C.3.4}Energy of the system}{147}{subsection.a.C.3.4}}
\newlabel{subsection:d_ON_V_3_1}{{C.3.4}{147}{Energy of the system}{subsection.a.C.3.4}{}}
\newlabel{subsection:d_ON_V_3_1@cref}{{[subsection][4][3,3]C.3.4}{147}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.28}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time.\relax }}{147}{figure.caption.94}}
\newlabel{}{{C.28}{147}{The $\mat {P}-$norms of the errors of the three agents through time.\relax }{figure.caption.94}{}}
\newlabel{@cref}{{[figure][28][3]C.28}{147}}
\@writefile{lof}{\contentsline {figure}{\numberline {C.29}{\ignorespaces The $\bm {\mathit {P}}-$norms of the errors of the three agents through time, focused. The colour cyan is used to illustrate the threshold $\varepsilon _{\Omega }$.\relax }}{147}{figure.caption.95}}
\newlabel{}{{C.29}{147}{The $\mat {P}-$norms of the errors of the three agents through time, focused. The colour cyan is used to illustrate the threshold $\varepsilon _{\Omega }$.\relax }{figure.caption.95}{}}
\newlabel{@cref}{{[figure][29][3]C.29}{147}}