Skip to content

Commit ebfd43f

Browse files
committed
horizontal graph
1 parent eb57759 commit ebfd43f

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

docs/introduction/tempo.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Tempo
2+
3+
```mermaid
4+
flowchart LR
5+
subgraph ui ["User interface"]
6+
DASH(["<b>EPM Dashboard</b>\nlaunch · configure · visualize"])
7+
end
8+
9+
CLI(["<b>python epm.py</b>"])
10+
11+
subgraph inputs ["Input layer"]
12+
CONFIG["<b>config.csv</b>\nRouting table"]
13+
SCEN["<b>scenarios.csv</b>\nScenario overlays (optional)"]
14+
CSV["<b>Input CSVs</b>\npSettings · supply/ · load/ · ..."]
15+
end
16+
17+
subgraph core ["Core model"]
18+
GAMS["<b>GAMS</b>\nbase.gms · CPLEX"]
19+
end
20+
21+
POST["<b>Python postprocessing</b>\nepmresults.gdx → CSV"]
22+
OUT[("<b>CSV Outputs</b>")]
23+
24+
DASH -->|launch| CLI
25+
CLI --> CONFIG
26+
SCEN -.->|overlays| CONFIG
27+
CONFIG --> CSV
28+
CSV --> core
29+
GAMS --> POST
30+
POST --> OUT
31+
OUT -->|results| DASH
32+
```

0 commit comments

Comments
 (0)