Skip to content

Commit

Permalink
Update version of TIM used for benchmark (#164)
Browse files Browse the repository at this point in the history
Co-authored-by: Siddharth Krishna <siddharth-krishna@users.noreply.github.com>
  • Loading branch information
olejandro and siddharth-krishna authored Jan 19, 2024
1 parent 5bd51fc commit 57aca73
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ jobs:
# so that the run_benchmarks.py script runs this model too
- uses: actions/checkout@v3
with:
repository: samwebster/times-ireland-model
repository: esma-cgep/tim
path: xl2times/benchmarks/xlsx/Ireland

- uses: actions/checkout@v3
with:
repository: olejandro/times-ireland-model_gams
repository: esma-cgep/tim-gams
path: xl2times/benchmarks/dd/Ireland

# ---------- Install GAMS
Expand Down
5 changes: 3 additions & 2 deletions benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ benchmarks:
- "uc_nuc_maxcap"
- name: Ireland
input_folder: Ireland
regions: "IE"
inputs:
- "VT_IE_AGR.xlsx"
- "VT_IE_IND.xlsx"
Expand Down Expand Up @@ -254,19 +255,19 @@ benchmarks:
- "SubRES_TMPL/SubRES_TRA_NewVehicles.xlsx"
- "SubRES_TMPL/SubRES_TRA_NewVehicles_Trans.xlsx"
- "SysSettings.xlsx"
- "SuppXLS/Scen_A_SYS_SAD_40TS.xlsx"
- "SuppXLS/Scen_B_SYS_Additional_Assumptions.xlsx"
- "SuppXLS/Scen_B_SYS_Demands.xlsx"
- "SuppXLS/Scen_B_SUP_DomBioPot_Baseline.xlsx"
- "SuppXLS/Scen_B_IND_Emi_Proc.xlsx"
- "SuppXLS/Scen_B_PWR_CCS.xlsx"
- "SuppXLS/Scen_B_SRV_DC_EH.xlsx"
- "SuppXLS/Scen_B_SYS_SubAnnual_Data.xlsx"
- "SuppXLS/Scen_B_PWR_RNW_Potentials.xlsx"
- "SuppXLS/Scen_B_IND_Emissions.xlsx"
- "SuppXLS/Scen_B_RSD_Retrofit-Ctrl.xlsx"
- "SuppXLS/Scen_B_RSD_UC.xlsx"
- "SuppXLS/Scen_B_SRV_UC.xlsx"
- "SuppXLS/Scen_B_PWR_SNSP.xlsx"
- "SuppXLS/Scen_B_PWR_SNSP_Limit.xlsx"
- "SuppXLS/Scen_B_SYS_Bio_DelivCost.xlsx"
- "SuppXLS/Scen_B_SYS_Historic_Bounds.xlsx"
- "SuppXLS/Scen_B_SYS_MaxGrowthRates.xlsx"
Expand Down
2 changes: 2 additions & 0 deletions utils/run_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ def run_benchmark(
csv_folder,
]
args += ["--dd"] if run_gams else []
if "regions" in benchmark:
args.extend(["--regions", benchmark["regions"]])
if "inputs" in benchmark:
args.extend((path.join(xl_folder, b) for b in benchmark["inputs"]))
else:
Expand Down

0 comments on commit 57aca73

Please sign in to comment.