You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zaneselvans opened this issue
Mar 1, 2022
· 0 comments
· Fixed by #1518
Assignees
Labels
bugThings that are just plain broken.eia923Anything having to do with EIA Form 923outputExporting data from PUDL into other platforms or interchange formats.
Generation fuel table is split into nukes and non-nukes
Some output tables use the generation_fuel_eia923 table and assume that it contains ALL the generation_fuel records. Which is now false. E.g. MCOE and net generation allocation. However, these dependent outputs don't realize that they are now working with incomplete data.
One option: concatenate the gf and gfn tables and recreate the previously existing generation_fuel_eia923 output table.
Another option, create 3 (no nukes, with nukes, combined).
Concern: Are we going to just lose the generator level granularity that we've got in the nukes? They're not many of the records, but they are 20% of the overall generation. May want to address that. Should create an issue to fix this and integrate that granularity into the net generation allocation process etc.
Example from CG implemented in the DBCP context:
# generate the generation fuel table & its nuclear counterpart# in order to SQUISH THEM together and reassigned this squished# version of the gen fuel tables into the cached pudl_out table# this way the subsequent outputs which use the gen fuel table# *cough cough* MCOE have the nuclear generators in there.gf=pudl_out.gf_eia923()
# only add it in if the nuclear ID isn't in the columns# which indicates that these two tables have not been SQUISHEDif'nuclear_unit_id'notingf:
gfn=pudl_out.gfn_eia923()
pudl_out._dfs['gf_eia923'] =pd.concat([gf, gfn])
The text was updated successfully, but these errors were encountered:
zaneselvans
added
bug
Things that are just plain broken.
eia923
Anything having to do with EIA Form 923
output
Exporting data from PUDL into other platforms or interchange formats.
labels
Mar 1, 2022
bugThings that are just plain broken.eia923Anything having to do with EIA Form 923outputExporting data from PUDL into other platforms or interchange formats.
generation_fuel_eia923
output table.Example from CG implemented in the DBCP context:
The text was updated successfully, but these errors were encountered: