Multi-year DUPV profiles #180
-
I'm trying to compile the new multiple weather year data from ReEDS and am looking for some help to understand the distributed PV capacity and profiles. I've previously taken state-level capacity and generation profiles directly from the Cambium results, which is based on the 2012 weather year. ReEDS now seems to have a file ( I could use distributed PV capacity from the files in ReEDS or directly from the 2023 Standard Scenarios results, but both give total capacity per BA and the generation capacity factors are by resource class within BA. I haven't found anything in the ReEDS code that deals with this. Should I fill up resources class capacity starting with the lowest number and create a weighted average capacity factor profile? Or is there another set of data that I should look at? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
ReEDS has two distributed PV capacity inputs: DUPV and distPV. DUPV is distributed utility PV in urban region, and distPV is behind-the-meter rooftop PV. We disabled DUPV a while ago (maybe about a year ago?) because we merged the DUPV with the UPV, so now all utility PV is captured in the UPV supply curves and generation profiles. The distPV hourly profiles come from dGen, which only has a single year of weather data. Therefore, to approximate distPV profiles in ReEDS, we use the UPV profiles, but scale them to match the annual capacity factors produced by dGen. See https://github.com/NREL/ReEDS-2.0/blob/main/input_processing/LDC_prep.py#L156 for where that happens in ReEDS. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick answer, and good to know about the DUPV/distPV difference. Additional data files have been added to ReEDS over time and it can be difficult to determine which are current vs legacy. The code in |
Beta Was this translation helpful? Give feedback.
ReEDS has two distributed PV capacity inputs: DUPV and distPV. DUPV is distributed utility PV in urban region, and distPV is behind-the-meter rooftop PV. We disabled DUPV a while ago (maybe about a year ago?) because we merged the DUPV with the UPV, so now all utility PV is captured in the UPV supply curves and generation profiles. The distPV hourly profiles come from dGen, which only has a single year of weather data. Therefore, to approximate distPV profiles in ReEDS, we use the UPV profiles, but scale them to match the annual capacity factors produced by dGen. See https://github.com/NREL/ReEDS-2.0/blob/main/input_processing/LDC_prep.py#L156 for where that happens in ReEDS.