Dear community,
I wanted to customize my own wildcards to run multiple scenarios at the same time without downloading all data bundles again. For this, I have created different wildcards in _helpers.py (see attachement), like
```if w.get("sector_opts"):
opts = w.sector_opts.split("-")
if "highh2industry" in opts:
config["industry"]["H2_DRI"] = 17
if "hightransportfuelcellshare" in opts:
config["sector"]["land_transport_fuel_cell_share"][2020] = 0
config["sector"]["land_transport_fuel_cell_share"][2025] = 0.15
config["sector"]["land_transport_fuel_cell_share"][2030] = 0.3
config["sector"]["land_transport_fuel_cell_share"][2035] = 0.45
config["sector"]["land_transport_fuel_cell_share"][2040] = 0.7
config["sector"]["land_transport_fuel_cell_share"][2045] = 0.85
config["sector"]["land_transport_fuel_cell_share"][2050] = 1
config["sector"]["land_transport_electric_share"][2020] = 0
config["sector"]["land_transport_electric_share"][2025] = 0
config["sector"]["land_transport_electric_share"][2030] = 0
config["sector"]["land_transport_electric_share"][2035] = 0
config["sector"]["land_transport_electric_share"][2040] = 0
config["sector"]["land_transport_electric_share"][2045] = 0
config["sector"]["land_transport_electric_share"][2050] = 0```
The ran the scenario using following config setting:
```sector_opts:
- '144H-hightransportfuelcellshare'
- '144H-highh2industry'```
When checking my results, I noticed that the transport sector adjustments worked out. However, the industry adjustments can be seen in the result config, but not in the results.
Does someone know, if I can do it in such a way?
Best regards,
Alex