Skip to content

Commit 67c54b1

Browse files
authored
Merge pull request #101 from hecerinc/master
Fix typos
2 parents bf96fe7 + 33861ce commit 67c54b1

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

switch_model/balancing/load_zones.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def define_components(mod):
114114
def define_dynamic_components(mod):
115115
"""
116116
Adds components to a Pyomo abstract model object to enforce the
117-
first law of thermodynamics at the level of load zone busses. Unless
117+
first law of thermodynamics at the level of load zone buses. Unless
118118
otherwise stated, all terms describing power are in units of MW and
119119
all terms describing energy are in units of MWh.
120120

switch_model/generators/core/dispatch.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
"""
55
Defines model components to describe generation projects build-outs for
6-
the SWITCH-Pyomo model. This module requires either operations.unitcommit or
7-
operations.no_commit to constrain project dispatch to either committed or
6+
the SWITCH-Pyomo model. This module requires either generators.core.unitcommit or
7+
generators.core.no_commit to constrain project dispatch to either committed or
88
installed capacity.
99
1010
"""
@@ -86,7 +86,7 @@ def define_components(mod):
8686
8787
gen_full_load_heat_rate[g] is the full load heat rate in units
8888
of MMBTU/MWh that describes the thermal efficiency of a project when
89-
runnign at full load. This optional parameter overrides the generic
89+
running at full load. This optional parameter overrides the generic
9090
heat rate of a generation technology. In the future, we may expand
9191
this to be indexed by fuel source as well if we need to support a
9292
multi-fuel generator whose heat rate depends on fuel source.

switch_model/policies/rps_simple.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ def load_inputs(mod, switch_data, inputs_dir):
116116
117117
Mandatory input files:
118118
rps_targets.tab
119-
PERIOD rps_target
119+
PERIOD, rps_target
120120
121121
The optional parameter to define fuels as RPS eligible can be inputted
122122
in the following file:
123123
fuels.tab
124-
fuel f_rps_eligible
124+
fuel, f_rps_eligible
125125
126126
"""
127127

switch_model/timescales.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def define_components(mod):
198198
period on the grid with surplus wind power and frequent
199199
curtailments.
200200
201-
This timeseries describing 3 days in Spring is composted of 72
201+
This timeseries describing 3 days in Spring is composed of 72
202202
timepoints, each representing 1 hour. The timeseries is scaled up by
203203
a factor of 21.3 to represent the 61 days of March and April, then
204204
scaled by another factor of 10 to represent a 10-year period.

switch_model/transmission/local_td.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def define_components(mod):
6060
the perspective of the central grid. We currently prohibit injections into
6161
the central grid because it would create a mathematical loophole for
6262
"spilling power" and we currently lack use cases that need this. We cannot
63-
use a single unsigned varaible for this without introducing errrors in
63+
use a single unsigned variable for this without introducing errrors in
6464
calculating Local T&D line losses. WithdrawFromCentralGrid is added to the
6565
load_zone power balance, and has a corresponding expression from the
6666
perspective of the distributed node:
@@ -81,7 +81,7 @@ def define_components(mod):
8181
8282
EXISTING_LOCAL_TD_BLD_YRS is a subset of LOCAL_TD_BLD_YRS that
8383
lists builds that happened before the first investment period. For
84-
most datasets the build year is unknown, so is it always set to
84+
most datasets the build year is unknown, so it is always set to
8585
'Legacy'.
8686
8787
existing_local_td[z in LOAD_ZONES] is the amount of local
@@ -135,7 +135,7 @@ def define_components(mod):
135135
online indefinitely. At the end of its financial lifetime, existing
136136
capacity will be retired and rebuilt, so the annual cost of a line
137137
upgrade will remain constant in every future year. See notes in the
138-
trans_build module for more a more detailed comparison to the old
138+
trans_build module for a more detailed comparison to the old
139139
SWITCH-WECC model.
140140
141141
"""

switch_model/transmission/transport/build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def define_components(mod):
2424
TRANSMISSION_LINES is the complete set of transmission pathways
2525
connecting load zones. Each member of this set is a one dimensional
2626
identifier such as "A-B". This set has no regard for directionality
27-
of transmisison lines and will generate an error if you specify two
27+
of transmission lines and will generate an error if you specify two
2828
lines that move in opposite directions such as (A to B) and (B to
2929
A). Another derived set - TRANS_LINES_DIRECTIONAL - stores
3030
directional information. Transmission may be abbreviated as trans or
@@ -69,7 +69,7 @@ def define_components(mod):
6969
potential builds.
7070
7171
BuildTx[(tx, bld_yr) in BLD_YRS_FOR_TX] is a decision variable
72-
that describes the transfer capacity in MW installed on a cooridor
72+
that describes the transfer capacity in MW installed on a corridor
7373
in a given build year. For existing builds, this variable is locked
7474
to the existing capacity.
7575

0 commit comments

Comments
 (0)