-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature/equate variable for same optimisation #43
base: production
Are you sure you want to change the base?
Conversation
@@ -117,6 +117,7 @@ def build_solph_components(self): | |||
raise ValueError("Length mismatch between t_air and ghi profiles.") | |||
# calculates the temperature factor values | |||
pv_tf_values = [] | |||
# TODO document those equations |
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.
@JulianBarinton - the conversion factor used here for PV panel seems faulty, do you know where this model comes from?
name;type;carrier;tech;capacity;capacity_cost;marginal_cost;carrier_cost;from_bus;to_bus;t_air;ghi;p_rpv;r_ref;n_t;t_c_ref;noct;expandable | ||
pv-panel;pv-panel;solar-energy;pv;0;0;0;0;solar-energy-bus;elec-bus;t-air;ghi;270;1000;-0.0037;25;48;False | ||
name;type;carrier;tech;capacity;capacity_cost;marginal_cost;carrier_cost;capacity_potential;from_bus;to_bus;t_air;ghi;p_rpv;r_ref;n_t;t_c_ref;noct;expandable | ||
pv-panel;pv-panel;solar-energy;pv;0;0;0;-0.1;100;solar-energy-bus;elec-bus;t-air;ghi;270;1000;-0.0037;25;48;True |
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.
I set negative costs to force pv-panel optimization for this usecase
@@ -0,0 +1,2 @@ | |||
name;type |
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.
This file is added to force PV Panel to match solar-radiation when optimized
89624ca
to
0cdf209
Compare
Need to warn user if the PVPanel has existing capacity, otherwise solution is unbounded. The output power does not make any sense, there must be a typo The aggragated delivered power correspond to aggregated ghi multiplied by the optimized capacity
0cdf209
to
f10d1d5
Compare
Summary of the discussion
We wanted to make sure the energy from the sun shining on a crop cannot be larger than the surface of the crop times the ghi of the sun
Type of change (CHANGELOG.md)
Added