Skip to content

Commit e69d563

Browse files
authored
Merge pull request #18 from SOPTIM/default-link-resistance
2 parents e728fd6 + e8d72d8 commit e69d563

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cgmes2pgm_converter"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "Library to convert Common Grid Model Exchange Standard (CGMES) datasets to PowerGridModel (PGM) format"
55
authors = [
66
{ name = "Lars Friedrich, Eduard Fried, Udo Schmitz", email = "powergridmodel@soptim.de" },

src/cgmes2pgm_converter/common/measurement_substitution.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,14 @@ class LinkAsShortLineOptions:
102102
Attributes:
103103
enable (bool): Whether to use SSH values for substitution.
104104
sigma (float): The default sigma value for the substituted measurements (MW).
105+
r (float): Resistance of the short line (Ohm).
106+
x (float): Reactance of the short line (Ohm).
105107
"""
106108

107109
enable: bool = False
108110
sigma_factor: float = 1.5
109-
r: float = 0.01
110-
x: float = 0.01
111+
r: float = 0.005
112+
x: float = 0.030
111113

112114

113115
@dataclass

0 commit comments

Comments
 (0)