generated from byu-transpolab/template_quarto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Simulating-Incident-Management-Team-Response-and-Performance.tex
2359 lines (2047 loc) · 113 KB
/
Simulating-Incident-Management-Team-Response-and-Performance.tex
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
\documentclass[fancy, oneside, mastersfancy, ms]{byuthesis}
\usepackage{bookmark}
\usepackage{color}
\usepackage{fancyvrb}
\newcommand{\VerbBar}{|}
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]}
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}}
% Add ',fontsize=\small' for more characters per line
\usepackage{framed}
\definecolor{shadecolor}{RGB}{241,243,245}
\newenvironment{Shaded}{\begin{snugshade}}{\end{snugshade}}
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\AnnotationTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{#1}}
\newcommand{\AttributeTok}[1]{\textcolor[rgb]{0.40,0.45,0.13}{#1}}
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\BuiltInTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\CharTok}[1]{\textcolor[rgb]{0.13,0.47,0.30}{#1}}
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{#1}}
\newcommand{\CommentVarTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{\textit{#1}}}
\newcommand{\ConstantTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{#1}}
\newcommand{\ControlFlowTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\DocumentationTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{\textit{#1}}}
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\ExtensionTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.28,0.35,0.67}{#1}}
\newcommand{\ImportTok}[1]{\textcolor[rgb]{0.00,0.46,0.62}{#1}}
\newcommand{\InformationTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{#1}}
\newcommand{\KeywordTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\NormalTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\OperatorTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{#1}}
\newcommand{\OtherTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\PreprocessorTok}[1]{\textcolor[rgb]{0.68,0.00,0.00}{#1}}
\newcommand{\RegionMarkerTok}[1]{\textcolor[rgb]{0.00,0.23,0.31}{#1}}
\newcommand{\SpecialCharTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{#1}}
\newcommand{\SpecialStringTok}[1]{\textcolor[rgb]{0.13,0.47,0.30}{#1}}
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.13,0.47,0.30}{#1}}
\newcommand{\VariableTok}[1]{\textcolor[rgb]{0.07,0.07,0.07}{#1}}
\newcommand{\VerbatimStringTok}[1]{\textcolor[rgb]{0.13,0.47,0.30}{#1}}
\newcommand{\WarningTok}[1]{\textcolor[rgb]{0.37,0.37,0.37}{\textit{#1}}}
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}\usepackage{longtable,booktabs,array}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\usepackage{graphicx}
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
\makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in \includegraphics[width, height, ...]{}
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
% Set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
\makeatother
\newlength{\cslhangindent}
\setlength{\cslhangindent}{1.5em}
\newlength{\csllabelwidth}
\setlength{\csllabelwidth}{3em}
\newlength{\cslentryspacingunit} % times entry-spacing
\setlength{\cslentryspacingunit}{\parskip}
\newenvironment{CSLReferences}[2] % #1 hanging-ident, #2 entry spacing
{% don't indent paragraphs
\setlength{\parindent}{0pt}
% turn on hanging indent if param 1 is 1
\ifodd #1
\let\oldpar\par
\def\par{\hangindent=\cslhangindent\oldpar}
\fi
% set entry spacing
\setlength{\parskip}{#2\cslentryspacingunit}
}%
{}
\usepackage{calc}
\newcommand{\CSLBlock}[1]{#1\hfill\break}
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}}
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break}
\newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{array}
\usepackage{multirow}
\usepackage{wrapfig}
\usepackage{float}
\usepackage{colortbl}
\usepackage{pdflscape}
\usepackage{tabu}
\usepackage{threeparttable}
\usepackage{threeparttablex}
\usepackage[normalem]{ulem}
\usepackage{makecell}
\usepackage{xcolor}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{array}
\usepackage{multirow}
\usepackage{wrapfig}
\usepackage{float}
\usepackage{colortbl}
\usepackage{pdflscape}
\usepackage{tabu}
\usepackage{threeparttable}
\usepackage{threeparttablex}
\usepackage[normalem]{ulem}
\usepackage[utf8]{inputenc}
\usepackage{makecell}
\usepackage{xcolor}
\makeatletter
\makeatother
\makeatletter
\@ifpackageloaded{bookmark}{}{\usepackage{bookmark}}
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\AtBeginDocument{%
\ifdefined\contentsname
\renewcommand*\contentsname{Table of contents}
\else
\newcommand\contentsname{Table of contents}
\fi
\ifdefined\listfigurename
\renewcommand*\listfigurename{List of Figures}
\else
\newcommand\listfigurename{List of Figures}
\fi
\ifdefined\listtablename
\renewcommand*\listtablename{List of Tables}
\else
\newcommand\listtablename{List of Tables}
\fi
\ifdefined\figurename
\renewcommand*\figurename{Figure}
\else
\newcommand\figurename{Figure}
\fi
\ifdefined\tablename
\renewcommand*\tablename{Table}
\else
\newcommand\tablename{Table}
\fi
}
\@ifpackageloaded{float}{}{\usepackage{float}}
\floatstyle{ruled}
\@ifundefined{c@chapter}{\newfloat{codelisting}{h}{lop}}{\newfloat{codelisting}{h}{lop}[chapter]}
\floatname{codelisting}{Listing}
\newcommand*\listoflistings{\listof{codelisting}{List of Listings}}
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\@ifpackageloaded{subcaption}{}{\usepackage{subcaption}}
\makeatother
\makeatletter
\@ifpackageloaded{tcolorbox}{}{\usepackage[skins,breakable]{tcolorbox}}
\makeatother
\makeatletter
\@ifundefined{shadecolor}{\definecolor{shadecolor}{rgb}{.97, .97, .97}}
\makeatother
\makeatletter
\makeatother
\makeatletter
\makeatother
\title{Simulating Incident Management Team Response and Performance}
\author{Daniel Jarvis}
% On the custom title page, use the same title, but format as you like
\customtitle{Simulating Incident Management Team Response and
Performance}
% This is the date of graduation
\date{2023-06-25}
% If your degree is not a PhD or MS, then you can overwrite the degree using
% the \degree command: \degree{Bachelors of Basics}
% Your department
\department{Civil and Construction Engineering}
% The names of your committee members
\committeechair{Gregory S. Macfarlane}
\committeemember{Grant G. Schultz}
\committeemember{Gustavious P. Williams}
\keywords{
Incident Management Teams; Incident Simulation;
Transportation Modeling
}
\begin{document}
\frontmatter
\titlepage
\cleardoublepage
\customtitlepage
\cleardoublepage
\begin{abstract}
The effectiveness of Incident Management Teams (IMT) in reducing the
duration and impact of traffic incidents is well-documented. The
capacity of large-scale simulation models to illustrate the negative
effects of these incidents on vehicle delays and excess user costs (EUC)
is also widely recognized. However, there is a gap in research
integrating large-scale simulation modeling with IMT performance
analysis. This study uses the Multi Agent Transport Simulation (MATSim)
framework to simulate the impact of incidents and evaluate the
performance of IMT across the regional network of Utah's Wasatch Front,
analyzing their operation in various hypothetical situations.
Our findings validate the role of IMT in decreasing delays and EUC. The
simulation also investigates the potential effects of increased incident
frequency and IMT expansion, revealing that more incidents increased
delays, whereas additional IMT units can mitigate these effects and
improve response times.
The MATSim model we developed demonstrates the potential of dynamic
large-scale modeling to evaluate incident management strategies in ways
that previous studies did not. This model could serve as a valuable tool
for further evaluating the performance of Utah's IMT program, with the
potential to offer new perspectives on optimizing team deployment and
scheduling efficiency.
\end{abstract}
\cleardoublepage
\begin{acknowledgments}
I want to extend my gratitude to the Utah Department of Transportation
for their substantial financial backing, which was essential for the
completion of my research and thesis project. I am equally grateful to
the technical advisory committee, whose expert guidance and invaluable
feedback were essential throughout my research endeavor. Their in-depth
understanding of Utah's traffic incident management programs was a
crucial contributor to the successful outcome of this study.
My sincere thanks are extended to my fellow research assistants at
BYU---Joel Hyer, Harrison Holdsworth, and Brynn Woolley. Joel's
insightful analysis and the vital data he provided from the IMT
Performance Phase III project were indispensable. Harrison's
wide-ranging input, from his diligent compilation of research on IMT
optimization to his collaborative efforts in drafting the literature
review, proved instrumental. His ability to seamlessly connect Joel's
work with my research was invaluable. Brynn's expertise in developing
the transportation model, her astute analysis of its findings, and her
assistance in refining and editing this report added significantly to
the quality of my work.
Profound appreciation is due to my faculty advisors and the members of
my thesis committee, Drs. Macfarlane, Schultz, and Williams, for their
unwavering support. I am particularly indebted to Dr.~Macfarlane for his
exceptional mentorship as an advisor, educator, and friend. His
patience, wisdom, and encouragement have been instrumental at every
stage of my academic journey. His faith in me and consistent support
have been the pillars of my personal development and the achievements of
this research.
Lastly, I offer thanks to my parents, Duane and Jodi Jarvis, for their
steadfast encouragement and belief in me throughout my academic
pursuits. Their encouragement and reassurance have been a source of
immense strength, especially during this significant stage of my life. I
am forever grateful for the stability and unwavering support they have
so selflessly provided.
\end{acknowledgments}
\cleardoublepage
\tableofcontents*
\cleardoublepage
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\mainmatter
\bookmarksetup{startatroot}
\hypertarget{introduction}{%
\chapter{Introduction}\label{introduction}}
\footnote{This is a draft of a manuscript, authored by Jarvis,
Macfarlane, Woolley, and Schultz. It is prepared to be submitted to
the Transportation Research Part C. Any use of the pronoun `we' in
this document refers collectively to the research team, all of whom
will be listed as authors upon the manuscript's publication as an
article.} Incident Management Teams (IMTs) are service vehicles that
collaborate with highway patrol units to manage traffic after an
incident and provide timely roadside assistance. They are strategically
important for improving highway operations, particularly during peak
traffic times, helping to effectively alleviate congestion and
associated user costs. Capable of quickly addressing a range of
incidents from minor vehicle breakdowns to severe multi-car collisions,
IMTs are crucial in controlling traffic and restoring normal flow on the
roadways.
States like Utah have long benefited from IMT programs, witnessing
notable reductions in congestion and traffic-related costs (Bennett et
al., 2022). The effectiveness of IMTs, influenced by factors such as
response times (Bennett et al., 2021), fleet size (Kim et al., 2012),
and deployment locations (Ozbay et al., 2013), is well-documented.
However, the current understanding primarily stems from ad-hoc models
and independent initiatives, leaving a gap in regional-scale traffic
delay modeling associated with incident management.
A study by Kaddoura \& Nagel (2018) highlights the efficacy of
large-scale traffic models in evaluating regional incident impacts,
showing increases in congestion and travel times in a simulated network.
However, it doesn't assess the effects of IMT strategies. Our research
aims to fill this gap by integrating IMT data into a large-scale
regional traffic model, focusing on the impacts of traffic incidents and
IMT interventions within such a simulated network.
In this research, we present a model of IMT responses to incidents on
freeways in the Wasatch Front region of Utah. The model uses the Multi
Agent Transportation Simulation (MATSim) framework to evaluate IMT
effectiveness within various traffic incident scenarios. After
conducting 60 simulations, we compared their outcomes and evaluated the
effectiveness of IMTs at improving traffic conditions and reducing
congestion.
The paper proceeds in a typical order.
\protect\hyperlink{sec-literature}{The literature review} contains a
discussion of previous research into IMT effectiveness and optimization.
The \protect\hyperlink{sec-methods}{methodology section} describes the
simulation and scenario construction, while
\protect\hyperlink{sec-results}{the results} present the findings of the
analysis alongside a discussion of their implications. The paper's
\protect\hyperlink{sec-conclusions}{conclusions} provide an outline of
future research motivated by this study's limitations.
\bookmarksetup{startatroot}
\hypertarget{sec-literature}{%
\chapter{Literature Review}\label{sec-literature}}
Traffic incident management in general---and IMTs in particular --- are
not strictly new innovations. The Federal Highway Administration (FHWA)
publishes the \emph{Traffic Incident Management Handbook} (Owens et al.,
2010), which defines traffic incident management as:
\begin{quote}
\emph{The systematic, planned, and coordinated use of human,
institutional, mechanical, and technical resources to reduce the
duration and impact of incidents and improve the safety of motorists,
crash victims, and incident responders (Owens et al., 2010, pp. 1--1).}
\end{quote}
\noindent The handbook details the process of how to implement a traffic
incident management program as well as improve it. The manual covers
various aspects of incident management, including the responsibilities
of emergency medical teams, law enforcement, and other responding
entities. For this research, we focus on the dedicated traffic incident
management teams operated by departments of transportation or similar
agencies and not on other types of first responders.
FHWA has established performance measures to develop a framework to
quantify improvements to IMT operations (Owens et al., 2010). A specific
measure related to this research is roadway clearance time (RCT): the
time between the first recordable awareness of the incident and the time
all lanes open for traffic flow. Numerous studies have assessed the
impact of Traffic Incident Management programs on traffic conditions,
utilizing the performance measures provided by FHWA. A particularly
noteworthy study conducted by Hadfield et al. (2021) explores the
relationship between IMT response time (RT) and RCT. This research
leveraged interconnected data from the Utah Department of Transportation
(UDOT) and the Utah Highway Patrol (UHP), aiming to quantify the traffic
improvements resulting from swift IMT interventions at incident sites.
Analyzing 63 incidents, the study found that a one-minute delay in IMT
response correlated with a 0.8-minute increase in RCT. This delay also
impacted an additional 93 vehicles, added roughly 34.6 minutes to the
network's total estimated travel time, and resulted in an extra \$925 in
excess user costs (EUC). Hadfield et al. (2021) established a clear
connection between timely IMT responses and improved traffic conditions,
highlighting the importance of rapid intervention.
Skabardonis (1998) confirmed the effectiveness of IMTs in their study,
concluding that IMTs in California effectively reduced incident RT and
EUC. Skabardonis (1998) found that, on average, total incident RT was 15
minutes longer when California Highway Patrol responded without the
support of IMTs. Using a system to assign a cost per traveler per unit
of time to vehicles in the observed area, the authors determined that
IMT units had a cost-to-benefit ratio of 5:1. They also concluded that
patrol officers spent less time on incidents (including vehicle
breakdowns) when assisted by IMT services.
\hypertarget{sec-lit_imt_opt}{%
\section{IMT Optimization}\label{sec-lit_imt_opt}}
Given the evidence that IMT programs improve traffic conditions and
reduce costs for government entities and individuals, it becomes crucial
to further research avenues to maximize these benefits. One possible
strategy is the strategic placement of IMT units, optimizing their
spatial effectiveness to enhance their impact. Enhancing IMT programs
often focuses on the precise deployment of individual units and the
strategic positioning of IMT depots---locations where inactive teams
await dispatch. For scenarios where IMT vehicles are actively on patrol,
research often concerns designing an efficient service area. Various
methodologies have been applied to tackle this allocation challenge.
While some studies employ statistical models, incorporating a range of
variables to maximize specific performance measures, others opt for
digital modeling as a solution.
For instance, Ozbay et al. (2013) designed a mixed-integer programming
model with probabilistic constraints to optimize the allocation of IMTs
across ``depots'' or staging areas in New Jersey. This innovative
approach, grounded in known probabilities of various incident types,
strategically positions IMT units to respond to incidents, taking into
account future probabilities on the network. The primary goals were to
minimize incident management costs and maximize the likelihood that
every incident receive assistance. The model was applied to a simplified
New Jersey highway network, utilizing traffic incident data from the
region to inform demand distribution. Through this application, an
optimal number of depots and IMT assignments were determined. However,
the lack of a comparative analysis with pre-existing depot and unit
distributions meant that the exact improvements yielded by the model
remained unquantified.
Where Ozbay et al. (2013) focused on optimizing the IMT allocation in
specific zones, others have researched their effectiveness as roaming
entities. Lou et al. (2011) developed a mixed-integer nonlinear
optimization model and proposed different algorithms to minimize the RT
of IMTs. They modeled IMTs within specific freeway sections, and
incident frequencies were generated randomly on the network, given the
mean and standard deviations of incident occurrence on each link in the
network. The study focused on developing and optimizing these algorithms
for broad implementation rather than focusing on any particular network
or reducing response times in specific areas. They implemented a
template Sioux Falls network into the model as a practical
demonstration. Compared to the existing deployment plan in Sioux Falls,
the algorithm-generated plans could potentially reduce total RT by
16.5-20.8\%.
Each of the studies mentioned attempts to understand optimal IMT
deployment based on ad-hoc models, specially constructed utility
functions, or similar stand-alone efforts. While their results provide
valuable insights, they might be limited in their scope, as they do not
explicitly attempt to model the traffic delay associated with incident
management at a large scale. Research modeling the effects of incidents
on region-scale traffic networks is a recent innovation, providing a
more holistic view of their impact. This approach is potentially
beneficial for comprehensively assessing the effectiveness of IMT and
paves the way for our subsequent discussion in
\protect\hyperlink{sec-inc_modeling}{incident modeling}, where we will
discuss the advancements and applications of this innovative research
domain.
\hypertarget{sec-inc_modeling}{%
\section{Incident Modeling}\label{sec-inc_modeling}}
The majority of traffic models used to study the impacts of incidents
and incident management are Dynamic Traffic Assignment (DTA) models.
These models demonstrate how congestion and travel times fluctuate over
time, varying for different vehicles (Chiu et al., 2011). The capability
to represent travel time variance make DTA models particularly
advantageous for depicting the unpredictability of incidents. A study
conducted by Sisiopiku et al. (2007), which explored the effects of
congestion, underscored the applications of simulation-based DTA
modeling in incident management. It advocated for dynamic assignment as
the optimal approach for incident modeling. Sisiopiku et al. (2007)
describes their methodology as follows:
\begin{quote}
\emph{The overall approach in this study is to use the DTA capabilities
to support decision-making for incident management. DTA is particularly
appropriate for studying short-term planning applications such as
evaluating various incident management options (Sisiopiku et al., 2007,
p. 111).}
\end{quote}
In their study, Sisiopiku et al. (2007) employed a DTA model to
understand the impacts of diverse incident scenarios and to assess the
effectiveness of potential incident management strategies and traffic
control methods. The research commenced with a baseline scenario under
standard conditions, establishing a reference point for evaluating
incident impacts. Subsequent scenarios simulated incidents without
notifying drivers, with variations in the duration and severity of the
incidents. The final scenario replicated the previous one but
incorporated information provision to drivers, enabling them to optimize
their routes and access preplanned diversion paths, with guidance from
Variable Message Signs. Conducted in Birmingham and Chicago, the study
illustrated that post-incident information provision could result in
travel time savings and reduced traffic delays, highlighting the DTA
model's utility in simulating the effects of incidents and evaluating
traffic management and control strategies.
The Sisiopiku et al. (2007) study used the Visual Interactive System for
Transport Algorithms (VISTA) as their specific modeling tool. Despite
its efficacy, VISTA was critiqued by Wirtz et al. (2005) for its
inherent assumption that all drivers have perfect travel time
information for routing to the optimal path. For example, the Sisiopiku
et al. (2007) study assumed a 100\% compliance rate with the provided
diversion routes in their model. However, the research by Wirtz et al.
(2005) revealed that ``less-informed drivers spend more time traveling
than necessary, representing a departure from the user-optimal traffic
conditions simulated by VISTA.'' (Wirtz et al., 2005) This critique does
not invalidate the findings of Sisiopiku et al. (2007) but highlights
the limitations of VISTA in reflecting real-world travel behavior.
VISTA is categorized as a large-scale, or mesoscopic, model suitable for
modeling extensive networks. Conversely, small-scale, or microscopic,
models, capable of tracking precise vehicle locations, driver behavior,
and vehicle characteristics, offer a highly realistic representation but
are impractical for large regions (Chiu et al., 2011). In Australia, Dia
\& Cottman (2006) used a simulation model, VISSIM, to assess the impacts
of incident management on two arterial routes connecting the western
suburbs of Brisbane to the Central Business District. Although VISSIM is
a primary traffic modeling tool for UDOT, its detailed precision renders
it impractical for modeling incidents and IMT impacts along the Wasatch
Front. Given this research's scope, a large-scale dynamic model would
likely be the most suitable choice.
Interestingly, Pal \& Sinha (2002) developed a model to replicate the
impacts of incidents and IMTs on traffic conditions in Indiana utilizing
overall traffic conditions as the performance indicator for IMT
effectiveness. Various configurations of response vehicles were
simulated, incorporating probability distributions of crash data,
vehicle speed, and roadway carrying capacity. The study's results
informed recommendations on fleet size, operation hours, patrol area
design, and dispatching policy improvements. However, since mesoscopic
traffic simulations in 2002 could not simulate incident response units,
Pal \& Sinha (2002) had to create their model from scratch.
Unfortunately, their model and methodology seem tailored specifically
for their study and may not be applicable to this project's context.
Similar to VISTA, MATSim, the Multi Agent Transport Simulation toolkit,
stands as another large-scale modeling system that has proven effective
in conducting large-scale incident simulations. While VISTA and MATSim
both have the capability to simulate the regional impact of traffic
incidents, MATSim presents attributes that could potentially offer a
more accurate representation of real-world scenarios and driver
behaviors. Also, contrary to the model crafted by Pal \& Sinha (2002),
MATSim operates as an open-source framework, making it ideal for
adapting to different scenarios. Notably, MATSim facilitates the
integration of real world data, enhancing the authenticity and precision
of network simulations. This capability is particularly pertinent to
this project, as prior research conducted by Schultz et al. (2023) has
made recent UDOT incident and IMT data available, which could be
integrated into the simulation model for more robust and realistic
results. Although MATSim has been employed to assess network impacts of
incidents, its application in incident management studies remains
largely unexplored, presenting an opportunity for further investigation
and potential breakthroughs in the field.
Kaddoura \& Nagel (2018) conducted a comprehensive study on incident
modeling using MATSim, representing transport users as individual agents
within an iterative framework that allows for adjustments to travel
plans both within and between iterations. They accessed incident data,
including Traffic Message Channel (TMC) information detailing cause and
severity, via the HERE application programming interface. This rich
dataset enabled the classification of incidents as either long-term,
such as multiple-day lane closures, or short-term, affecting transport
supply for less than a day. Applying their model to an inner-city
network in Berlin, Germany, Figure \ref{fig-berlin-cap} illustrates the
modeled incident severities.
\begin{figure}
\centering
\includegraphics{figures/berlin_capacity.png}
\caption[Traffic incidents mapped on the Berlin network.]{Traffic incidents mapped on the Berlin network (Kaddoura \& Nagel, 2018).}
\label{fig-berlin-cap}
\end{figure}
Kaddoura \& Nagel (2018) found that long-term traffic incidents increase
traffic congestion and the average car travel time by 313 sec (+18\%)
per trip. Short-term traffic incidents increase the average travel time
per car trip by another 136 sec (+8\%). Additionally, they found that
for 44\% of all car trips, the agent's transport route contained at
least one road segment for which the capacity or speed limit was reduced
because of an incident. Their study concluded that networks in which
transport users had high levels of knowledge about the incidents and
resulting traffic congestion still experienced an increase in travel
time caused by long and short-term incidents. Finally, the authors
asserted that ``accounting for traffic incidents makes the model more
realistic, allowing for an improved policy investigation'' (Kaddoura \&
Nagel, 2018, p. 885). The modeling performed by Kaddoura \& Nagel (2018)
is just one example of research on MATSim's capacity for incident-based
simulations.
A MATSim incidents model developed by Li \& Ferguson (2020) included
various rescheduling options, such as departure time, mode choice, and
trip cancellation. Their simulation found that if travelers received
notice of an incident, they would either depart early from their place
of origin or switch to public transport (Li \& Ferguson, 2020). The
process proposed by Li and Ferguson is beneficial because it allows
agents to reassess their mode choice or route assignment based on the
notice of a reported incident. Li and Ferguson show that users care
about total travel time and travel time variability (risk tolerance to a
certain degree). Receiving notifications about incidents by agents
impacted both travel time and mode choice. They concluded that ``the
provision of real-time traffic information is a useful approach to
mitigating the side-effects of incidents through helping transport users
efficiently adapt their day plans'' (Li \& Ferguson, 2020, p. 96).
Additionally, they found that ``most of the travelers notified of being
affected by incidents are simulated to depart early or switch to public
transport, which effectively reduces the average travel time delay
caused by disruptions'' (Li \& Ferguson, 2020, p. 96). Their findings
validate the conclusions of Sisiopiku et al. (2007) that making incident
information available to agents leads to decreases in travel time and
congestion.
This subsection highlights the capabilities of DTA models to simulate
the complexities of traffic incidents, congestion, and travel times. It
highlights how incorporating incident management responses into the
models would enhance their ability to simulate realistic traffic
conditions and support policy analysis. Given its capacity to model
large-scale networks, integrate real-world data, and replicate realistic
driver behavior, MATSim is deemed particularly suitable for this
project.
\hypertarget{sec-lit_summary}{%
\section{Summary}\label{sec-lit_summary}}
This \protect\hyperlink{sec-literature}{literature review} summarizes
extensive research on IMTs role in reducing RCT and EUC during incidents
and optimizing their size and distribution. However, it reveals a gap:
these performance studies do not explore the broader impact of incidents
and IMT responses on large-scale networks. Similarly, while DTA modeling
studies assess incident impacts on network dynamics and driver behavior,
they seldom consider IMT influence. This gap limits understanding of
IMTs' effectiveness in congested networks. Our research aims to
integrate these areas, modeling incident response within a simulation to
evaluate IMT deployment strategies and effectiveness more
comprehensively.
\bookmarksetup{startatroot}
\hypertarget{sec-methods}{%
\chapter{Methodology}\label{sec-methods}}
As highlighted in the \protect\hyperlink{sec-literature}{literature
review}, there is substantial evidence indicating that IMTs can
effectively reduce RCT and EUC following traffic incidents.
Additionally, the effectiveness of DTA models in analyzing the impact of
such incidents has been well-documented. However, there is a lack of
comprehensive research evaluating IMTs impact on entire traffic networks
and their associated agents. To address this gap, it is necessary that
we develop a model capable of simulating both traffic incidents and the
ensuing IMT interventions, with the objective of gauging the efficiency
of IMT deployments. Due to its proficiency in regional-scale incident
simulation and its authentic portrayal of driver behavior, MATSim has
been identified as the most suitable model for this research. This
section describes the methodology, expounding on the model's
capabilities, the requisite data inputs, and the benchmarks established
for determining IMT effectiveness.
Our methodology is structured around three main components: the
functionality of the MATSim model, the setup of IMT vehicles and
incidents, and the scenarios for comparative analysis. In the
\protect\hyperlink{sec-MATSim_mod}{model design} subsection we describe
the structure of the model and the functions it uses to represent
incidents and IMT response. In \protect\hyperlink{sec-model_imp}{model
implementation} subsection we outline the data structure of the model by
describing the \protect\hyperlink{sec-IMT_setup}{setup of IMTs} and
explaining our \protect\hyperlink{sec-inc_data}{incident data and
sampling} methods. We conclude by describing the
\protect\hyperlink{sec-scenarios}{scenarios} we used for evaluating the
impact of incidents and IMTs.
\hypertarget{sec-MATSim_mod}{%
\section{Model Design}\label{sec-MATSim_mod}}
MATSim is an open-source framework used for conducting extensive,
agent-based transportation simulations on a large scale. Operating as a
dynamic traffic simulation, it is often used in demand modeling and
agent-based mobility analysis (Dobler et al., 2012). Thanks to its
open-source architecture, MATSim enables the seamless integration of a
diverse array of modules and packages into its models. Users across the
platform can create, import, and modify these components, fostering a
collaborative and innovative environment.
For the purposes of our research, we developed the ImtModule, a
specialized MATSim extension designed to process incidents and IMT
responses within the simulation. This module leverages existing research
on incident simulation, Demand Rapid Transit (DRT), event handling, and
vehicle dispatch algorithms, building upon these foundations to enhance
the functionality of our model.
In this section, we describe some of the specific tools within MATSim
that we used and adapted to construct a comprehensive and functional
model. These tools include \protect\hyperlink{sec-MATSim_score}{scoring
and replanning}, \protect\hyperlink{sec-NCE}{network change events}, and
\protect\hyperlink{sec-imt_response}{IMT assignment}. Together, they
contribute to the authenticity and precision of our traffic simulations,
particularly in the context of responding to roadway incidents, ensuring
that our model provides accurate and reliable results.
\hypertarget{sec-MATSim_Score}{%
\subsection{Scoring and Replanning}\label{sec-MATSim_Score}}
In MATSim, each individual within the simulation is called an agent.
These agents follow daily schedules, partaking in various activities and
modes of travel. Their actions are evaluated using a point system, which
takes into account the specifics of their travel, as highlighted by
Nagel et al. (2016). Timely arrivals at destinations are rewarded with
positive points, whereas delays result in deductions. Furthermore,
different transportation modes are assigned utility scores, which play a
crucial role in shaping the agents' travel preferences and decisions.
Each agent possesses a memory that stores plans from a certain number of
iterations, as well as replanning strategies that dictate how agents can
adjust their plans from iteration to iteration (Horni \& Nagel, 2016).
The size of an agent's memory is typically dependent on the size of the
model being run. In the case of our large-scale Utah model, we opted to
limit the agents' plan memory to just five iterations. The replanning
strategies used include selecting the plan with the highest score 80\%
of the time, opting to reroute 10\% of the time, and adjusting activity
timings for the remaining 10\%. Our selection for the remaining scoring
and replanning parameters drew from the incident research conducted by
Kaddoura \& Nagel (2018).
As will be detailed in the \protect\hyperlink{sec-model_imp}{model
implementation} subsection, the plans file used to generate simulations
in MATSim was exceptionally large, encompassing travel data for over 2
million agents. Our objective, utilizing the complete plans file, was to
guide the simulated agents toward an equilibrium in travel behavior. To
achieve this, we employed the following methodology:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
We processed both the network and plans files over the course of 350
simulated iterations without any incidents or IMTs included.
\item
Using the output from this preliminary scenario, we established a `hot
start' for the subsequent scenarios incorporating incidents and IMT
responses. At this stage, a significant portion of agents had already
identified efficient travel routes to their destinations. This
preliminary phase of running the plans file was intended to expedite
the convergence towards a balanced state in travel behavior for
scenarios that included incidents and IMT responses.
\item
To achieve equilibrium in travel behavior, we conducted an additional
100 iterations in the simulations that accounted for incidents and IMT
responses, ensuring a more comprehensive stabilization across the
majority of scenarios.
\end{enumerate}
Figure~\ref{fig-score-output} presents a MATSim scoring output from a
scenario incorporating incidents and IMT responses. The figure indicates
notable plan adjustments and corresponding score changes during the
first 60 iterations. As the simulation progressed, the executed scores
started to stabilize. To minimize the potential for significant
variance, replanning was disabled after the 85th iteration. This
approach ensures that the final iterations, which are critical for
scenario analysis, reflect a steady state.
\begin{figure}
{\centering \includegraphics{03_methods_files/figure-pdf/fig-score-output-1.pdf}
}
\caption{\label{fig-score-output}MATSim scoring statistics output
example.}
\end{figure}
\hypertarget{sec-NCE}{%
\subsection{Network Change Events}\label{sec-NCE}}
Within a MATSim network, each link is characterized by specific
attributes such as type, length, number of lanes, free-flow speed, and
capacity. To effectively simulate unexpected events and their subsequent
impacts on traffic flow, it is essential to dynamically adjust these
attributes. This capability, termed a Time-Dependent Network, is
explained in the MATSim textbook (Rieser et al., 2016) and is vital for
ensuring the realism and accuracy of our simulation.
Network Change Events (NCEs) serve as the mechanism within MATSim for
modifying network attributes at precise moments during a simulation.
Detailed in Section 6.1 of the MATSim textbook (Rieser et al., 2016),
the implementation of NCEs requires specific adjustments to the MATSim
configuration file to facilitate a time-variant network. These events
can modify a link's free-flow speed, number of lanes, or capacity. To
initiate an NCE, the system requires specific information including the
time of the event \texttt{startTime}, the affected link(s)
\texttt{link\ refID}, the type of change \texttt{free-flow\ speed},
\texttt{lanes}, or \texttt{capacity}, and the value of the change. NCE
are the tools used in this study to demonstrate the impact of both
incidents and IMT arrivals. The code used to implement NCEs is outlined
in the \protect\hyperlink{sec-apend_nce}{network change events section}
of the appendices.
\hypertarget{sec-imt_response}{%
\subsection{IMT Assignment and Response}\label{sec-imt_response}}
Within MATSim, the deployment of one or more IMTs is triggered by the
occurrence of an incident. The optimal IMT for the situation is
determined using a least-cost path algorithm, which calculates the
quickest route based on real-time traffic conditions like congestion and
link speeds. The IMT that can reach the incident location the fastest,
accounting for current roadway speeds and congestion, is then
dispatched. If all IMT are occupied at the time of an incident, the
algorithm waits until an IMT becomes available and then dispatches it to
the site of the incident. The dispatch algorithm and code are outlined
in the \protect\hyperlink{sec-imt_dispatch}{IMT dispatch section} of the
appendices.
When an IMT arrives at an incident within MATSim, an NCE is activated by
an event handler, a MATSim tool that logs simulation events as they
occur. This NCE demonstrates the IMT's impact by restoring 25\% of the
link's capacity that was reduced due to the incident. The arrival of
each additional IMT unit contributes another 25\% to the link's
capacity. This approach to capacity adjustment is based on our incident
database, which primarily includes incidents where IMTs were deployed;
in contrast, data on incidents without IMT responses was limited.
Therefore, the model assumes that IMT involvement leads to capacity
improvement, rather than estimating RCT in the absence of IMT
intervention. After consultation with UDOT and UHP, we determined that a
25\% capacity restoration by each IMT unit is a reasonable estimate for
our study, despite the lack of detailed research on the specific effects
of IMTs on roadway capacity restoration.
Figure~\ref{fig-imt-capacity-restore} illustrates the impact of traffic
incidents on road capacity within the model, emphasizing the role of
IMTs in mitigating this impact. The figure presents a scenario where an
incident causes a reduction in a road link's capacity to 20\% for a
duration of 60 minutes. Without any IMT intervention, this diminished
capacity level would persist for the entire incident. However, the
scenario changes with IMT involvement. The arrival of the first IMT 15
minutes after the incident boosts the link's capacity by 20\%, raising
it to 40\%. If a second IMT team arrives 30 minutes after the incident
begins, it provides an additional increase of 15\%, enhancing the link's
operating capacity to 55\% for the duration of the incident. Full
capacity is restored after the incident concludes. This visualization
demonstrates the role of IMTs in restoring capacity after incidents and
maintaining more efficient traffic flow during such events.
\begin{figure}
{\centering \includegraphics{03_methods_files/figure-pdf/fig-imt-capacity-restore-1.pdf}
}
\caption{\label{fig-imt-capacity-restore}IMT capacity restoration upon
arrival example.}
\end{figure}
\hypertarget{sec-model_imp}{%
\section{Model Implementation in Utah}\label{sec-model_imp}}
To run the MATSim model with the ImtModule extension, a number of input
resources are necessary. For the model to function properly, the
following are needed:
\begin{itemize}
\tightlist
\item
A plans file detailing the agents to be modeled, as well as their
activity.
\item
A network file with interconnected links, enabling travel for the
agents specified in the plans file.
\item
A configuration file outlining the scoring metrics of the simulation
and establishing parameters pertaining to agent and IMT travel
patterns.
\item
An IMT file outlining the IMTs starting locations and hours of
operation.
\item
An incidents file containing the necessary data to randomly effect
NCEs throughout the simulation.
\end{itemize}
The network and plans files used in this research were developed and
calibrated by Macfarlane \& Lant (2023) and Day et al. (2023) as part of
their research projects studying accessibility and ride-hailing
throughout the Wasatch Front. The configuration file used in the model
was adapted from the Kaddoura \& Nagel (2018) file, which was used for
their MATSim incident analysis study. It was slightly modified to
accommodate the IMT development, but the parameters they set were
largely left unaltered. The IMT file was produced using data provided by
UDOT and UHP, as outline in the \protect\hyperlink{sec-MATSim_mod}{IMT
setup} subsection. The incident data was compiled by Schultz et al.
(2023) in his research of IMT performance measures and is explained in
the \protect\hyperlink{sec-inc_data}{incident data and sampling}
subsection.
\hypertarget{sec-IMT_setup}{%
\subsection{IMT Setup}\label{sec-IMT_setup}}
The data provided by UHP details the operations of IMTs in the Wasatch
Front for June 6th, 2023, representing their typical weekday activities.
This schedule highlights the working hours and coverage of a fleet
comprising 20 IMT units, spread across three zones: Davis, Salt Lake,
and Utah counties. In this distribution, Salt Lake County is assigned 10
IMT units, while Davis and Utah counties receive 5 each. We will refer
to this 20-unit configuration as the existing or current fleet in our
simulations. To explore the impact of an expansion, we propose a
scenario with an additional 10 IMT units, creating a 30-unit fleet
termed the new or increased IMT fleet. These extra units are
strategically placed within each county to ensure even coverage.
Figure~\ref{fig-IMT-Map} visually represents the county boundaries and
the initial positions of both the existing and proposed new IMT vehicles
in our simulation.
\begin{figure}
{\centering \includegraphics{figures/imt_gray_map.png}
}
\caption{\label{fig-IMT-Map}IMT starting locations example map.}
\end{figure}
Figure~\ref{fig-IMT-Map} uses circles to mark the locations of existing
IMT vehicles and stars for the proposed additions. We positioned these
units strategically along major highways to achieve a balanced
distribution of IMTs across each county. While this initial setup
doesn't mirror the real-world scenario where drivers begin their shifts
from home, it serves as a practical model for our simulations. The
frequency of IMT operations on major highways like I-15, I-80, and
I-215, along with the variable real-world starting points, justifies
this strategic alignment along key routes. Typically, IMT vehicles do
not cross county borders as dispatch services are organized by county.
However, in our MATSim network, vehicles can cross into other counties
depending on incident proximity. IMTs follow specific operational
shifts, which we've programmed into MATSim to reflect their
availability. In Utah, these often include a morning shift starting at
6:00 AM and an evening shift ending at 10:30 PM.
Figure~\ref{fig-IMT-Map} also illustrates the IMT distribution during
the evening shift, but it's important to note that this pattern is
generally consistent during the morning shift as well.
Our research primarily concentrates on evaluating the potential impacts
of expanding the IMT fleet, rather than examining the effects of their
starting positions. We hypothesize that increasing the number of IMTs,
assuming uniform distribution, will enhance their overall effectiveness.
\hypertarget{sec-inc_data}{%
\subsection{Incident Data and Sampling}\label{sec-inc_data}}
In their concurrent IMT research, Schultz et al. (2023) developed a
comprehensive dataset of incidents requiring management intervention,
derived from data provided by UHP. Analyzing data from 2018 to 2022,
they identified 1,604 incidents over 184 days that required the
assistance of either IMTs or UPH. This dataset is useful in
understanding the frequency of daily incidents in the Wasatch Front that
necessitate incident management intervention.
Figure~\ref{fig-incident-sampling-plot} illustrates the number incidents
in a given day on the x-axis and the number of days with that incident
frequency on its y-axis.
Figure~\ref{fig-incident-sampling-plot} demonstrates the ``Original
Distribution'' of observed daily incident frequencies in a bar chart
format. To simulate this distribution in our model, we used a randomized
sampling method to generate 10 distinct daily incident frequencies based
on the original data, labeled as the ``Current Frequency'' group. These
frequencies are represented as bars layered on top of the Original
Distribution in Figure~\ref{fig-incident-sampling-plot}. Additionally,
to assess IMT performance in scenarios with increased incident numbers,
we created a ``Increased Frequency'' group. This group includes the 10
highest daily incident frequencies from the original data and is
similarly layered over the ``Original Distribution'' in the
Figure~\ref{fig-incident-sampling-plot} bar chart.
\begin{figure}
{\centering \includegraphics{03_methods_files/figure-pdf/fig-incident-sampling-plot-1.pdf}
}
\caption{\label{fig-incident-sampling-plot}Sampling distributions for
incident frequencies.}
\end{figure}
From their established dataset of 1604 incidents Schultz et al. (2023)
filtered the data to ensure the completeness of each incident record in
the dataset, ensuring that the incident was responded to by an IMT and
contained complete information on incident duration, capacity reduction
and location, all of which are necessary for a comprehensive evaluation.
Filtering with those requirements they reduced the list to 411 unique
incidents that received IMT assistance.
Schultz et al. (2023) undertook concurrent IMT research and compiled a
comprehensive dataset of incidents requiring IMT intervention, drawing
on data from the UHP. They carefully ensured the completeness of each
incident record in the dataset, capturing crucial details such as the
incident start and end times, RCT, location, and extent of capacity
reduction.