Skip to content
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

Enhance documentation transmission existing + limit #31

Merged
merged 2 commits into from
Oct 11, 2019
Merged
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
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 |
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems to me that this should be true by default. Can you double check if that is the case?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is 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