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 | |
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 | |
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 | |
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 | |
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 | |