-
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
Full Illinois Model #27
Changes from all commits
72deeeb
b379a3c
9ed4558
094181e
ae63a18
796abc0
380530b
8612b34
d8f9f8a
cdd9fd0
edb32fc
392d046
2715718
c48e274
32cbafd
0dbd635
11c50f2
e25d70b
db10a1f
81c4ee5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,53 @@ | ||
state_abbr: 'IL' | ||
|
||
geo_res: 'rto' # accepts: 'rto' or 'county' | ||
time_res: 4 # hours | ||
time_res: 1 # hours | ||
load_filter: 60e3 # MW, load above this level will be removed as outliers. | ||
total_demand: 136e6 # Annual MWh in the first year | ||
load_growth: 0.00 # % annual growth | ||
load_share: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How/where is this used? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this parameter is not used, anywhere. I think I intended to assign a fraction of the total demand to each bus region, but it was unnecessary. |
||
MISO-Z4: 0.33 | ||
ComEd: 0.67 | ||
|
||
model_year: 2025 | ||
model_years: [2025, 2030, 2035, 2040, 2045] | ||
plot_year: 2045 | ||
|
||
solar_year: 2019 # NSRDB only accepts years 1998-2020 | ||
wind_year: 2011 # WTK only goes from 2009-2013 | ||
co2_limits: | ||
2020: 31.25 | ||
2025: 25 # MT | ||
2030: 18.75 | ||
2035: 12.5 | ||
2040: 6.25 | ||
2045: 0.0 | ||
|
||
solar_years: [2016,2017,2018,2019,2020] # NSRDB only accepts years 1998-2020 | ||
wind_years: [2009,2010,2011,2012,2013] # WTK only goes from 2009-2013 | ||
load_year: 2019 | ||
|
||
rto_subba: ['0004','CE'] # MISO-Z4, ComEd | ||
region_names: ['MISO-Z4','ComEd'] | ||
|
||
discount_rate: 0.07 | ||
|
||
growth_rates: # MW/year | ||
Nuclear: 1e3 | ||
Biomass: 1e3 | ||
Natural Gas: 10e3 | ||
Coal: 10e3 | ||
Petroleum: 10e3 | ||
Batteries: 5e3 | ||
Solar: 5e3 | ||
Wind: 5e3 | ||
|
||
lifetime: | ||
Nuclear: 80 | ||
Biomass: 40 | ||
Natural Gas: 40 | ||
Coal: 40 | ||
Coal: 50 | ||
Solar: 20 | ||
Wind: 20 | ||
Batteries: 15 | ||
Petroleum: 40 | ||
|
||
atb_params: | ||
atb_year: 2022 # the ATB publication year | ||
|
@@ -56,11 +82,10 @@ atb_params: | |
lines: # this is an assumption | ||
v_nom: 400. | ||
s_nom: 0. | ||
x: 1 # reactance | ||
r: 1 # resistance | ||
x: 0.001 # reactance | ||
r: 0.001 # resistance | ||
s_nom_extendable: True | ||
|
||
|
||
turbine_params: | ||
cut_in: 3.0 # m/s | ||
cut_out: 25.0 # m/s | ||
|
@@ -69,35 +94,25 @@ turbine_params: | |
rated_power: 2.75 # MW | ||
air_density: 1.225 # kg/m^3 | ||
|
||
# extendable_techs: [ | ||
# 'CCAvgCF', | ||
# 'CTAvgCF', | ||
# 'Biopower', | ||
# 'Land-Based Wind', | ||
# 'Utility PV', | ||
# 'IGCCAvgCF', | ||
# 'LWR', | ||
# 'NuclearSMR', | ||
# '10Hr Battery Storage', | ||
# '8Hr Battery Storage', | ||
# '6Hr Battery Storage', | ||
# '4Hr Battery Storage', | ||
# '2Hr Battery Storage' | ||
# ] | ||
nuclear_params: # for existing reactors, 2023 NEI costs in context | ||
capacity_factor: 0.972 | ||
capital_cost: 6.88 # $/MWh | ||
fixed_om: 18.68 # $/MWh | ||
fuel: 5.37 # $/MWh | ||
|
||
extendable_techs: [ | ||
# 'CCAvgCF', | ||
# 'CTAvgCF', | ||
# 'Biopower', | ||
# 'Land-Based Wind', | ||
# 'Utility PV', | ||
# 'IGCCAvgCF', | ||
# 'Biopower', | ||
'Land-Based Wind', | ||
'Utility PV', | ||
# 'LWR', | ||
# 'NuclearSMR', | ||
# '10Hr Battery Storage', | ||
# '8Hr Battery Storage', | ||
# '6Hr Battery Storage', | ||
# '4Hr Battery Storage', | ||
'4Hr Battery Storage', | ||
# '2Hr Battery Storage' | ||
] | ||
|
||
|
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.
When choosing a value for this, may be more instructive to consider the total in the final model year and select a rate that grows to that value.
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.
Instructive in what way?