Basic question about how PUDL maps EIA data to its schema #1682
-
Investigating PUDL. Took time to query some data around the entity for whom I work, PRPA which operates Rawhide (6761). I queried some data on plant_id_eia (aka PlantCode) 6761 from the PUDL generation_eia923 table and was perplexed to find in didn't initially agree with the the results I pulled from the EIA v2 API. Further investigation revealed that PUDL had not included generation from the NG turbines at the plant. I found this odd since the PUDL metadata indicates the data is associated EIA Form 923 Schedule 3 and that same form contains entry in Part B of Schedule 3 page 7 FUEL AND GENERATION INFORMATION FOR SINGLE CYCLE GAS TURBINES. Please inform my as to why PUDL choose to associate only coal-fire steam turbines generation for data in the above mentioned table or what I am missing in my initial investigation. Cheers. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are several different places that "generation" is reported in the EIA 923, and IIRC, only around half of all generation gets reported to the Querying generation_fuel_eia923 for plant ID 6761 you can see a wider range of generation, including a bunch of natural gas fired gas turbines. I suspect if you aggregate the net generation by plant ID in that table, you should get numbers which are very similar to what you'd find at the plant level in the EIA API. Here's that aggregation if you want to compare and let us know! The availability of more granular generator or prime-mover level data is one of the main reasons that we go to all of the trouble of working with the spreadsheets EIA publishes, rather than using the API. Being able to pull out the operating costs and emissions of individual generators is necessary for regulatory proceedings where one unit may have very different characteristics from another. We've got some routines which try to attribute the generation and fuel consumption that's reported by plant-primemover-fuel in the |
Beta Was this translation helpful? Give feedback.
There are several different places that "generation" is reported in the EIA 923, and IIRC, only around half of all generation gets reported to the
generation_eia923
table on a per-generator basis. However, all generation does show up in thegeneration_fuel_eia923
table, on the basis of plant ID, prime mover, and fuel. This is admittedly a weird combo, and it does not map directly to individual generators, but that's how the data is reported. I took a quick look at the EIA v2 API and it looked like they were aggregating all the generation and fuel consumption at the plant ID level, right?Querying generation_fuel_eia923 for plant ID 6761 you can see a wider range of generation, including a…