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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,32 @@ Classify the change according to the following categories:
26
26
##### Removed
27
27
### Patches
28
28
29
+
## v3.12.0
30
+
### Major Updates
31
+
### Added
32
+
- Add inputs:
33
+
-**ElectricUtility.cambium_cef_metric** to utilize clean energy data from NREL's Cambium database
34
+
-**ElectricUtility.renewable_energy_fraction_series** to supply a custom grid clean or renewable energy scalar or series
35
+
-**Site.include_grid_renewable_fraction_in_RE_constraints** - to allow user to choose whether to include grid RE in min max constraints
36
+
-**ElectricStorage.optimize_soc_init_fraction** (defaults to false), which makes the optimization choose the inital SOC (equal to final SOC) instead of using soc_init_fraction. The initial SOC is also constrained to equal the final SOC, which eliminates the "free energy" issue. We currently do not fix SOC when soc_init_fraction is used because this has caused infeasibility.
37
+
-**ElectricStorage.min_duration_hours** and **ElectricStorage.max_duration_hours** for limitting electric storage's energy capacity relative to its power capacity
-**ElectricUtility.cambium_metric_col** changed to **ElectricUtility.cambium_co2_metric**, to distinguish between the CO2 and clean energy fraction metrics
46
+
- Change name of the following outputs:
47
+
-**ElectricUtility.cambium_emissions_region** changed to **ElectricUtility.cambium_region**
48
+
-**Site.annual_renewable_electricity_kwh** changed to **Site.annual_onsite_renewable_electricity_kwh**
49
+
-**Site.renewable_electricity_fraction** changed to **Site.onsite_renewable_electricity_fraction_of_elec_load**
50
+
-**Site.total_renewable_energy_fraction** changed to **Site.onsite_renewable_energy_fraction_of_total_load**
51
+
- Change v3 endpoint `cambium_emissions_profile` to `cambium_profile`
52
+
- Change to using REopt.jl v0.51.0, which includes updates to the Cambium, AVERT, and eGRID data used
field=models.FloatField(blank=True, default=100000.0, help_text='Maximum amount of time storage can discharge at its rated power capacity', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1000000000.0)]),
18
+
),
19
+
migrations.AddField(
20
+
model_name='electricstorageinputs',
21
+
name='min_duration_hours',
22
+
field=models.FloatField(blank=True, default=0.0, help_text='Minimum amount of time storage can discharge at its rated power capacity', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1000000000.0)]),
0 commit comments