-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into df/#1176-heat-pump-targetTemp
# Conflicts: # CHANGELOG.md
- Loading branch information
Showing
31 changed files
with
976 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
(voltage_limits)= | ||
|
||
# Voltage Limits | ||
|
||
The voltage limits are built up by specifying the included voltage levels. The following table describes typical network | ||
levels and their parameterization. They are primarily used for the optional congestion management. | ||
|
||
## Default voltage limits | ||
|
||
```{list-table} | ||
:widths: auto | ||
:header-rows: 1 | ||
* - Voltage level (id) | ||
- Minimal voltage (vMin) | ||
- Maximal voltage (vMax) | ||
* - LV | ||
- 0.9 p.u. | ||
- 1.1 p.u. | ||
* - MV (10 kV) | ||
- 0.9 p.u. | ||
- 1.1 p.u. | ||
* - MV (20 kV) | ||
- 0.9 p.u. | ||
- 1.1 p.u. | ||
* - MV (30 kV) | ||
- 0.9 p.u. | ||
- 1.1 p.u. | ||
* - HV | ||
- 0.9 p.u. | ||
- 1.1 p.u. | ||
* - EHV (220 kV) | ||
- 0.9 p.u. | ||
- 1.118 p.u. | ||
* - EHV (380 kV) | ||
- 0.9 p.u. | ||
- 1.05 p.u. | ||
``` | ||
|
||
**References:** | ||
|
||
* {cite:cts}`EN_50160` | ||
* {cite:cts}`EU_2017/1485` | ||
|
||
## Configuration of the voltage limits | ||
|
||
To configure the voltage limits, the voltage levels listed in the table above must be selected and integrated into the | ||
config. The individual voltage level configuration (voltLvls) according to the example below. Each voltage level consists | ||
of an identifier and the nominal voltage. | ||
|
||
``` | ||
simona.gridConfig.voltageLimits = [ | ||
{vMin = 0.9, vMax = 1.1, voltLvls = [{id = "Lv", vNom = "0.4 kV"}]}, | ||
{vMin = 0.9, vMax = 1.1, voltLvls = [{id = "Mv", vNom = "20 kV"}]}, | ||
{vMin = 0.9, vMax = 1.1, voltLvls = [{id = "Hv", vNom = "110 kV"}]}, | ||
{vMin = 0.9, vMax = 1.05, voltLvls = [{id = "EHV", vNom = "380 kV"}]}, | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.