-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
v0.32.4 #241
Conversation
PV size changed by 2% which aligns with change in PV output with update to v8
For both production factor (PV) and ambient air temperature data (GHP)
…actor at the same time This avoids an extra call of PVWatts with GHP and PV
This allows for assigning pv.production_factor_series when calling PVWatts for GHP, to avoid a extra PVWatts calls later
The get_ambient_temperature() function is now combined into that call.
The energy_rates array was 8784 instead of skipping the leap year day like the rest of the code does This was throwing errors when checking the length of the input like wholesale_rate (8760) with energy_rate from URDB (8784 in this case)
Update to PVWatts v8 from v6
Hot fix for rates with non standard units
Update test values due to PVWatts v8 Update
Generator installed_cost_per_kw default
@@ -82,7 +82,7 @@ | |||
If `azimuth` is not provided, then it is set to 180 if the site is in the northern hemisphere and 0 if in the southern hemisphere. | |||
|
|||
""" | |||
struct PV <: AbstractTech | |||
mutable struct PV <: AbstractTech |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine for now but for performance we should be trying to avoid making structs mutable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hdunham do you want to make an issue for this? This was a change Bill made in order to allow for assigning pv.production_factor_series when calling PVWatts for GHP, to avoid a extra PVWatts calls later.
See PRs:
fix for rates with non standard units #236
Update to PVWatts v8 from v6 #233
Update test values due to PVWatts v8 Update #242
Generator installed_cost_per_kw default #238