Skip to content

Commit

Permalink
Merge pull request #31 from YoungFaithful/dev-docstransmission
Browse files Browse the repository at this point in the history
Enhance documentation transmission existing + limit
  • Loading branch information
YoungFaithful authored Oct 11, 2019
2 parents 1313772 + 954c986 commit bc03663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/opt_cep.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ An overview is provided in the following table:
| type of storage implementation | - | `storage_type` | "none", "simple" or "seasonal" | ::String | "none" |
| allowing conversion (necessary for storage) | - | `conversion` | `true` or `false` | ::Bool | false |
| allowing demand | - | `demand` | `true` or `false` | ::Bool | true |
| allowing dispatchable generation | - | `dispatchable_generation` | `true` or `false` | ::Bool | false |
| allowing dispatchable generation | - | `dispatchable_generation` | `true` or `false` | ::Bool | true |
| allowing non dispatchable generation | - | `non_dispatchable_generation` | `true` or `false` | ::Bool | true |
| allowing transmission | - | `transmission` | `true` or `false` | ::Bool | false |
| fix. installed capacities to dispatch problem | - | `fixed_design_variables` | design variables from design run or nothing | ::OptVariables | nothing |
Expand All @@ -90,7 +90,7 @@ A CapacityExpansion model can be run with or without the technology transmission
If the technology `transmission` is not modeled (`transmission=false`), the transmission between nodes is not restricted, which is equivalent to a copperplate assumption.

!!! note
Include `transmission=true` and `infrastructure = Dict{String,Array}("existing"=>[...,"transmission"], "limit"=>[...,"transmission"])` to model existing `transmission` and limit the total transmission `TRANS` to the values defined in the `lines.csv` file. If no new transmission should be setup, use the same values for existing transmission and the limit.
Include `transmission=true` and `infrastructure = Dict{String,Array}("existing"=>[...,"transmission"], "limit"=>[...,"transmission"])` to model existing `transmission`. This sets the existing transmission `TRANS` to the values defined in the `lines.csv` file in column `power_ex`, and limits the transmission by the values defined in `lines.csv` in the column `power_lim`. If no new transmission should be setup, use the same values for existing transmission(column `power_ex`) and the limit (column `power_lim`).
## Solver
The package provides no `optimizer` and a solver has to be added separately. For the linear optimization problem suggestions are:
- `Clp` as an open source solver
Expand Down

0 comments on commit bc03663

Please sign in to comment.