Skip to content

Commit

Permalink
fixed typos in bevs
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasFrankenQ committed Oct 15, 2023
1 parent 956ac71 commit 28df046
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/prepare_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ def define_spatial(nodes: pd.Index, options):
spatial.electric_vehicles.nodes = nodes + " electric vehicles"
spatial.electric_vehicles.locations = nodes

# electric vehicles batteries
spatial.electric_vehicles_batteries = SimpleNamespace()
spatial.electric_vehicles_batteries.nodes = nodes + " electric vehicles batteries"
spatial.electric_vehicles_batteries.locations = nodes
# electric vehicle batteries
spatial.electric_vehicle_batteries = SimpleNamespace()
spatial.electric_vehicle_batteries.nodes = nodes + " electric vehicle batteries"
spatial.electric_vehicle_batteries.locations = nodes

# winter event flexibility
spatial.event_flexibility_winter = SimpleNamespace()
Expand All @@ -130,7 +130,7 @@ def define_spatial(nodes: pd.Index, options):
spatial.event_flexibility_regular.nodes = ["regular event flexibility"]
spatial.event_flexibility_regular.locations = ["GB"]

# residential heat pumps
# residential heat demand
spatial.heat_demand = SimpleNamespace()
spatial.heat_demand.nodes = nodes + " heat demand"
spatial.heat_demand.locations = nodes
Expand Down

0 comments on commit 28df046

Please sign in to comment.