types
OepTypes
¶
Bases: Enum
Defines the OepTypes enumeration that categorizes various types of energy systems and technologies. Each enumeration value represents a specific energy-related component, along with its associated category, such as storage, source, or converter.
This enumeration can be used for energy modeling, categorization, and analysis in energy systems. It provides an organized scheme for referencing and interacting with different energy-related components.
Attributes:
Name | Type | Description |
---|---|---|
storage_electricity |
An energy storage system for electricity, categorized as generic storage. |
|
storage_electricity_pumped_hydro_storage_power_technology |
A pumped hydro energy storage system, categorized as generic storage. |
|
storage_gas |
A gas storage system, categorized as generic storage. |
|
storage_heat_district_heating |
A heat storage system for district heating, categorized as generic storage. |
|
storage_heat_seasonal |
A seasonal heat storage system, categorized as generic storage. |
|
storage_hydrogen |
A hydrogen storage system, categorized as generic storage. |
|
fuel_cells |
A fuel cell system for energy generation, categorized as a source. |
|
hydrogen_feed_in |
A hydrogen feed-in system, categorized as a source. |
|
onshore_wind_power_plant |
An onshore wind power generator, categorized as a source. |
|
rooftop_photovoltaic_power_plant |
A rooftop photovoltaic system, categorized as a source. |
|
run_river_power_plant |
A run-of-river power generation plant, categorized as a source. |
|
solar_thermal_power_plant |
A solar thermal power generation plant, categorized as a source. |
|
power_to_liquid_system |
A system converting power to liquid fuel, categorized as a converter. |
|
biogas_combined_heat_and_power_plant |
A biogas-fueled combined heat and power generation plant, categorized as a converter. |
|
biogas_upgrading_plant |
A plant for upgrading biogas, categorized as a converter. |
|
biomass_combined_heat_and_power_plant |
A biomass-fueled combined heat and power generation plant, categorized as a converter. |
|
biomass_heating_plant |
A biomass-based heating system, categorized as a converter. |
|
biomass_power_plant |
A biomass-fueled power generation plant, categorized as a converter. |
|
biomass_to_liquid_system |
A system converting biomass to liquid fuel, categorized as a converter. |
|
biomethane_injection_plant |
A system for injecting biomethane into the grid, categorized as a converter. |
|
combined_heat_and_power_generating_unit |
A combined heat and power-generating unit, categorized as a converter. |
|
electrical_heater |
An electrical heater, categorized as a converter. |
|
electrolysis |
A system for producing hydrogen through electrolysis, categorized as a converter. |
|
heat_pump_air_waste_heat |
A heat pump system using waste heat from air, categorized as a converter. |
|
heat_pump_air_ambient_heat |
A heat pump system utilizing ambient air heat, categorized as a converter. |
|
heat_pump_ground_river_heat |
A heat pump that uses ground or river heat, categorized as a converter. |
|
methanation |
A system for producing methane from hydrogen and CO2, categorized as a converter. |
Source code in backend/app/types.py
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 |
|