forked from Pyosch/vpplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_base_scenario.py
430 lines (343 loc) · 10.8 KB
/
test_base_scenario.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# -*- coding: utf-8 -*-
"""
Created on Tue Jul 2 10:38:17 2019
@author: Sascha Birk
"""
import pandas as pd
import pandapower as pp
import pandapower.networks as pn
from vpplib.environment import Environment
from vpplib.user_profile import UserProfile
from vpplib.photovoltaic import Photovoltaic
from vpplib.battery_electric_vehicle import BatteryElectricVehicle
from vpplib.heat_pump import HeatPump
from vpplib.electrical_energy_storage import ElectricalEnergyStorage
from vpplib.wind_power import WindPower
from vpplib.virtual_power_plant import VirtualPowerPlant
from vpplib.operator import Operator
# import logging
# logging.getLogger().setLevel(logging.DEBUG)
# environment
start = "2015-03-01 00:00:00"
end = "2015-03-01 23:45:00"
timezone = "Europe/Berlin"
year = "2015"
time_freq = "15 min"
timebase = 15
index = pd.date_range(start=start, end=end, freq=time_freq)
temp_days_file = "./input/thermal/dwd_temp_days_2015.csv"
temp_hours_file = "./input/thermal/dwd_temp_hours_2015.csv"
# user_profile
identifier = "bus_1"
latitude = 50.941357
longitude = 6.958307
yearly_thermal_energy_demand = 12500
comfort_factor = None
daily_vehicle_usage = None
building_type = "DE_HEF33"
t_0 = 40
week_trip_start = []
week_trip_end = []
weekend_trip_start = []
weekend_trip_end = []
baseload = pd.read_csv("./input/baseload/df_S_15min.csv")
baseload.drop(columns=["Time"], inplace=True)
baseload.index = pd.date_range(
start=year, periods=35040, freq=time_freq, name="time"
)
unit = "kW"
# WindTurbine data
turbine_type = "E-126/4200"
hub_height = 135
rotor_diameter = 127
fetch_curve = "power_curve"
data_source = "oedb"
# WindPower ModelChain data
wind_file = "./input/wind/dwd_wind_data_2015.csv"
wind_speed_model = "logarithmic"
density_model = "ideal_gas"
temperature_model = "linear_gradient"
power_output_model = "power_curve"
density_correction = True
obstacle_height = 0
hellman_exp = None
# PV data
pv_file = "./input/pv/dwd_pv_data_2015.csv"
module_lib = "SandiaMod"
module = "Canadian_Solar_CS5P_220M___2009_"
inverter_lib = "cecinverter"
inverter = "ABB__PVI_4_2_OUTD_S_US_Z_M_A__208_V__208V__CEC_2014_"
surface_tilt = (20,)
surface_azimuth = 200
modules_per_string = 4
strings_per_inverter = 2
# BEV data
battery_max = 16
battery_min = 0
battery_usage = 1
charging_power = 11
charge_efficiency_bev = 0.98
load_degradation_begin = 0.8
# heat pump data
heatpump_type = "Air"
heat_sys_temp = 60
el_power = 5
building_type = "DE_HEF33"
th_power = 3
ramp_up_time = 0
ramp_down_time = 0
min_runtime = 0
min_stop_time = 0
# storage
charge_efficiency_storage = 0.98
discharge_efficiency_storage = 0.98
max_power = 4 # kW
capacity = 4 # kWh
max_c = 1 # factor between 0.5 and 1.2
# %% define the amount of components in the grid
# NOT VALID for all component distribution methods (see line 131-143)
pv_percentage = 50
storage_percentage = 50
bev_percentage = 0
hp_percentage = 0
wind_percentage = 0
# %% environment
environment = Environment(
timebase=timebase,
timezone=timezone,
start=start,
end=end,
year=year,
time_freq=time_freq,
)
environment.get_wind_data(file=wind_file, utc=False)
environment.get_pv_data(file=pv_file)
environment.get_mean_temp_days(file=temp_days_file)
environment.get_mean_temp_hours(file=temp_hours_file)
# %% user profile
user_profile = UserProfile(
identifier=identifier,
latitude=latitude,
longitude=longitude,
thermal_energy_demand_yearly=yearly_thermal_energy_demand,
building_type=building_type,
comfort_factor=comfort_factor,
t_0=t_0,
daily_vehicle_usage=daily_vehicle_usage,
week_trip_start=week_trip_start,
week_trip_end=week_trip_end,
weekend_trip_start=weekend_trip_start,
weekend_trip_end=weekend_trip_end,
)
user_profile.get_thermal_energy_demand()
# %% create instance of VirtualPowerPlant and the designated grid
vpp = VirtualPowerPlant("Master")
net = pn.panda_four_load_branch()
# %% assign names and types to baseloads for later p and q assignment
for bus in net.bus.index:
net.load.name[net.load.bus == bus] = net.bus.name[bus] + "_baseload"
net.load.type[net.load.bus == bus] = "baseload"
# %% assign components to random bus names
def test_get_buses_with_components(vpp):
vpp.get_buses_with_components(
net,
method="random",
pv_percentage=pv_percentage,
hp_percentage=hp_percentage,
bev_percentage=bev_percentage,
wind_percentage=wind_percentage,
storage_percentage=storage_percentage,
)
# %% assign components to the bus names for testing purposes
def test_get_assigned_buses_with_components(
vpp,
buses_with_pv,
buses_with_hp,
buses_with_bev,
buses_with_storage,
buses_with_wind,
):
vpp.buses_with_pv = buses_with_pv
vpp.buses_with_hp = buses_with_hp
vpp.buses_with_bev = buses_with_bev
vpp.buses_with_wind = buses_with_wind
# storages should only be assigned to buses with pv
vpp.buses_with_storage = buses_with_storage
# %% assign components to the loadbuses
def test_get_loadbuses_with_components(vpp):
vpp.get_buses_with_components(
net,
method="random_loadbus",
pv_percentage=pv_percentage,
hp_percentage=hp_percentage,
bev_percentage=bev_percentage,
wind_percentage=wind_percentage,
storage_percentage=storage_percentage,
)
# %% Choose assignment methode for component distribution
# test_get_buses_with_components(vpp)
test_get_assigned_buses_with_components(
vpp,
buses_with_pv=["bus3", "bus4", "bus5", "bus6"],
buses_with_hp=["bus4"],
buses_with_bev=["bus5"],
buses_with_storage=["bus5"],
buses_with_wind=["bus1"],
)
# test_get_loadbuses_with_components(vpp)
# %% create components and assign components to the Virtual Powerplant
for bus in vpp.buses_with_pv:
vpp.add_component(
Photovoltaic(
unit=unit,
identifier=(bus + "_PV"),
environment=environment,
user_profile=user_profile,
module_lib=module_lib,
module=module,
inverter_lib=inverter_lib,
inverter=inverter,
surface_tilt=surface_tilt,
surface_azimuth=surface_azimuth,
modules_per_string=modules_per_string,
strings_per_inverter=strings_per_inverter,
)
)
vpp.components[list(vpp.components.keys())[-1]].prepare_time_series()
for bus in vpp.buses_with_storage:
vpp.add_component(
ElectricalEnergyStorage(
unit=unit,
identifier=(bus + "_storage"),
environment=environment,
user_profile=user_profile,
capacity=capacity,
charge_efficiency=charge_efficiency_storage,
discharge_efficiency=discharge_efficiency_storage,
max_power=max_power,
max_c=max_c,
)
)
vpp.components[list(vpp.components.keys())[-1]].timeseries = pd.DataFrame(
columns=["state_of_charge", "residual_load"],
index=pd.date_range(start=start, end=end, freq=time_freq),
)
for bus in vpp.buses_with_bev:
vpp.add_component(
BatteryElectricVehicle(
unit=unit,
identifier=(bus + "_BEV"),
environment=environment,
user_profile=user_profile,
battery_max=battery_max,
battery_min=battery_min,
battery_usage=battery_usage,
charging_power=charging_power,
charge_efficiency=charge_efficiency_bev,
load_degradation_begin=load_degradation_begin,
)
)
vpp.components[list(vpp.components.keys())[-1]].prepare_time_series()
for bus in vpp.buses_with_hp:
vpp.add_component(
HeatPump(
unit=unit,
identifier=(bus + "_HP"),
environment=environment,
user_profile=user_profile,
heat_pump_type=heatpump_type,
heat_sys_temp=heat_sys_temp,
el_power=el_power,
th_power=th_power,
ramp_up_time=ramp_up_time,
ramp_down_time=ramp_down_time,
min_runtime=min_runtime,
min_stop_time=min_stop_time,
)
)
vpp.components[list(vpp.components.keys())[-1]].prepare_time_series()
for bus in vpp.buses_with_wind:
vpp.add_component(
WindPower(
unit=unit,
identifier=(bus + "_Wind"),
environment=environment,
user_profile=user_profile,
turbine_type=turbine_type,
hub_height=hub_height,
rotor_diameter=rotor_diameter,
fetch_curve=fetch_curve,
data_source=data_source,
wind_speed_model=wind_speed_model,
density_model=density_model,
temperature_model=temperature_model,
power_output_model=power_output_model,
density_correction=density_correction,
obstacle_height=obstacle_height,
hellman_exp=hellman_exp,
)
)
vpp.components[list(vpp.components.keys())[-1]].prepare_time_series()
# %% create elements in the pandapower.net
for bus in vpp.buses_with_pv:
pp.create_sgen(
net,
bus=net.bus[net.bus.name == bus].index[0],
p_mw=(
vpp.components[bus + "_PV"].module.Impo
* vpp.components[bus + "_PV"].module.Vmpo
/ 1000000
),
name=(bus + "_PV"),
type="PV",
)
for bus in vpp.buses_with_storage:
pp.create_storage(
net,
bus=net.bus[net.bus.name == bus].index[0],
p_mw=0,
max_e_mwh=capacity,
name=(bus + "_storage"),
type="LiIon",
)
for bus in vpp.buses_with_bev:
pp.create_load(
net,
bus=net.bus[net.bus.name == bus].index[0],
p_mw=(vpp.components[bus + "_BEV"].charging_power / 1000),
name=(bus + "_BEV"),
type="BEV",
)
for bus in vpp.buses_with_hp:
pp.create_load(
net,
bus=net.bus[net.bus.name == bus].index[0],
p_mw=(vpp.components[bus + "_HP"].el_power / 1000),
name=(bus + "_HP"),
type="HP",
)
for bus in vpp.buses_with_wind:
pp.create_sgen(
net,
bus=net.bus[net.bus.name == bus].index[0],
p_mw=(
vpp.components[bus + "_Wind"].wind_turbine.nominal_power / 1000000
),
name=(bus + "_Wind"),
type="WindPower",
)
# %% initialize operator
operator = Operator(virtual_power_plant=vpp, net=net, target_data=None)
# %% run base_scenario without operation strategies
net_dict = operator.run_base_scenario(baseload)
# %% extract results from powerflow
results = operator.extract_results(net_dict)
single_result = operator.extract_single_result(
net_dict, res="ext_grid", value="p_mw"
)
# %% plot results of powerflow and storage values
single_result.plot(
figsize=(16, 9), title="ext_grid from single_result function"
)
operator.plot_results(results)
operator.plot_storages()