We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In write_power_balance.jl, all electrolyzers report their power consumption as if it were in every zone.
if (!isempty(ELECTROLYZER)) powerbalance[(z-1)*L+11, :] = (-1) * sum(value.(EP[:vUSE][ELECTROLYZER, :].data), dims = 1) end
need something like ELECTROLYZER_ZONE = intersect(dfGen[dfGen.Zone.==z, :R_ID], ELECTROLYZER).
ELECTROLYZER_ZONE = intersect(dfGen[dfGen.Zone.==z, :R_ID], ELECTROLYZER)
The text was updated successfully, but these errors were encountered:
This is now fixed on develop.
develop
Sorry, something went wrong.
Fix #559: report electrolyzer power per-zone (#596)
090fecc
Previously, electrolyzers reported their power as if they were in every zone.
PR #596 fixed this on develop branch
sambuddhac
lbonaldo
No branches or pull requests
In write_power_balance.jl, all electrolyzers report their power consumption as if it were in every zone.
need something like
ELECTROLYZER_ZONE = intersect(dfGen[dfGen.Zone.==z, :R_ID], ELECTROLYZER)
.The text was updated successfully, but these errors were encountered: