Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
nodes,2025,2030,2035,2040,2045,2050
CNOR,0,2000000,0,0,0,0
CSUD,600000,600000,0,0,0,0
NORD,2385000,1350000,0,0,1000000,0
SICI,0,800000,0,0,0,0
SUD,0,0,500000,0,0,0

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
nodes,techs,2025,2030,2035,2040,2045,2050
NORD,import_electricity,1,1,1,1,1,1
NORD,export_electricity,1,1,1,1,1,1
SUD,import_electricity,1,1,1,1,1,1
SUD,export_electricity,1,1,1,1,1,1
nodes,2025,2030,2035,2040,2045,2050
NORD,1,1,1,1,1,1
SUD,1,1,1,1,1,1

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
investsteps,2025,2030,2035,2040,2045,2050,2030,2035,2040,2045,2050,2035,2040,2045,2050,2040,2045,2050,2045,2050,2050
vintagesteps,2025,2025,2025,2025,2025,2025,2030,2030,2030,2030,2030,2035,2035,2035,2035,2040,2040,2040,2045,2045,2050
import_electricity,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
export_electricity,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
available_vintages,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1

This file was deleted.

11 changes: 0 additions & 11 deletions src/calliope_pathways/model_configs/italy/model.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,3 @@ data_sources:
add_dimensions:
techs: demand_electricity
parameters: sink_use_equals

# Import/export cost data
international_electricity_prices:
source: data_sources/timestep_series/electricity_price_series.csv
rows: timesteps
columns: [license, reference, comment, techs]
drop: [license, reference, comment]
add_dimensions:
costs: monetary
parameters: cost_flow_out
nodes: [NORD, SUD]
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ nodes:
waste:
bioenergy:
battery_li:
import_electricity:
flow_cap_initial: 1680000 # Sum of yearly average NTC according to ENTSOe for 2014
export_electricity:
latitude: 45.219847
longitude: 9.624722
CNOR:
Expand Down Expand Up @@ -61,9 +58,6 @@ nodes:
coal:
oil:
battery_li:
import_electricity:
flow_cap_initial: 0 # Sum of yearly average NTC according to ENTSOe for 2014
export_electricity:
latitude: 40.678274
longitude: 16.597098
SICI:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
"oil": ["oil_&_other"],
"geothermal": ["geothermal"],
"coal": ["coal", "coal_usc"],
"import_electricity": ["import_electricity"],
"export_electricity": ["export_electricity"],
}
# Spatial aggregation
NODE_GROUPING = {
Expand Down Expand Up @@ -340,7 +338,6 @@ def main(
data_dir: str | Path = SRC_DIR / "model_configs" / "italy" / "data_sources",
test_figs=False,
) -> dict:

data_dir = Path(data_dir)
investstep_dir = data_dir / "investstep_series"
investstep_dir.mkdir(exist_ok=True)
Expand Down
Loading