Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/docs/graphviz/flow_complete.txt
169667 views
1
digraph complete {
2
node [shape=ellipse fontname="Arial" fillcolor="olivedrab2" style="filled"]; network;
3
node [shape=ellipse fontname="Arial" fillcolor="goldenrod1" style="filled"]; routes;
4
5
subgraph cluster_0 {
6
style=filled;
7
color=lightgrey;
8
label = "network generation"
9
10
node [shape=octagon fontname="Arial" fillcolor="olivedrab2" style="filled"]; "network description";
11
12
node [shape=box fontname="Arial" fillcolor="olivedrab3" style="filled"]; NETCONVERT;
13
node [shape=box fontname="Arial" fillcolor="olivedrab" style="filled"]; NETGEN;
14
15
"network description" -> NETCONVERT [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
16
17
NETCONVERT -> network [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
18
NETGEN -> network [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
19
}
20
21
22
subgraph cluster_1 {
23
24
graph [ rankdir="TB" rank=same];
25
style=filled;
26
color=lightgrey;
27
label = "demand generation"
28
29
30
node [shape=box fontname="Arial" fillcolor="goldenrod" style="filled"]; DUAROUTER;
31
node [shape=box fontname="Arial" fillcolor="goldenrod1" style="filled"]; DFROUTER;
32
node [shape=box fontname="Arial" fillcolor="goldenrod2" style="filled"]; JTRROUTER;
33
node [shape=octagon fontname="Arial" fillcolor="goldenrod" style="filled"]; "demand description";
34
node [shape=box fontname="Arial" fillcolor="indianred1" style="filled"]; OD2TRIPS;
35
36
"demand description" -> DFROUTER [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
37
"demand description" -> JTRROUTER [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
38
"demand description" -> DUAROUTER [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
39
OD2TRIPS -> "demand description" [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
40
"demand description" -> OD2TRIPS [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
41
42
DUAROUTER -> routes [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
43
JTRROUTER -> routes [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
44
45
}
46
47
node [shape=Mcircle fontname="Arial" fillcolor="yellow1" style="filled"]; USER;
48
node [shape=box fontname="Arial" fillcolor="lightskyblue" style="filled"]; "SUMO/GUISIM";
49
50
node [shape=ellipse fontname="Arial" fillcolor="lightblue1" style="filled"]; "simulation output";
51
node [shape=octagon fontname="Arial" fillcolor="lightcyan" style="filled"]; "additional definitions";
52
53
USER -> "additional definitions" [arrowhead="normal" fontname="Arial" fontsize="10"];
54
network -> "SUMO/GUISIM" [arrowhead="normal" label="--net-file" fontname="Arial" fontsize="10"];
55
routes -> "SUMO/GUISIM" [arrowhead="normal" label="--route-files" fontname="Arial" fontsize="10"];
56
"additional definitions" -> "SUMO/GUISIM" [arrowhead="normal" label="--additional-files" fontname="Arial" fontsize="10"];
57
"SUMO/GUISIM" -> "simulation output" [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
58
59
}
60
61