Skip to content

Commit e94e094

Browse files
authored
update paper
1 parent 7674af2 commit e94e094

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

paper/paper.bib

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,3 +193,10 @@ @Article{Lovelace
193193
doi = {10.1007/s10109-020-00342-2},
194194
file = {:Lovelace2021review.pdf:PDF},
195195
}
196+
197+
@MastersThesis{terHoeven2024master,
198+
author = {ter Hoeven, Ewout},
199+
school = {Delft University of Technology},
200+
title = {When do autonomous vehicles solve orexacerbate different urban mobility problems?},
201+
year = {2024},
202+
}

paper/paper.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Nevertheless, the computation speed is not too slow, leveraging mesoscopic traff
5353

5454
*UXsim* can be used by any user who has basic Python skills and an interest in traffic.
5555
It can be used for various purposes, such as university education and as an experimental environment for researchers in fields like civil engineering, urban planning, operations research, computer science, and others.
56-
It has already been used in a number of scientific publications such as Large Language Model-based system control [@microsofttrace] and traffic signal optimization [@iizuka].
56+
It has already been used in a number of scientific publications such as Large Language Model-based system control [@microsofttrace], traffic signal optimization in a network [@iizuka], and strategic impact evaluation of automated vehicles on a regional scale [@terHoeven2024master].
5757

5858
# Related works
5959

@@ -70,7 +70,8 @@ Additionally, microscopic simulators generally require extensive information, su
7070

7171
*MATSim* [@matsim] is a more strategic-level transportation simulator that aims to simulate activity-travel behavior.
7272
In fact, a certain mode of *MATSim* uses models that are equivalent to those in *UXsim*.
73-
However, *MATSim* focuses more on holistic mobility, including people's travel decisions and mode choices in multi-modal transportation systems, rather than just traffic flow.
73+
However, *MATSim* focuses more on holistic mobility, including people's travel decisions and mode choices in multi-modal transportation systems.
74+
*UXsim* focuses on traffic flow simulation, making it simpler and easier to use and integrate with other packages.
7475

7576
*dyntapy* [@dyntapy] is a macroscopic traffic simulator in Python.
7677
While it shares several features with *UXsim*, there are some distinct differences.
@@ -123,7 +124,7 @@ W = World(
123124

124125
# Define the scenario
125126
## Create nodes
126-
W.addNode(name="orig1", x=0, y=0)
127+
W.addNode(name="orig1", x=0, y=0) #xy coords are for visualization
127128
W.addNode("orig2", 0, 2)
128129
W.addNode("merge", 1, 1)
129130
W.addNode("dest", 2, 1)

0 commit comments

Comments
 (0)