Starting with a plant_id_eia value, how do I answer: "What type of plant is this? i.e. how does it make power?" #2291
-
Which tables do I need to JOIN, and on what fields? Are there coding tables that are relevant? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@bendnorman answered (on the OpenStreetMapUS Slack where I originally asked this):
|
Beta Was this translation helpful? Give feedback.
-
Unfortunately this is complicated. Because an EIA plant is a collection of potentially heterogeneous generation units, this question will often not have a well defined answer (at least at the plant level). How you go about answering it will depend on what aspect of the power generation you're interested in. If you want to know what kind of generators are being used -- e.g. primary steam turbine, gas combustion turbine, heat recovering steam generator, hydraulic turbine, etc. then those are attributes of the generator, and you should probably join If you care more about what kind of fuel is consumed, and how efficiently it's turned into electricity, then you need to look at the generation units, which are agglomerations of boilers (which consume fuel) and generators (which make electricity). The relationships between boilers and generators can be complex. They can be many-to-many, one-to-many, or many-to-one. EIA provides some of this information, with the We have inferred a much more complete association, which is available in the Note that the associations between individual boilers and generators are also subject to change from year to year! So the Because different kinds/sizes of plants & utilities are subject to different reporting requirements, information about how much fuel was consumed and what kind of fuel was consumed, and how much electricity was ultimately generated is not uniform across all plants/boilers/generators/units... but that information comes from the The coding tables are relevant if you want to look up the meaning of (say) the |
Beta Was this translation helpful? Give feedback.
-
As part of the Open Grid Emissions Initiative, we specifically answer some of these questions. For example, if you download the plant static attributes table from our data download page, we've already done the processing to identify the primary fuel type of each plant. Documentation on how we do this is here. Happy to answer questions about the OGE project if you're looking for pre-processed data like this. |
Beta Was this translation helpful? Give feedback.
Unfortunately this is complicated.
Because an EIA plant is a collection of potentially heterogeneous generation units, this question will often not have a well defined answer (at least at the plant level). How you go about answering it will depend on what aspect of the power generation you're interested in.
If you want to know what kind of generators are being used -- e.g. primary steam turbine, gas combustion turbine, heat recovering steam generator, hydraulic turbine, etc. then those are attributes of the generator, and you should probably join
generator_entities_eia
andgenerators_eia860
onplant_id_eia
andgenerator_id
.If you care more about what kind of fuel is consumed, and how eff…