You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I implemented individual methods for each loss type (excluding availability) using equations from the ORCA model, as well as a method for total losses. This allows for easy integration across different methods in project.py, particularly benefiting the capacity_factor function.
Since loss_ratio is used extensively across project.py, I opted to remove it entirely instead of replacing it with environmental_loss_ratio. Consequently, I updated the documentation and modified functions like energy_potential() to use the new total_loss_ratio() method.
I implemented changes in energy_potential() so that the net_capacity_factor is calculated using total_loss_ratio() instead of the old (and eliminated) loss_ratio
Currently the
Project.energy_losses
method incorrectly calculates the losses, and should replicate the ORCA model.Steps to completion:
Project.loss_ratio
toProject.environmental_losses
with a default of 0.0159Project.energy_losses
to be of the form:1 - [(1 - L_1) * (1 - L_2) … * (1 - L_n)]
where we have:project_type
Project.energy_losses
to optionally provide the categorical breakout of each of the above loss categoriesProject.loss_ratio
The text was updated successfully, but these errors were encountered: