Skip to content

Commit

Permalink
Remove the word 'function' from docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonaldo committed Dec 4, 2024
1 parent 3b7357f commit b08e94a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/model/core/transmission/dcopf_transmission.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@doc raw"""
function dcopf_transmission!(EP::Model, inputs::Dict, setup::Dict)
dcopf_transmission!(EP::Model, inputs::Dict, setup::Dict)
The addtional constraints imposed upon the line flows in the case of DC-OPF are as follows:
For the definition of the line flows, in terms of the voltage phase angles:
```math
Expand Down
4 changes: 2 additions & 2 deletions src/model/core/transmission/investment_transmission.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@doc raw"""
function investment_transmission!(EP::Model, inputs::Dict, setup::Dict)
investment_transmission!(EP::Model, inputs::Dict, setup::Dict)
This function model transmission expansion and adds transmission reinforcement or construction costs to the objective function. Transmission reinforcement costs are equal to the sum across all lines of the product between the transmission reinforcement/construction cost, $\pi^{TCAP}_{l}$, times the additional transmission capacity variable, $\bigtriangleup\varphi^{cap}_{l}$.
```math
\begin{aligned}
Expand All @@ -8,7 +8,7 @@ This function model transmission expansion and adds transmission reinforcement o
```
Note that fixed O\&M and replacement capital costs (depreciation) for existing transmission capacity is treated as a sunk cost and not included explicitly in the GenX objective function.
**Accounting for Transmission Between Zones**\\
**Accounting for Transmission Between Zones**
Available transmission capacity between zones is set equal to the existing line's maximum power transfer capacity, $\overline{\varphi^{cap}_{l}}$, plus any transmission capacity added on that line (for lines eligible for expansion in the set $\mathcal{E}$).
```math
Expand Down

0 comments on commit b08e94a

Please sign in to comment.