NREL-Sienna / PowerGraphics.jl

A package to generate visualizations from PowerSimulations.jl results. Part of the Scalable Integrated Infrastructure Planning Initiative at the National Renewable Energy Lab.

Home Page:https://www.nrel.gov/analysis/sienna.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inconsistent results renewable energy

jd-lara opened this issue · comments

For the same results in a simulation, the returning plots are inconsistent

fuel_plot(uc_results, sys_DA, stair = true, load=true, curtailment = true)
Screen Shot 2020-07-30 at 11 19 12 AM

fuel_plot(uc_results, sys_DA)
Screen Shot 2020-07-30 at 11 18 49 AM

which one is correct?

I believe the first one, this is the full stack

image

fuel_plot(uc_results, sys_DA, load=true)
image

It looks like it's not getting the parameter values for :FixedOutput

I haven't looked at this deeply, but I'm guessing it should get resolved within definitions.jl in one of the places where lists get created of which variables get plotted

@claytonpbarrows @jd-lara in line 53

VARIABLE_TYPES = ["P", "Spin", "Reg", "Flex"]

SUPPORTEDGENPARAMS = [
    "RenewableDispatch",
    "RenewableFix",
    "HydroDispatch",
    "HydroEnergyReservoir",
    "ThermalStandard",
]

SUPPORTEDLOADPARAMS = ["PowerLoad"]

I suspect somewhere here FixedOutput should be added

@jd-lara I can't reproduce. Even with the code you sent me.
image

@claytonpbarrows use fuel_plot(uc_results, sys_DA, load=true) only in the ED result. The problem doesn't show up when plotting the curtailment.