Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion electricitylci/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
OVERFLOW_E = ['MIXED', 'OTHF']
'''list: Non-green fuels that can lend overflow electricity for res. mixes.'''

REM_WEIGHT_METHODS = ['count',]
REM_WEIGHT_METHODS = ['count', 'gen']
'''list : State-level REC sales to Balancing authority weighting methods.'''

NEG_REM_METHODS = ['zero', 'keep']
Expand Down
2 changes: 1 addition & 1 deletion electricitylci/model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ModelSpecs:
Whether to create "at user; residual consumption mix" product systems.
rem_weight_method : str
The state-to-balancing authority weighting method (e.g., by facility
'count' or by 'areal' weights).
'count' or by facility 'gen' weights).
neg_rem_method : str
The method to deal with negative renewable electricity generation
(e.g., if REC sales in a BA are greater than renewable electricity generation); choose either to 'zero' excess or 'keep' excess and
Expand Down
9 changes: 4 additions & 5 deletions electricitylci/modelconfig/ELCI_2022_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,10 @@ output_residual_mix: true
add_rem_product_systems: true

# Option for state-to-BA level aggregation method. Options include:
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'area' - performs normalized areal-weighting method between state
# and balancing authority boundaries.
# (NOT CURRENTLY IMPLEMENTED)
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'gen' - uses facility-level annual generation as weights to the 'count'
# method.
rem_weight_method: 'count'

# Option for handling REC totals that are greater than the renewable
Expand Down
11 changes: 5 additions & 6 deletions electricitylci/modelconfig/ELCI_2023_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,11 @@ output_residual_mix: true
add_rem_product_systems: true

# Option for state-to-BA level aggregation method. Options include:
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'area' - performs normalized areal-weighting method between state
# and balancing authority boundaries.
# (NOT CURRENTLY IMPLEMENTED)
rem_weight_method: 'count'
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'gen' - uses facility-level annual generation as weights to the 'count'
# method.
rem_weight_method: 'gen'

# Option for handling REC totals that are greater than the renewable
# energy generated by a balancing authority. Options include:
Expand Down
9 changes: 4 additions & 5 deletions electricitylci/modelconfig/ELCI_2024_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,10 @@ output_residual_mix: true
add_rem_product_systems: true

# Option for state-to-BA level aggregation method. Options include:
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'area' - performs normalized areal-weighting method between state
# and balancing authority boundaries.
# (NOT CURRENTLY IMPLEMENTED)
# 'count' - uses facility counts that fall within the shared regions
# of states and balancing authorities.
# 'gen' - uses facility-level annual generation as weights to the 'count'
# method.
rem_weight_method: 'count'

# Option for handling REC totals that are greater than the renewable
Expand Down
Loading