We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb57759 commit ebfd43fCopy full SHA for ebfd43f
1 file changed
docs/introduction/tempo.md
@@ -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
16
17
+ subgraph core ["Core model"]
18
+ GAMS["<b>GAMS</b>\nbase.gms · CPLEX"]
19
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