gas.py
Gas-related pre-network modifications for the modify_prenetwork step.
make_gas_pipelines_unextendable(n, snakemake)
Disallow expansion of methane pipelines - both new and existing
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
pypsa.Network
|
The pre-network to be modified in place. |
required |
snakemake
|
snakemake.script.Snakemake
|
The Snakemake workflow object providing inputs, params, config, and wildcards. |
required |
Returns:
| Type | Description |
|---|---|
None
|
Updates the pypsa.Network in place. |
Source code in mods/network/gas.py
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 | |
override_gas_storage_capacities(n, snakemake)
Override gas Store e_nom_min with validated storage capacities.
Reads data/pypsa-at/gas_input_locations_s_AT35DE16_updated.csv (AT NUTS3
+ DE NUTS1 resolution) and overwrites e_nom_min on all matched gas Store
components. Aggregates to the network's actual bus resolution:
- DE NUTS1 → DE5 macro-regions when the network uses DE5 clustering (detected from bus location names; DE NUTS1 states use letter suffixes DEA–DEG)
- AT NUTS3 → NUTS2 when the network uses AT10 clustering (detected from bus location names; AT35 buses have 5-char codes)
DE aggregation uses :func:mods.clustering.map_de_nuts1_to_de5;
AT aggregation uses :func:mods.clustering.map_at_nuts3_to_nuts2.
Buses not present in the CSV keep the e_nom_min set by
prepare_sector_network. No percentile clipping is applied.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
pypsa.Network
|
The pre-network to update in place. |
required |
snakemake
|
snakemake.script.Snakemake
|
The Snakemake workflow object providing config. |
required |
Returns:
| Type | Description |
|---|---|
None
|
Updates |
Source code in mods/network/gas.py
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 | |
unravel_gas_import_and_production(n, snakemake, costs)
Differentiate LNG, pipeline and production gas generators.
Production is cheaper than pipeline gas and LNG is more expensive than pipeline gas.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
pypsa.Network
|
The network before optimisation. |
required |
snakemake
|
snakemake.script.Snakemake
|
The snakemake workflow object. |
required |
costs
|
pandas.DataFrame
|
The costs data for the current planning horizon. |
required |
Returns:
| Type | Description |
|---|---|
None
|
Updates the pypsa.Network in place. |
Source code in mods/network/gas.py
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 | |
update_network_to_stop_ukrainian_gas_transit(n, snakemake)
Stop Ukrainian gas transit by disabling gas imports in affected locations. Selection of relevant cross border points between EU countries and Ukraine by AGGM AG experts.
Locations are identified in data/pypsa-at/ukrainian_gas_transit_stop.json. Matched with n.generators using their country_bus. Imported capacities via Ukraine are subtracted from summed capacity. The relevant countries are only connected to EU countries and Ukraine, leaving their import capacity == 0 .
The network n is updated in place.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
pypsa.Network
|
The network before optimisation. |
required |
snakemake
|
snakemake.script.Snakemake
|
The snakemake workflow object. |
required |
Returns:
| Type | Description |
|---|---|
None
|
Updates the pypsa.Network in place. |
Source code in mods/network/gas.py
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 | |