Skip to content

common.py

get_energy_for_heat_production(nc, drop_regex='water tanks|water pits')

Calculate the energy input share for heat production across all heat bus carriers.

This function analyzes the energy balance of link components connected to heat buses to determine the input energy carrier mix used for heat production. It processes energy balance data by filtering for heat-related carriers and calculating input shares for each heat bus carrier type.

Parameters:

Name Type Description Default
nc pypsa.NetworkCollection

NetworkCollection containing PyPSA network objects, keyed by year. Each network should contain Link components with energy balance data.

required
drop_regex str

A regular expression to exclude certain carriers from analysis.

'water tanks|water pits'

Returns:

Type Description
pandas.Series

Series containing energy input shares for heat production, indexed by year, location, and bus carrier. Only positive values are included. The series has 'MWh_th' units set in attrs.

Notes

The function excludes CO2 and CO2 storage carriers, as well as water storage components (tanks and pits) from the analysis. It focuses specifically on energy carriers that directly contribute to heat production.

Source code in evals/views/common.py
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
def get_energy_for_heat_production(
    nc: NetworkCollection, drop_regex: str = "water tanks|water pits"
) -> pd.Series:
    """
    Calculate the energy input share for heat production across all heat bus carriers.

    This function analyzes the energy balance of link components connected to heat buses
    to determine the input energy carrier mix used for heat production. It processes
    energy balance data by filtering for heat-related carriers and calculating input
    shares for each heat bus carrier type.

    Parameters
    ----------
    nc
        NetworkCollection containing PyPSA network objects, keyed by year.
        Each network should contain Link components with energy balance data.
    drop_regex
        A regular expression to exclude certain carriers from analysis.

    Returns
    -------
    :
        Series containing energy input shares for heat production, indexed by year,
        location, and bus carrier. Only positive values are included. The series has
        'MWh_th' units set in attrs.

    Notes
    -----
    The function excludes CO2 and CO2 storage carriers, as well as water storage
    components (tanks and pits) from the analysis. It focuses specifically on
    energy carriers that directly contribute to heat production.
    """
    energy_balance = (
        collect_myopic_statistics(nc, comps="Link", statistic="energy_balance")
        .drop(["co2", "co2 stored"], level=DataModel.BUS_CARRIER)
        .pipe(drop_from_multtindex_by_regex, drop_regex)
        .pipe(filter_for_carrier_connected_to, BusCarrier.heat_buses())
    )
    heat_mix = pd.concat(
        [
            calculate_input_share(energy_balance, bc).pipe(rename_aggregate, bc)
            for bc in BusCarrier.heat_buses()
        ]
    )
    heat_mix = heat_mix[heat_mix > 0]  # supply only
    heat_mix.attrs["unit"] = "MWh_th"  # overwrite mixed units

    return heat_mix

simple_bus_balance(nc, config, result_path)

Calculate and export simple bus balance statistics for energy supply and demand.

This function computes the energy balance for specified bus carriers by collecting supply and withdrawal statistics, filtering out transmission components, and handling storage links. It also calculates trade statistics for both foreign and domestic imports and exports, then exports all data according to the view configuration.

Parameters:

Name Type Description Default
nc pypsa.NetworkCollection

NetworkCollection containing PyPSA network objects, keyed by year.

required
config dict

Configuration dictionary containing view settings including bus_carrier, storage_links, and export parameters.

required
result_path

Path where the evaluation results will be saved.

required
Notes

Supply values are positive and represent energy production or imports. Demand values are negated to show as negative for visualization purposes. The function exports data via Exporter using configured format settings.

Source code in evals/views/common.py
 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
def simple_bus_balance(
    nc: NetworkCollection,
    config: dict,
    result_path,
) -> None:
    """
    Calculate and export simple bus balance statistics for energy supply and demand.

    This function computes the energy balance for specified bus carriers by collecting
    supply and withdrawal statistics, filtering out transmission components, and handling
    storage links. It also calculates trade statistics for both foreign and domestic
    imports and exports, then exports all data according to the view configuration.

    Parameters
    ----------
    nc
        NetworkCollection containing PyPSA network objects, keyed by year.
    config
        Configuration dictionary containing view settings including bus_carrier, storage_links,
        and export parameters.
    result_path
        Path where the evaluation results will be saved.

    Notes
    -----
    Supply values are positive and represent energy production or imports.
    Demand values are negated to show as negative for visualization purposes.
    The function exports data via Exporter using configured format settings.
    """
    (
        bus_carrier,
        transmission_comps,
        transmission_carrier,
        storage_carrier,
        storage_links,
    ) = _parse_view_config_items(nc, config)

    # some bus_carrier are not present in the network at given years
    allow_missing = config["view"].get("exclude", {})

    supply = collect_myopic_statistics(
        nc,
        statistic="supply",
        bus_carrier=bus_carrier,
        aggregate_components=None,
        allow_missing=allow_missing,
    ).pipe(
        filter_by,
        component=transmission_comps,
        carrier=transmission_carrier,
        exclude=True,
    )
    storage_supply = filter_by(
        supply, component=("Store", "StorageUnit"), carrier=storage_carrier
    )
    supply = pd.concat(
        [
            supply.drop(storage_supply.index),
            rename_aggregate(storage_supply, Group.storage_out),
        ]
    ).droplevel(DM.COMPONENT)

    # quick fix to allow mixed bus_carrier units
    if supply.attrs["unit"] == "carrier dependent":
        supply.attrs["unit"] = "MWh"

    demand = (
        collect_myopic_statistics(
            nc,
            statistic="withdrawal",
            bus_carrier=bus_carrier,
            aggregate_components=None,
            allow_missing=allow_missing,
        )
        .pipe(
            filter_by,
            component=transmission_comps,
            carrier=transmission_carrier,
            exclude=True,
        )
        # .pipe(rename_aggregate, dict.fromkeys(storage_links, Group.storage_in))
        .mul(-1)
        # .droplevel(DM.COMPONENT)
    )
    storage_demand = filter_by(
        demand, component=("Store", "StorageUnit"), carrier=storage_carrier
    )
    demand = pd.concat(
        [
            demand.drop(storage_demand.index),
            rename_aggregate(storage_demand, Group.storage_in),
        ]
    ).droplevel(DM.COMPONENT)

    if demand.attrs["unit"] == "carrier dependent":
        demand.attrs["unit"] = supply.attrs["unit"]

    regional_trade = [
        regionalize_statistics(supply, demand, bus_carrier).droplevel(
            DataModel.COMPONENT
        )
        for bus_carrier in BusCarrier.eu_buses()
    ]
    # drop all supply with EU location. They are in regional_trade.
    supply = filter_by(supply, location="EU", exclude=True)
    demand = filter_by(demand, location="EU", exclude=True)

    trade_statistics = []
    for scope, direction, alias in [
        (TradeTypes.FOREIGN, "import", Group.import_foreign),
        (TradeTypes.FOREIGN, "export", Group.export_foreign),
        (TradeTypes.DOMESTIC, "import", Group.import_domestic),
        (TradeTypes.DOMESTIC, "export", Group.export_domestic),
    ]:
        trade = collect_myopic_statistics(
            nc,
            statistic="trade_energy",
            scope=scope,
            direction=direction,
            bus_carrier=bus_carrier,
            aggregate_components=None,
        )
        if trade.empty:
            continue
        # the trade statistic finds copperplate transmission between EU
        # and country buses. Those are dropped during the filter_by.
        trade_clean = (
            filter_by(trade, component=transmission_comps, carrier=transmission_carrier)
            .pipe(rename_aggregate, alias)
            .droplevel(DM.COMPONENT)
        )
        trade_clean.attrs["unit"] = supply.attrs["unit"]
        trade_statistics.append(trade_clean)

    # group bus carriers by groups defined in config.toml
    statistics = [supply, demand] + trade_statistics + regional_trade
    if bus_carrier_groups := config["view"].get("bus_carrier_groups", {}):
        statistics = [
            rename_aggregate(stat, bus_carrier_groups, level=DM.BUS_CARRIER)
            for stat in statistics
        ]

    exporter = Exporter(statistics=statistics, view_config=config["view"])
    exporter.export(result_path, config["global"]["subdir"])

simple_optimal_capacity(nc, config, result_path, kind=None)

Calculate and export optimal capacity statistics for energy system components.

This function collects optimal capacity data for components connected to specified bus carriers, filtering out transmission and storage links. The capacity data can be filtered to show only production capacities (positive values), demand capacities (negative values), or both.

Parameters:

Name Type Description Default
nc pypsa.NetworkCollection

NetworkCollection containing PyPSA network objects, keyed by year.

required
config dict

Configuration dictionary containing view settings including bus_carrier, storage_links, and export parameters.

required
result_path str | pathlib.Path

Path where the evaluation results will be saved.

required
kind str

Optional filter for capacity type. Use "production" for positive capacities only, "demand" for negative capacities only, or None for both.

None
Notes

The function corrects a known issue where optimal_capacity returns MWh units instead of MW units, by replacing the unit string accordingly.

Source code in evals/views/common.py
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
def simple_optimal_capacity(
    nc: NetworkCollection, config: dict, result_path: str | Path, kind: str = None
) -> None:
    """
    Calculate and export optimal capacity statistics for energy system components.

    This function collects optimal capacity data for components connected to specified
    bus carriers, filtering out transmission and storage links. The capacity data can be
    filtered to show only production capacities (positive values), demand capacities
    (negative values), or both.

    Parameters
    ----------
    nc
        NetworkCollection containing PyPSA network objects, keyed by year.
    config
        Configuration dictionary containing view settings including bus_carrier, storage_links,
        and export parameters.
    result_path
        Path where the evaluation results will be saved.
    kind
        Optional filter for capacity type. Use "production" for positive capacities only,
        "demand" for negative capacities only, or None for both.

    Notes
    -----
    The function corrects a known issue where optimal_capacity returns MWh units
    instead of MW units, by replacing the unit string accordingly.
    """
    (
        bus_carrier,
        transmission_comps,
        transmission_carrier,
        storage_carrier,
        storage_links,
    ) = _parse_view_config_items(nc, config)

    optimal_capacity = (
        collect_myopic_statistics(
            nc,
            statistic="optimal_capacity",
            bus_carrier=bus_carrier,
            aggregate_components=None,
        )
        .pipe(
            filter_by,
            component=transmission_comps,
            carrier=transmission_carrier,
            exclude=True,
        )
        .pipe(
            filter_by,
            component=("Store", "StorageUnit"),
            carrier=storage_carrier,
            exclude=True,
        )
        .pipe(
            filter_by,
            component=("Link", "Generator"),
            # Include Generator to drop heat vents
            carrier=storage_links,
            exclude=True,
        )
        .droplevel(DM.COMPONENT)
    )

    # new heat pump implementation queries heat pump Links via bus1, and
    # PyPSA's sign convention now returns their capacities with a flipped
    # sign — positive instead of negative. This is a hotfix until upstream
    # handles this.
    heat_pump_carrier = [
        c for c in optimal_capacity.index.unique("carrier") if "heat pump" in c
    ]
    idx_heat_pumps = filter_by(
        optimal_capacity, carrier=heat_pump_carrier, bus_carrier=["low voltage", "AC"]
    ).index
    optimal_capacity[idx_heat_pumps] = optimal_capacity[idx_heat_pumps].mul(-1)

    if kind == "production":
        optimal_capacity = optimal_capacity[optimal_capacity > 0]
    elif kind == "demand":
        optimal_capacity = optimal_capacity[optimal_capacity < 0]

    # 'optimal_capacity' wrongly returns MWh as a unit, but it is MW.
    optimal_capacity.attrs["unit"] = optimal_capacity.attrs["unit"].replace("MWh", "MW")

    exporter = Exporter(
        statistics=[optimal_capacity],
        view_config=config["view"],
    )

    exporter.export(result_path, config["global"]["subdir"])

simple_storage_capacity(nc, config, result_path)

Calculate and export optimal storage capacity statistics.

This function collects optimal capacity data specifically for storage components (stores and storage units) connected to specified bus carriers. It filters the results to include only carriers that match the configured storage_links list.

Parameters:

Name Type Description Default
nc pypsa.NetworkCollection

NetworkCollection containing PyPSA network objects, keyed by year.

required
config dict

Configuration dictionary containing view settings including bus_carrier, storage_links, and export parameters.

required
result_path str | pathlib.Path

Path where the evaluation results will be saved.

required
Notes

The function sets cutoff_drop to False to prevent dropping empty years from the output, which is important for storage capacity evolution visualization across time periods.

Source code in evals/views/common.py
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
def simple_storage_capacity(
    nc: NetworkCollection, config: dict, result_path: str | Path
) -> None:
    """
    Calculate and export optimal storage capacity statistics.

    This function collects optimal capacity data specifically for storage components
    (stores and storage units) connected to specified bus carriers. It filters the
    results to include only carriers that match the configured storage_links list.

    Parameters
    ----------
    nc
        NetworkCollection containing PyPSA network objects, keyed by year.
    config
        Configuration dictionary containing view settings including bus_carrier, storage_links,
        and export parameters.
    result_path
        Path where the evaluation results will be saved.

    Notes
    -----
    The function sets cutoff_drop to False to prevent dropping empty years from the output,
    which is important for storage capacity evolution visualization across time periods.
    """
    (
        bus_carrier,
        _,
        _,
        storage_carrier,
        _,
    ) = _parse_view_config_items(nc, config)

    stores = collect_myopic_statistics(
        nc,
        statistic="optimal_capacity",
        bus_carrier=bus_carrier,
        storage=True,
    ).pipe(filter_by, carrier=storage_carrier)

    exporter = Exporter(
        statistics=[stores],
        view_config=config["view"],
    )

    exporter.defaults.cutoff_drop = False  # prevent dropping empty years
    exporter.export(result_path, config["global"]["subdir"])

simple_timeseries(nc, config, result_path)

Calculate and export time series data for energy supply, demand, and trade balance.

This function collects hourly time series statistics for supply and withdrawal, along with net trade saldo (imports minus exports) for specified bus carriers. Unlike simple_bus_balance, this function preserves temporal resolution and does not aggregate over time periods.

Parameters:

Name Type Description Default
nc pypsa.NetworkCollection

NetworkCollection containing PyPSA network objects, keyed by year.

required
config dict

Configuration dictionary containing view settings including bus_carrier, storage_links, and export parameters.

required
result_path str | pathlib.Path

Path where the evaluation results will be saved.

required
Notes

Trade saldo combines both foreign and domestic trade into a single net balance. Time series data is not aggregated over time, preserving hourly or sub-hourly resolution. This function is useful for analyzing temporal patterns and system operation.

Source code in evals/views/common.py
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
def simple_timeseries(
    nc: NetworkCollection,
    config: dict,
    result_path: str | Path,
) -> None:
    """
    Calculate and export time series data for energy supply, demand, and trade balance.

    This function collects hourly time series statistics for supply and withdrawal,
    along with net trade saldo (imports minus exports) for specified bus carriers.
    Unlike simple_bus_balance, this function preserves temporal resolution and does
    not aggregate over time periods.

    Parameters
    ----------
    nc
        NetworkCollection containing PyPSA network objects, keyed by year.
    config
        Configuration dictionary containing view settings including bus_carrier, storage_links,
        and export parameters.
    result_path
        Path where the evaluation results will be saved.

    Notes
    -----
    Trade saldo combines both foreign and domestic trade into a single net balance.
    Time series data is not aggregated over time, preserving hourly or sub-hourly resolution.
    This function is useful for analyzing temporal patterns and system operation.
    """
    (
        bus_carrier,
        transmission_comps,
        transmission_carrier,
        storage_carrier,
        storage_links,
    ) = _parse_view_config_items(nc, config)

    allow_missing = config["view"].get("exclude", {})

    supply = (
        collect_myopic_statistics(
            nc,
            statistic="supply",
            bus_carrier=bus_carrier,
            aggregate_time=False,
            aggregate_components=None,
            allow_missing=allow_missing,
        )
        .pipe(
            filter_by,
            component=transmission_comps,
            carrier=transmission_carrier,
            exclude=True,
        )
        .pipe(
            # combine all bus carrier to export netted technologies
            rename_aggregate,
            bus_carrier[0],
            level=DM.BUS_CARRIER,
        )
    )
    storage_supply = filter_by(
        supply, component=("Store", "StorageUnit"), carrier=storage_carrier
    )
    supply = pd.concat(
        [
            supply.drop(storage_supply.index),
            rename_aggregate(storage_supply, Group.storage_out),
        ]
    ).droplevel(DM.COMPONENT)

    demand = (
        collect_myopic_statistics(
            nc,
            statistic="withdrawal",
            bus_carrier=bus_carrier,
            aggregate_time=False,
            aggregate_components=None,
            allow_missing=allow_missing,
        )
        .pipe(
            filter_by,
            component=transmission_comps,
            carrier=transmission_carrier,
            exclude=True,
        )
        .pipe(
            # combine all bus carrier to export netted technologies
            rename_aggregate,
            bus_carrier[0],
            level=DM.BUS_CARRIER,
        )
        .mul(-1)
    )

    storage_demand = filter_by(
        demand, component=("Store", "StorageUnit"), carrier=storage_carrier
    )
    demand = pd.concat(
        [
            demand.drop(storage_demand.index),
            rename_aggregate(storage_demand, Group.storage_in),
        ]
    ).droplevel(DM.COMPONENT)

    if storage_links:
        supply = rename_aggregate(
            supply, dict.fromkeys(storage_links, Group.storage_out), level=DM.CARRIER
        )
        demand = rename_aggregate(
            demand, dict.fromkeys(storage_links, Group.storage_in), level=DM.CARRIER
        )

    # calculated netted storage time series for time series graphs
    storage_supply = filter_by(supply, carrier=Group.storage_out).pipe(
        rename_aggregate, "Storage"
    )
    supply = supply.drop(Group.storage_out, level=DataModel.CARRIER)
    storage_demand = filter_by(demand, carrier=Group.storage_in).pipe(
        rename_aggregate, "Storage"
    )
    demand = demand.drop(Group.storage_in, level=DataModel.CARRIER)
    storage_balance = storage_supply.add(storage_demand, fill_value=0)
    storage_in = rename_aggregate(
        storage_balance[storage_balance < 0], Group.storage_in
    )
    storage_out = rename_aggregate(
        storage_balance[storage_balance > 0], Group.storage_out
    )

    trade_saldo = (
        collect_myopic_statistics(
            nc,
            statistic="trade_energy",
            scope=(TradeTypes.FOREIGN, TradeTypes.DOMESTIC),
            direction="saldo",
            bus_carrier=bus_carrier,
            aggregate_time=False,
            aggregate_components=None,
        )
        .pipe(
            filter_by,
            component=transmission_comps,
            carrier=transmission_carrier,
        )
        .droplevel(DM.COMPONENT)
    )
    trade_saldo.attrs["unit"] = supply.attrs["unit"]
    trade_saldo = rename_aggregate(trade_saldo, trade_saldo.attrs["name"])

    exporter = Exporter(
        statistics=[supply, demand, trade_saldo, storage_in, storage_out],
        view_config=config["view"],
    )

    exporter.export(result_path, config["global"]["subdir"])