(?&y_winding))(?P(?&p_set_1))" # yy
+ "|(?P(?&y_winding))(?P(?&d_winding))(?P(?&p_set_2))" # yd
+ "|(?P(?&y_winding))(?P(?&z_winding))(?P(?&p_set_2))" # yz
+ "|(?P(?&d_winding))(?P(?&z_winding))(?P(?&p_set_1))" # dz
+ "|(?P(?&d_winding))(?P(?&y_winding))(?P(?&p_set_2))" # dy
+ "|(?P(?&d_winding))(?P(?&d_winding))(?P(?&p_set_1)))", # dd
+ regex.IGNORECASE,
+ )
+ """The pattern to extract the winding of the primary and of the secondary of the transformer."""
+
+ @ureg_wraps(None, (None, None, None, "V", "V", "VA", "W", "", "W", ""), strict=False)
def __init__(
self,
id: Id,
- windings: str,
+ type: str,
uhv: float,
ulv: float,
sn: float,
@@ -34,8 +59,10 @@ def __init__(
id:
A unique ID of the transformer parameters, typically its canonical name.
- windings:
- The type of windings such as "Dyn11"
+ type:
+ The type of transformer parameters. It can be "single" for single-phase transformers, "center" for
+ center-tapped transformers, or the name of the windings such as "Dyn11" for three-phase transformers.
+ Allowed windings are "D" for delta, "Y" for wye (star), and "Z" for zigzag.
uhv:
Phase-to-phase nominal voltages of the high voltages side (V)
@@ -53,10 +80,10 @@ def __init__(
Current during off-load test (%)
psc:
- Losses during short circuit test (W)
+ Losses during short-circuit test (W)
vsc:
- Voltages on LV side during short circuit test (%)
+ Voltages on LV side during short-circuit test (%)
"""
super().__init__(id)
self._sn = sn
@@ -66,11 +93,16 @@ def __init__(
self._p0 = p0
self._psc = psc
self._vsc = vsc
- self.windings = windings
- self.winding1, self.winding2, self.phase_displacement = TransformerType.extract_windings(string=windings)
+ self.type = type
+ if type in ("single", "center"):
+ self.winding1 = None
+ self.winding2 = None
+ self.phase_displacement = None
+ else:
+ self.winding1, self.winding2, self.phase_displacement = self.extract_windings(string=type)
# Check
- if uhv <= ulv:
+ if uhv < ulv:
msg = (
f"Transformer type {id!r} has the low voltages higher than the high voltages: "
f"uhv={uhv:.2f} V and ulv={ulv:.2f} V."
@@ -86,7 +118,7 @@ def __init__(
raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_PARAMETERS)
if vsc > 1.0 or vsc < 0.0:
msg = (
- f"Transformer type {id!r} has the 'voltages on LV side during short circuit test' "
+ f"Transformer type {id!r} has the 'voltages on LV side during short-circuit test' "
f"vsc={vsc}. It is a percentage that should be between 0 and 1."
)
logger.error(msg)
@@ -110,7 +142,7 @@ def __eq__(self, other: object) -> bool:
else:
return (
self.id == other.id
- and self.windings == other.windings
+ and self.type == other.type
and np.isclose(self._sn, other._sn)
and np.isclose(self._p0, other._p0)
and np.isclose(self._i0, other._i0)
@@ -121,81 +153,49 @@ def __eq__(self, other: object) -> bool:
)
@property
- @ureg.wraps("V", (None,), strict=False)
- def uhv(self) -> Q_:
+ @ureg_wraps("V", (None,), strict=False)
+ def uhv(self) -> Q_[float]:
"""Phase-to-phase nominal voltages of the high voltages side (V)"""
return self._uhv
@property
- @ureg.wraps("V", (None,), strict=False)
- def ulv(self) -> Q_:
+ @ureg_wraps("V", (None,), strict=False)
+ def ulv(self) -> Q_[float]:
"""Phase-to-phase nominal voltages of the low voltages side (V)"""
return self._ulv
@property
- @ureg.wraps("VA", (None,), strict=False)
- def sn(self) -> Q_:
+ @ureg_wraps("VA", (None,), strict=False)
+ def sn(self) -> Q_[float]:
"""The nominal power of the transformer (VA)"""
return self._sn
@property
- @ureg.wraps("W", (None,), strict=False)
- def p0(self) -> Q_:
+ @ureg_wraps("W", (None,), strict=False)
+ def p0(self) -> Q_[float]:
"""Losses during off-load test (W)"""
return self._p0
@property
- @ureg.wraps("", (None,), strict=False)
- def i0(self) -> float:
+ @ureg_wraps("", (None,), strict=False)
+ def i0(self) -> Q_[float]:
"""Current during off-load test (%)"""
return self._i0
@property
- @ureg.wraps("W", (None,), strict=False)
- def psc(self) -> Q_:
- """Losses during short circuit test (W)"""
+ @ureg_wraps("W", (None,), strict=False)
+ def psc(self) -> Q_[float]:
+ """Losses during short-circuit test (W)"""
return self._psc
@property
- @ureg.wraps("", (None,), strict=False)
- def vsc(self) -> float:
- """Voltages on LV side during short circuit test (%)"""
+ @ureg_wraps("", (None,), strict=False)
+ def vsc(self) -> Q_[float]:
+ """Voltages on LV side during short-circuit test (%)"""
return self._vsc
- @classmethod
- def from_name(cls, name: str, windings: str) -> Self:
- """Construct TransformerParameters from name and windings.
-
- Args:
- name:
- The name of the transformer parameters, such as `"160kVA"` or `"H61_50kVA"`.
-
- windings:
- The type of windings such as `"Dyn11"`.
-
- Returns:
- The constructed transformer parameters.
- """
- if name == "H61_50kVA":
- return cls(
- id=name, windings=windings, uhv=20000, ulv=400, sn=50 * 1e3, p0=145, i0=1.8 / 100, psc=1350, vsc=4 / 100
- )
- elif name[-3:] == "kVA":
- try:
- sn = float(name[:-3])
- except ValueError:
- msg = f"The transformer type name does not follow the syntax rule. {name!r} was provided."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX) from None
- else:
- return cls(name, windings, 20000, 400, sn * 1e3, 460, 2.3 / 100, 2350, 4 / 100)
- else:
- msg = f"The transformer type name does not follow the syntax rule. {name!r} was provided."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX)
-
- @ureg.wraps(("ohm", "S", "", None), (None,), strict=False)
- def to_zyk(self) -> tuple[Q_, Q_, float, float]:
+ @ureg_wraps(("ohm", "S", "", None), (None,), strict=False)
+ def to_zyk(self) -> tuple[Q_[complex], Q_[complex], Q_[float], float]:
"""Compute the transformer parameters ``z2``, ``ym``, ``k`` and ``orientation`` mandatory
for some models.
@@ -208,9 +208,6 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]:
Returns:
The parameters (``z2``, ``ym``, ``k``, ``orientation``).
"""
- # Extract the windings of the primary and the secondary of the transformer
- winding1, winding2, phase_displacement = TransformerType.extract_windings(self.windings)
-
# Off-load test
# Iron losses resistance (Ohm)
r_iron = self._uhv**2 / self._p0
@@ -221,7 +218,7 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]:
else:
ym = 1 / r_iron
- # Short circuit test
+ # Short-circuit test
r2 = self._psc * (self._ulv / self._sn) ** 2
l2_omega = np.sqrt((self._vsc * self._ulv**2 / self._sn) ** 2 - r2**2)
z2 = r2 + 1j * l2_omega
@@ -229,22 +226,25 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]:
# Change the voltages if the reference voltages is phase to neutral
uhv = self._uhv
ulv = self._ulv
- if winding1[0] in ("y", "Y"):
- uhv /= np.sqrt(3.0)
- if winding2[0] in ("y", "Y"):
- ulv /= np.sqrt(3.0)
- if winding1[0] in ("z", "Z"):
- uhv /= 3.0
- if winding2[0] in ("z", "Z"):
- ulv /= 3.0
-
- if phase_displacement in (5, 6):
- # Reverse winding
- return z2, ym, ulv / uhv, -1.0
+ if self.type == "single" or self.type == "center":
+ orientation = 1.0
else:
- # Normal winding
- assert phase_displacement in (0, 11)
- return z2, ym, ulv / uhv, 1.0
+ # Extract the windings of the primary and the secondary of the transformer
+ if self.winding1[0] in ("y", "Y"):
+ uhv /= np.sqrt(3.0)
+ if self.winding2[0] in ("y", "Y"):
+ ulv /= np.sqrt(3.0)
+ if self.winding1[0] in ("z", "Z"):
+ uhv /= 3.0
+ if self.winding2[0] in ("z", "Z"):
+ ulv /= 3.0
+ if self.phase_displacement in (0, 11): # Normal winding
+ orientation = 1.0
+ else: # Reverse winding
+ assert self.phase_displacement in (5, 6)
+ orientation = -1.0
+
+ return z2, ym, ulv / uhv, orientation
#
# Json Mixin interface
@@ -253,17 +253,17 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]:
def from_dict(cls, data: JsonDict) -> Self:
return cls(
id=data["id"],
- windings=data["type"], # Windings of the transformer
+ type=data["type"], # Type of the transformer
uhv=data["uhv"], # Phase-to-phase nominal voltages of the high voltages side (V)
ulv=data["ulv"], # Phase-to-phase nominal voltages of the low voltages side (V)
- sn=data["sn"],
+ sn=data["sn"], # Nominal power
p0=data["p0"], # Losses during off-load test (W)
- i0=data["i0"],
- psc=data["psc"], # Losses during short circuit test (W)
- vsc=data["vsc"],
+ i0=data["i0"], # Current during off-load test (%)
+ psc=data["psc"], # Losses during short-circuit test (W)
+ vsc=data["vsc"], # Voltages on LV side during short-circuit test (%)
)
- def to_dict(self) -> JsonDict:
+ def to_dict(self, include_geometry: bool = True) -> JsonDict:
return {
"id": self.id,
"sn": self._sn,
@@ -273,7 +273,7 @@ def to_dict(self) -> JsonDict:
"p0": self._p0,
"psc": self._psc,
"vsc": self._vsc,
- "type": self.windings,
+ "type": self.type,
}
def _results_to_dict(self, warning: bool) -> NoReturn:
@@ -285,3 +285,337 @@ def results_from_dict(self, data: JsonDict) -> NoReturn:
msg = f"The {type(self).__name__} has no results to import."
logger.error(msg)
raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.JSON_NO_RESULTS)
+
+ #
+ # Catalogue Mixin
+ #
+ @classmethod
+ def catalogue_path(cls) -> Path:
+ return Path(resources.files("roseau.load_flow") / "data" / "transformers").expanduser().absolute()
+
+ @classmethod
+ def catalogue_data(cls) -> pd.DataFrame:
+ return pd.read_csv(cls.catalogue_path() / "Catalogue.csv")
+
+ @classmethod
+ @ureg_wraps(None, (None, None, None, None, None, None, "VA", "V", "V"), strict=False)
+ def from_catalogue(
+ cls,
+ id: Optional[Union[str, re.Pattern[str]]] = None,
+ manufacturer: Optional[Union[str, re.Pattern[str]]] = None,
+ range: Optional[Union[str, re.Pattern[str]]] = None,
+ efficiency: Optional[Union[str, re.Pattern[str]]] = None,
+ type: Optional[Union[str, re.Pattern[str]]] = None,
+ sn: Optional[float] = None,
+ uhv: Optional[float] = None,
+ ulv: Optional[float] = None,
+ ) -> Self:
+ """Build a transformer parameters from one in the catalogue.
+
+ Args:
+ id:
+ The id of the transformer to get from the catalogue. It can be a regular expression.
+
+ manufacturer:
+ The name of the manufacturer to get. It can be a regular expression.
+
+ range:
+ The name of the product range to get. It can be a regular expression.
+
+ efficiency:
+ The efficiency of the transformer get. It can be a regular expression.
+
+ type:
+ The type of the transformer to get. It can be a regular expression.
+
+ sn:
+ The nominal power of the transformer to get.
+
+ uhv:
+ The primary side voltage of the transformer to get.
+
+ ulv:
+ The secondary side voltage of the transformer to get.
+
+ Returns:
+ The selected transformer. If several transformers fitting the filters are in the catalogue, an error is
+ raised.
+ """
+ # Get the catalogue data
+ catalogue_data = cls.catalogue_data()
+
+ # Filter on string/regular expressions
+ query_msg_list = []
+ for value, column_name, display_name, display_name_plural in (
+ (id, "id", "id", "ids"),
+ (manufacturer, "manufacturer", "manufacturer", "manufacturers"),
+ (range, "range", "range", "ranges"),
+ (efficiency, "efficiency", "efficiency", "efficiencies"),
+ (type, "type", "type", "types"),
+ ):
+ if pd.isna(value):
+ continue
+
+ mask = cls._filter_catalogue_str(value=value, catalogue_data=catalogue_data, column_name=column_name)
+ if mask.sum() == 0:
+ available_values = catalogue_data[column_name].unique().tolist()
+ msg_part = textwrap.shorten(", ".join(repr(x) for x in available_values), width=500)
+ if query_msg_list:
+ query_msg_part = ", ".join(query_msg_list)
+ msg = (
+ f"No {display_name} matching the name {value!r} has been found for the query {query_msg_part}. "
+ f"Available {display_name_plural} are {msg_part}."
+ )
+ else:
+ msg = (
+ f"No {display_name} matching the name {value!r} has been found. "
+ f"Available {display_name_plural} are {msg_part}."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND)
+ catalogue_data = catalogue_data.loc[mask, :]
+ query_msg_list.append(f"{display_name}={value!r}")
+
+ # Filter on float
+ for value, column_name, display_name, display_name_plural, display_unit in (
+ (sn, "sn", "nominal power", "nominal powers", "kVA"),
+ (uhv, "uhv", "primary side voltage", "primary side voltages", "kV"),
+ (ulv, "ulv", "secondary side voltage", "secondary side voltages", "kV"),
+ ):
+ if pd.isna(value):
+ continue
+
+ mask = cls._filter_catalogue_float(value=value, catalogue_data=catalogue_data, column_name=column_name)
+ if mask.sum() == 0:
+ available_values = catalogue_data[column_name].unique().tolist()
+ msg_part = textwrap.shorten(
+ ", ".join(f"{x/1000:.1f} {display_unit}" for x in available_values), width=500
+ )
+ if query_msg_list:
+ query_msg_part = ", ".join(query_msg_list)
+ msg = (
+ f"No {display_name} matching {value/1000:.1f} {display_unit} has been found for the query"
+ f" {query_msg_part}. Available {display_name_plural} are {msg_part}."
+ )
+ else:
+ msg = (
+ f"No {display_name} matching {value/1000:.1f} {display_unit} has been found. "
+ f"Available {display_name_plural} are {msg_part}."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND)
+ catalogue_data = catalogue_data.loc[mask, :]
+ query_msg_list.append(f"{display_name}={value/1000:.1f} {display_unit}")
+
+ # Final check
+ if len(catalogue_data) == 0: # pragma: no cover
+ # This option should never happen as an error is raised when a filter is empty
+ query_msg_part = ", ".join(query_msg_list)
+ msg = (
+ f"No transformers matching the query ({query_msg_part!r}) have been found. Please look at the "
+ f"catalogue using the `print_catalogue` class method."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND)
+ elif len(catalogue_data) > 1:
+ query_msg_part = ", ".join(query_msg_list)
+ msg = (
+ f"Several transformers matching the query ({query_msg_part!r}) have been found. Please look at the "
+ f"catalogue using the `print_catalogue` class method."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND)
+
+ # A single one has been chosen
+ idx = catalogue_data.index[0]
+ manufacturer = catalogue_data.at[idx, "manufacturer"]
+ range = catalogue_data.at[idx, "range"]
+ efficiency = catalogue_data.at[idx, "efficiency"]
+ nominal_power = int(catalogue_data.at[idx, "sn"] / 1000)
+
+ # Get the data from the Json file
+ path = cls.catalogue_path() / manufacturer / range / efficiency / f"{nominal_power}.json"
+ if not path.exists(): # pragma: no cover
+ msg = f"The file {path} has not been found while it should exist. Please post an issue on GitHub."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_MISSING)
+
+ return cls.from_json(path=path)
+
+ @classmethod
+ @ureg_wraps(None, (None, None, None, None, None, None, "VA", "V", "V"), strict=False)
+ def print_catalogue(
+ cls,
+ id: Optional[Union[str, re.Pattern[str]]] = None,
+ manufacturer: Optional[Union[str, re.Pattern[str]]] = None,
+ range: Optional[Union[str, re.Pattern[str]]] = None,
+ efficiency: Optional[Union[str, re.Pattern[str]]] = None,
+ type: Optional[Union[str, re.Pattern[str]]] = None,
+ sn: Optional[float] = None,
+ uhv: Optional[float] = None,
+ ulv: Optional[float] = None,
+ ) -> None:
+ """Print the catalogue of available transformers.
+
+ Args:
+ id:
+ An optional manufacturer to filter the output. It can be a regular expression.
+
+ manufacturer:
+ An optional manufacturer to filter the output. It can be a regular expression.
+
+ range:
+ An optional product range to filter the output. It can be a regular expression.
+
+ efficiency:
+ An optional efficiency to filter the output. It can be a regular expression.
+
+ type:
+ An optional type of the transformer. It can be a regular expression.
+
+ sn:
+ An optional nominal power of the transformer to filter the output.
+
+ uhv:
+ An optional primary side voltage to filter the output.
+
+ ulv:
+ An optional secondary side voltage to filter the output.
+ """
+ # Get the catalogue data
+ catalogue_data = cls.catalogue_data()
+
+ # Start creating a table to display the results
+ table = Table(title="Available Transformer Parameters")
+ table.add_column("Id")
+ table.add_column("Manufacturer", style="color(1)", header_style="color(1)")
+ table.add_column("Product range", style="color(2)", header_style="color(2)")
+ table.add_column("Efficiency", style="color(3)", header_style="color(3)")
+ table.add_column("Type", style="color(4)", header_style="color(4)")
+ table.add_column("Nominal power (kVA)", justify="right", style="color(5)", header_style="color(5)")
+ table.add_column("High voltage (kV)", justify="right", style="color(6)", header_style="color(6)")
+ table.add_column("Low voltage (kV)", justify="right", style="color(9)", header_style="color(9)")
+ empty_table = True
+
+ # Match on the manufacturer, range, efficiency and type
+ catalogue_mask = pd.Series(True, index=catalogue_data.index)
+ query_msg_list = []
+ for value, column_name in (
+ (id, "id"),
+ (manufacturer, "manufacturer"),
+ (range, "range"),
+ (efficiency, "efficiency"),
+ (type, "type"),
+ ):
+ if pd.isna(value):
+ continue
+ catalogue_mask &= cls._filter_catalogue_str(
+ value=value, catalogue_data=catalogue_data, column_name=column_name
+ )
+ query_msg_list.append(f"{column_name}={value!r}")
+
+ # Mask on nominal power, primary and secondary voltages
+ for value, column_name, display_unit in ((uhv, "uhv", "kV"), (ulv, "ulv", "kV"), (sn, "sn", "kVA")):
+ if pd.isna(value):
+ continue
+ catalogue_mask &= cls._filter_catalogue_float(
+ value=value, catalogue_data=catalogue_data, column_name=column_name
+ )
+ query_msg_list.append(f"{column_name}={value/1000:.1f} {display_unit}")
+
+ # Iterate over the transformers
+ selected_index = catalogue_mask[catalogue_mask].index
+ for idx in selected_index:
+ empty_table = False
+ table.add_row(
+ catalogue_data.at[idx, "id"],
+ catalogue_data.at[idx, "manufacturer"],
+ catalogue_data.at[idx, "range"],
+ catalogue_data.at[idx, "efficiency"],
+ catalogue_data.at[idx, "type"],
+ f"{catalogue_data.at[idx, 'sn']/1000:.1f}", # VA to kVA
+ f"{catalogue_data.at[idx, 'uhv']/1000:.1f}", # V to kV
+ f"{catalogue_data.at[idx, 'ulv']/1000:.1f}", # V to kV
+ )
+
+ # Handle the case of an empty table
+ if empty_table:
+ query_msg_part = ", ".join(query_msg_list)
+ msg = f"No transformers can be found in the catalogue matching your query: {query_msg_part}."
+ console.print(msg)
+ else:
+ console.print(table)
+
+ @staticmethod
+ def _filter_catalogue_str(
+ value: Union[str, re.Pattern[str]], catalogue_data: pd.DataFrame, column_name: str
+ ) -> pd.Series:
+ """Filter the catalogue using a string/regexp value.
+
+ Args:
+ value:
+ The string or regular expression to use as a filter.
+
+ catalogue_data:
+ The catalogue data to use.
+
+ column_name:
+ The name of the column to use for the filter.
+
+ Returns:
+ The mask of matching results.
+ """
+ if isinstance(value, re.Pattern):
+ return catalogue_data[column_name].str.match(value)
+ else:
+ try:
+ pattern = re.compile(pattern=value, flags=re.IGNORECASE)
+ return catalogue_data[column_name].str.match(pattern)
+ except re.error:
+ return catalogue_data[column_name].str.lower() == value.lower()
+
+ @staticmethod
+ def _filter_catalogue_float(value: float, catalogue_data: pd.DataFrame, column_name: str) -> pd.Series:
+ """Filter the catalogue using a float/int value.
+
+ Args:
+ value:
+ The float or integer to use as a filter.
+
+ catalogue_data:
+ The catalogue data to use.
+
+ column_name:
+ The name of the column to use for the filter.
+
+ Returns:
+ The mask of matching results.
+ """
+ if isinstance(value, int):
+ return catalogue_data[column_name] == value
+ else:
+ return np.isclose(catalogue_data[column_name], value)
+
+ #
+ # Utils
+ #
+ @classmethod
+ def extract_windings(cls, string: str) -> tuple[str, str, int]:
+ """Extract the windings and phase displacement from a given string
+
+ Args:
+ string:
+ The string to parse.
+
+ Returns:
+ The first winding, the second winding, and the phase displacement
+ """
+ match = cls._EXTRACT_WINDINGS_RE.fullmatch(string=string)
+ if match:
+ groups = match.groupdict()
+ winding1, winding2, phase_displacement = groups["w1"], groups["w2"], groups["p"]
+ return winding1.upper(), winding2.lower(), int(phase_displacement)
+ else:
+ msg = f"Transformer windings cannot be extracted from the string {string!r}."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS)
diff --git a/roseau/load_flow/models/transformers/transformers.py b/roseau/load_flow/models/transformers/transformers.py
index f94ba6c0..300d8432 100644
--- a/roseau/load_flow/models/transformers/transformers.py
+++ b/roseau/load_flow/models/transformers/transformers.py
@@ -8,7 +8,6 @@
from roseau.load_flow.models.buses import Bus
from roseau.load_flow.models.transformers.parameters import TransformerParameters
from roseau.load_flow.typing import Id, JsonDict
-from roseau.load_flow.utils import BranchType
logger = logging.getLogger(__name__)
@@ -16,19 +15,25 @@
class Transformer(AbstractBranch):
"""A generic transformer model.
- The model parameters and windings type are defined in the ``parameters``.
+ The model parameters are defined in the ``parameters``.
+
+ See Also:
+ :doc:`Transformer models documentation `
"""
- branch_type = BranchType.TRANSFORMER
+ branch_type = "transformer"
- allowed_phases = frozenset({"abc", "abcn"}) # Only these for now
+ allowed_phases = Bus.allowed_phases
"""The allowed phases for a transformer are:
- - P-P-P or P-P-P-N: ``"abc"``, ``"abcn"``
-
- .. note::
- Only 3-phase transformers are currently supported.
+ - P-P-P or P-P-P-N: ``"abc"``, ``"abcn"`` (three-phase transformer)
+ - P-P or P-N: ``"ab"``, ``"bc"``, ``"ca"``, ``"an"``, ``"bn"``, ``"cn"`` (single-phase
+ transformer or primary of center-tapped transformer)
+ - P-P-N: ``"abn"``, ``"bcn"``, ``"can"`` (secondary of center-tapped transformer)
"""
+ _allowed_phases_three = frozenset({"abc", "abcn"})
+ _allowed_phases_single = frozenset({"ab", "bc", "ca", "an", "bn", "cn"})
+ _allowed_phases_center_secondary = frozenset({"abn", "bcn", "can"})
def __init__(
self,
@@ -65,7 +70,7 @@ def __init__(
The phases of the first extremity of the transformer. A string like ``"abc"`` or
``"abcn"`` etc. The order of the phases is important. For a full list of supported
phases, see the class attribute :attr:`allowed_phases`. All phases must be present
- in the connected bus. By default determined from the transformer windings.
+ in the connected bus. By default determined from the transformer type.
phases2:
The phases of the second extremity of the transformer. See ``phases1``.
@@ -78,24 +83,74 @@ def __init__(
logger.error(msg)
raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_GEOMETRY_TYPE)
- # Compute the phases if not provided, check them if provided
+ if parameters.type == "single":
+ phases1, phases2 = self._compute_phases_single(
+ id=id, bus1=bus1, bus2=bus2, phases1=phases1, phases2=phases2
+ )
+ elif parameters.type == "center":
+ phases1, phases2 = self._compute_phases_center(
+ id=id, bus1=bus1, bus2=bus2, phases1=phases1, phases2=phases2
+ )
+ else:
+ phases1, phases2 = self._compute_phases_three(
+ id=id, bus1=bus1, bus2=bus2, parameters=parameters, phases1=phases1, phases2=phases2
+ )
+
+ super().__init__(id, bus1, bus2, phases1=phases1, phases2=phases2, geometry=geometry, **kwargs)
+ self.tap = tap
+ self._parameters = parameters
+
+ @property
+ def tap(self) -> float:
+ """The tap of the transformer, for example 1.02."""
+ return self._tap
+
+ @tap.setter
+ def tap(self, value: float) -> None:
+ if value > 1.1:
+ logger.warning(f"The provided tap {value:.2f} is higher than 1.1. A good value is between 0.9 and 1.1.")
+ if value < 0.9:
+ logger.warning(f"The provided tap {value:.2f} is lower than 0.9. A good value is between 0.9 and 1.1.")
+ self._tap = value
+ self._invalidate_network_results()
+
+ @property
+ def parameters(self) -> TransformerParameters:
+ """The parameters of the transformer."""
+ return self._parameters
+
+ @parameters.setter
+ def parameters(self, value: TransformerParameters) -> None:
+ type1 = self._parameters.type
+ type2 = value.type
+ if type1 != type2:
+ msg = f"The updated type changed for transformer {self.id!r}: {type1} to {type2}."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_TYPE)
+ self._parameters = value
+ self._invalidate_network_results()
+
+ def to_dict(self, include_geometry: bool = True) -> JsonDict:
+ return {**super().to_dict(include_geometry=include_geometry), "params_id": self.parameters.id, "tap": self.tap}
+
+ def _compute_phases_three(
+ self,
+ id: Id,
+ bus1: Bus,
+ bus2: Bus,
+ parameters: TransformerParameters,
+ phases1: Optional[str],
+ phases2: Optional[str],
+ ) -> tuple[str, str]:
w1_has_neutral = "y" in parameters.winding1.lower() or "z" in parameters.winding1.lower()
w2_has_neutral = "y" in parameters.winding2.lower() or "z" in parameters.winding2.lower()
if phases1 is None:
phases1 = "abcn" if w1_has_neutral else "abc"
phases1 = "".join(p for p in bus1.phases if p in phases1)
- self._check_phases(id, phases1=phases1)
+ self._check_phases(id, allowed_phases=self._allowed_phases_three, phases1=phases1)
else:
- self._check_phases(id, phases1=phases1)
- # Check that the phases are in the bus
- phases_not_in_bus1 = set(phases1) - set(bus1.phases)
- if phases_not_in_bus1:
- msg = (
- f"Phases (1) {sorted(phases_not_in_bus1)} of transformer {id!r} are not in phases "
- f"{bus1.phases!r} of bus {bus1.id!r}."
- )
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ self._check_phases(id, allowed_phases=self._allowed_phases_three, phases1=phases1)
+ self._check_bus_phases(id, bus1, phases1=phases1)
transformer_phases = "abcn" if w1_has_neutral else "abc"
phases_not_in_transformer = set(phases1) - set(transformer_phases)
if phases_not_in_transformer:
@@ -109,18 +164,10 @@ def __init__(
if phases2 is None:
phases2 = "abcn" if w2_has_neutral else "abc"
phases2 = "".join(p for p in bus2.phases if p in phases2)
- self._check_phases(id, phases2=phases2)
+ self._check_phases(id, allowed_phases=self._allowed_phases_three, phases2=phases2)
else:
- self._check_phases(id, phases2=phases2)
- # Check that the phases are in the bus
- phases_not_in_bus2 = set(phases2) - set(bus2.phases)
- if phases_not_in_bus2:
- msg = (
- f"Phases (2) {sorted(phases_not_in_bus2)} of transformer {id!r} are not in phases "
- f"{bus2.phases!r} of bus {bus2.id!r}."
- )
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ self._check_phases(id, allowed_phases=self._allowed_phases_three, phases2=phases2)
+ self._check_bus_phases(id, bus2, phases2=phases2)
transformer_phases = "abcn" if w2_has_neutral else "abc"
phases_not_in_transformer = set(phases2) - set(transformer_phases)
if phases_not_in_transformer:
@@ -131,39 +178,70 @@ def __init__(
logger.error(msg)
raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
- super().__init__(id, bus1, bus2, phases1=phases1, phases2=phases2, geometry=geometry, **kwargs)
- self.tap = tap
- self._parameters = parameters
+ return phases1, phases2
- @property
- def tap(self) -> float:
- """The tap of the transformer, for example 1.02."""
- return self._tap
+ def _compute_phases_single(
+ self, id: Id, bus1: Bus, bus2: Bus, phases1: Optional[str], phases2: Optional[str]
+ ) -> tuple[str, str]:
+ if phases1 is None:
+ phases1 = "".join(p for p in bus1.phases if p in bus2.phases) # can't use set because order is important
+ phases1 = phases1.replace("ac", "ca")
+ if phases1 not in self._allowed_phases_single:
+ msg = f"Phases (1) of transformer {id!r} cannot be deduced from the buses, they need to be specified."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ else:
+ self._check_phases(id, allowed_phases=self._allowed_phases_single, phases1=phases1)
+ self._check_bus_phases(id, bus1, phases1=phases1)
- @tap.setter
- def tap(self, value: float) -> None:
- if value > 1.1:
- logger.warning(f"The provided tap {value:.2f} is higher than 1.1. A good value is between 0.9 and 1.1.")
- if value < 0.9:
- logger.warning(f"The provided tap {value:.2f} is lower than 0.9. A good value is between 0.9 and 1.1.")
- self._tap = value
- self._invalidate_network_results()
+ if phases2 is None:
+ phases2 = "".join(p for p in bus1.phases if p in bus2.phases) # can't use set because order is important
+ phases2 = phases2.replace("ac", "ca")
+ if phases2 not in self._allowed_phases_single:
+ msg = f"Phases (2) of transformer {id!r} cannot be deduced from the buses, they need to be specified."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ else:
+ self._check_phases(id, allowed_phases=self._allowed_phases_single, phases2=phases2)
+ self._check_bus_phases(id, bus2, phases2=phases2)
- @property
- def parameters(self) -> TransformerParameters:
- """The parameters of the transformer."""
- return self._parameters
+ return phases1, phases2
- @parameters.setter
- def parameters(self, value: TransformerParameters) -> None:
- windings1 = self._parameters.windings
- windings2 = value.windings
- if windings1 != windings2:
- msg = f"The updated windings changed for transformer {self.id!r}: {windings1} to {windings2}."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS)
- self._parameters = value
- self._invalidate_network_results()
+ def _compute_phases_center(
+ self, id: Id, bus1: Bus, bus2: Bus, phases1: Optional[str], phases2: Optional[str]
+ ) -> tuple[str, str]:
+ if phases1 is None:
+ phases1 = "".join(p for p in bus2.phases if p in bus1.phases and p != "n")
+ phases1 = phases1.replace("ac", "ca")
+ if phases1 not in self._allowed_phases_single:
+ msg = f"Phases (1) of transformer {id!r} cannot be deduced from the buses, they need to be specified."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ else:
+ self._check_phases(id, allowed_phases=self._allowed_phases_single, phases1=phases1)
+ self._check_bus_phases(id, bus1, phases1=phases1)
- def to_dict(self) -> JsonDict:
- return {**super().to_dict(), "params_id": self.parameters.id, "tap": self.tap}
+ if phases2 is None:
+ phases2 = "".join(p for p in bus2.phases if p in bus1.phases or p == "n")
+ if phases2 not in self._allowed_phases_center_secondary:
+ msg = f"Phases (2) of transformer {id!r} cannot be deduced from the buses, they need to be specified."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
+ else:
+ self._check_phases(id, allowed_phases=self._allowed_phases_center_secondary, phases2=phases2)
+ self._check_bus_phases(id, bus2, phases2=phases2)
+
+ return phases1, phases2
+
+ @staticmethod
+ def _check_bus_phases(id: Id, bus: Bus, **kwargs: str) -> None:
+ name, phases = kwargs.popitem() # phases1 or phases2
+ name = "Phases (1)" if name == "phases1" else "Phases (2)"
+ phases_not_in_bus = set(phases) - set(bus.phases)
+ if phases_not_in_bus:
+ msg = (
+ f"{name} {sorted(phases_not_in_bus)} of transformer {id!r} are not in phases "
+ f"{bus.phases!r} of bus {bus.id!r}."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE)
diff --git a/roseau/load_flow/network.py b/roseau/load_flow/network.py
index 3899b175..01c51c13 100644
--- a/roseau/load_flow/network.py
+++ b/roseau/load_flow/network.py
@@ -1,10 +1,14 @@
"""
This module defines the electrical network class.
"""
-
+import json
import logging
+import re
+import textwrap
import warnings
from collections.abc import Sized
+from importlib import resources
+from pathlib import Path
from typing import NoReturn, Optional, TypeVar, Union
from urllib.parse import urljoin
@@ -14,6 +18,7 @@
from pyproj import CRS
from requests import Response
from requests.auth import HTTPBasicAuth
+from rich.table import Table
from typing_extensions import Self
from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode
@@ -33,19 +38,19 @@
)
from roseau.load_flow.solvers import check_solver_params
from roseau.load_flow.typing import Id, JsonDict, Solver, StrPath
-from roseau.load_flow.utils import JsonMixin
+from roseau.load_flow.utils import CatalogueMixin, JsonMixin, console
logger = logging.getLogger(__name__)
# Phases dtype for all data frames
_PHASE_DTYPE = pd.CategoricalDtype(categories=["a", "b", "c", "n"], ordered=True)
# Phases dtype for voltage data frames
-_VOLTAGE_PHASES_DTYPE = pd.CategoricalDtype(["an", "bn", "cn", "ab", "bc", "ca"], ordered=True)
+_VOLTAGE_PHASES_DTYPE = pd.CategoricalDtype(categories=["an", "bn", "cn", "ab", "bc", "ca"], ordered=True)
_T = TypeVar("_T", bound=Element)
-class ElectricalNetwork(JsonMixin):
+class ElectricalNetwork(JsonMixin, CatalogueMixin[JsonDict]):
"""Electrical network class.
This class represents an electrical network, its elements, and their connections. After
@@ -103,27 +108,27 @@ class ElectricalNetwork(JsonMixin):
DEFAULT_SOLVER (str):
The default solver to compute the load flow.
- buses (dict[Id, Bus]):
+ buses (dict[Id, roseau.load_flow.Bus]):
Dictionary of buses of the network indexed by their IDs. Also available as a
:attr:`GeoDataFrame`.
- branches (dict[Id, AbstractBranch]):
+ branches (dict[Id, roseau.load_flow.AbstractBranch]):
Dictionary of branches of the network indexed by their IDs. Also available as a
:attr:`GeoDataFrame`.
- loads (dict[Id, AbstractLoad]):
+ loads (dict[Id, roseau.load_flow.AbstractLoad]):
Dictionary of loads of the network indexed by their IDs. Also available as a
:attr:`DataFrame`.
- sources (dict[Id, VoltageSource]):
+ sources (dict[Id, roseau.load_flow.VoltageSource]):
Dictionary of voltage sources of the network indexed by their IDs. Also available as a
:attr:`DataFrame`.
- grounds (dict[Id, Ground]):
+ grounds (dict[Id, roseau.load_flow.Ground]):
Dictionary of grounds of the network indexed by their IDs. Also available as a
:attr:`DataFrame`.
- potential_refs (dict[Id, PotentialRef]):
+ potential_refs (dict[Id, roseau.load_flow.PotentialRef]):
Dictionary of potential references of the network indexed by their IDs. Also available
as a :attr:`DataFrame`.
@@ -149,16 +154,16 @@ class ElectricalNetwork(JsonMixin):
DEFAULT_WARM_START: bool = True
DEFAULT_SOLVER: Solver = "newton_goldstein"
- # Default classes to use
- branch_class = AbstractBranch
- line_class = Line
- transformer_class = Transformer
- switch_class = Switch
- load_class = AbstractLoad
- voltage_source_class = VoltageSource
- bus_class = Bus
- ground_class = Ground
- pref_class = PotentialRef
+ # Elements classes (for internal use only)
+ _branch_class = AbstractBranch
+ _line_class = Line
+ _transformer_class = Transformer
+ _switch_class = Switch
+ _load_class = AbstractLoad
+ _voltage_source_class = VoltageSource
+ _bus_class = Bus
+ _ground_class = Ground
+ _pref_class = PotentialRef
#
# Methods to build an electrical network
@@ -351,6 +356,18 @@ def potential_refs_frame(self) -> pd.DataFrame:
index="id",
)
+ @property
+ def short_circuits_frame(self) -> pd.DataFrame:
+ """The short-circuits of the network as a dataframe."""
+ return pd.DataFrame.from_records(
+ data=[
+ (bus.id, bus.phases, "".join(sorted(sc["phases"])), sc["ground"])
+ for bus in self.buses.values()
+ for sc in bus.short_circuits
+ ],
+ columns=["bus_id", "phases", "short_circuit", "ground"],
+ )
+
#
# Method to solve a load flow
#
@@ -410,7 +427,7 @@ def solve_load_flow(
# Get the data
data = {
- "network": self.to_dict(),
+ "network": self.to_dict(include_geometry=False),
"solver": {
"name": solver,
"params": solver_params,
@@ -668,52 +685,88 @@ def res_branches(self) -> pd.DataFrame:
return res_df
@property
- def res_lines_losses(self) -> pd.DataFrame:
- """The load flow results of the complex power losses of the network lines.
+ def res_lines(self) -> pd.DataFrame:
+ """The load flow results of the the network lines.
- To get the active power losses, use the real part of the complex power losses.
+ This is similar to the :attr:`res_branches` property but provides more information that
+ only apply to lines. This includes currents and complex power losses in the series
+ components of the lines.
The results are returned as a dataframe with the following index:
- `line_id`: The id of the line.
- `phase`: The phase of the line (in ``{'a', 'b', 'c', 'n'}``).
+
and the following columns:
+ - `current1`: The complex current of the line (in Amps) for the given phase at the
+ first bus.
+ - `current2`: The complex current of the line (in Amps) for the given phase at the
+ second bus.
+ - `power1`: The complex power of the line (in VoltAmps) for the given phase at the
+ first bus.
+ - `power2`: The complex power of the line (in VoltAmps) for the given phase at the
+ second bus.
+ - `potential1`: The complex potential of the first bus (in Volts) for the given phase.
+ - `potential2`: The complex potential of the second bus (in Volts) for the given phase.
- `series_losses`: The complex power losses of the line (in VoltAmps) for the given
phase due to the series and mutual impedances.
- - `shunt_losses`: The complex power losses of the line (in VoltAmps) for the given
- phase due to the shunt admittances.
- - `total_losses`: The complex power losses of the line (in VoltAmps) for the given
- phase due to the series and mutual impedances and the shunt admittances. This is
- the sum of the series and shunt losses. It is equal to the power flow through the
- line; for any line, ``series_losses + shunt_losses == power1 + power2`` is always
- true.
+ - `series_current`: The complex current in the series impedance of the line (in Amps)
+ for the given phase.
+
+ Additional information can be easily computed from this dataframe. For example:
+
+ * To get the active power losses, use the real part of the complex power losses
+ * To get the total power losses, add the columns ``powers1 + powers2``
+ * To get the power losses in the shunt components of the line, subtract the series losses
+ from the total power losses computed in the previous step:
+ ``(powers1 + powers2) - series_losses``
+ * To get the currents in the shunt components of the line:
+ - For the first bus, subtract the columns ``current1 - series_current``
+ - For the second bus, add the columns ``series_current + current2``
"""
self._warn_invalid_results()
- res_dict = {"line_id": [], "phase": [], "series_losses": [], "shunt_losses": [], "total_losses": []}
- for br_id, branch in self.branches.items():
+ res_dict = {
+ "line_id": [],
+ "phase": [],
+ "current1": [],
+ "current2": [],
+ "power1": [],
+ "power2": [],
+ "potential1": [],
+ "potential2": [],
+ "series_losses": [],
+ "series_current": [],
+ }
+ for branch in self.branches.values():
if not isinstance(branch, Line):
continue
+ potentials = branch._res_potentials_getter(warning=False)
+ currents = branch._res_currents_getter(warning=False)
+ powers = branch._res_powers_getter(warning=False)
series_losses = branch._res_series_power_losses_getter(warning=False)
- shunt_losses = branch._res_shunt_power_losses_getter(warning=False)
- total_losses = series_losses + shunt_losses
- for series, shunt, total, phase in zip(series_losses, shunt_losses, total_losses, branch.phases):
- res_dict["line_id"].append(br_id)
+ series_currents = branch._res_series_currents_getter(warning=False)
+ for i1, i2, s1, s2, v1, v2, s_series, i_series, phase in zip(
+ *currents, *powers, *potentials, series_losses, series_currents, branch.phases
+ ):
+ res_dict["line_id"].append(branch.id)
res_dict["phase"].append(phase)
- res_dict["series_losses"].append(series)
- res_dict["shunt_losses"].append(shunt)
- res_dict["total_losses"].append(total)
- res_df = (
- pd.DataFrame.from_dict(res_dict, orient="columns")
+ res_dict["current1"].append(i1)
+ res_dict["current2"].append(i2)
+ res_dict["power1"].append(s1)
+ res_dict["power2"].append(s2)
+ res_dict["potential1"].append(v1)
+ res_dict["potential2"].append(v2)
+ res_dict["series_losses"].append(s_series)
+ res_dict["series_current"].append(i_series)
+ return (
+ pd.DataFrame(res_dict)
.astype(
{
"phase": _PHASE_DTYPE,
- "series_losses": complex,
- "shunt_losses": complex,
- "total_losses": complex,
- }
+ **{k: complex for k in res_dict if k not in ("phase", "line_id")},
+ },
)
.set_index(["line_id", "phase"])
)
- return res_df
@property
def res_loads(self) -> pd.DataFrame:
@@ -777,23 +830,26 @@ def res_loads_flexible_powers(self) -> pd.DataFrame:
The results are returned as a dataframe with the following index:
- `load_id`: The id of the load.
- - `phase`: The phase of the load (in ``{'a', 'b', 'c', 'n'}``).
+ - `phase`: The element phases of the load (in ``{'an', 'bn', 'cn', 'ab', 'bc', 'ca'}``).
and the following columns:
- `power`: The complex flexible power of the load (in VoltAmps) for the given phase.
+
+ Note that the flexible powers are the powers that flow in the load elements and not in the
+ lines. These are only different in case of delta loads. To access the powers that flow in
+ the lines, use the ``power`` column from the :attr:`res_loads` property instead.
"""
- # TODO(Ali): If the flexible power is not per line, but per physical element, update the
- # docstring and add a note about this
self._warn_invalid_results()
loads_dict = {"load_id": [], "phase": [], "power": []}
for load_id, load in self.loads.items():
- if isinstance(load, PowerLoad) and load.is_flexible:
- for power, phase in zip(load._res_flexible_powers_getter(warning=False), load.phases):
- loads_dict["load_id"].append(load_id)
- loads_dict["phase"].append(phase)
- loads_dict["power"].append(power)
+ if not (isinstance(load, PowerLoad) and load.is_flexible):
+ continue
+ for power, phase in zip(load._res_flexible_powers_getter(warning=False), load.voltage_phases):
+ loads_dict["load_id"].append(load_id)
+ loads_dict["phase"].append(phase)
+ loads_dict["power"].append(power)
powers_df = (
pd.DataFrame.from_dict(loads_dict, orient="columns")
- .astype({"phase": _PHASE_DTYPE, "power": complex})
+ .astype({"phase": _VOLTAGE_PHASES_DTYPE, "power": complex})
.set_index(["load_id", "phase"])
)
return powers_df
@@ -872,6 +928,11 @@ def res_potential_refs(self) -> pd.DataFrame:
)
return res_df
+ def clear_short_circuits(self):
+ """Remove the short-circuits of all the buses."""
+ for bus in self.buses.values():
+ bus.clear_short_circuits()
+
#
# Internal methods, please do not use
#
@@ -916,7 +977,7 @@ def _disconnect_element(self, element: Element) -> None:
"""
# The C++ electrical network and the tape will be recomputed
if isinstance(element, (Bus, AbstractBranch)):
- msg = f"{element!r} is a {type(element).__name__} and it can not be disconnected from a network."
+ msg = f"{element!r} is a {type(element).__name__} and it cannot be disconnected from a network."
logger.error(msg)
raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_ELEMENT_OBJECT)
elif isinstance(element, AbstractLoad):
@@ -1050,9 +1111,14 @@ def from_dict(cls, data: JsonDict) -> Self:
potential_refs=p_refs,
)
- def to_dict(self) -> JsonDict:
- """Convert the electrical network to a dictionary."""
- return network_to_dict(self)
+ def to_dict(self, include_geometry: bool = True) -> JsonDict:
+ """Convert the electrical network to a dictionary.
+
+ Args:
+ include_geometry:
+ If False, the geometry will not be added to the network dictionary.
+ """
+ return network_to_dict(self, include_geometry=include_geometry)
#
# Results saving/loading
@@ -1122,7 +1188,7 @@ def from_dgs(cls, path: StrPath) -> Self:
Returns:
The constructed network.
"""
- buses, branches, loads, sources, grounds, potential_refs = network_from_dgs(path)
+ buses, branches, loads, sources, grounds, potential_refs = network_from_dgs(path, en_class=cls)
return cls(
buses=buses,
branches=branches,
@@ -1133,269 +1199,212 @@ def from_dgs(cls, path: StrPath) -> Self:
)
#
- # Plot
- #
- #
- # def plot(
- # self,
- # ax: Optional["Axes"] = None,
- # crs: Optional[CRS_LIKE_TYPE] = None,
- # zoom: Union[str, int] = DEFAULT_ZOOM,
- # source: Optional[Union[TileProvider, str]] = None,
- # min_size: Optional[float] = DEFAULT_MIN_SIZE,
- # margin: Optional[float] = DEFAULT_MARGIN,
- # loads_plot_kwargs: Optional[dict[str, Any]] = None,
- # slacks_plot_kwargs: Optional[dict[str, Any]] = None,
- # junctions_plot_kwargs: Optional[dict[str, Any]] = None,
- # branches_plot_kwargs: Optional[dict[str, Any]] = None,
- # ) -> tuple["Axes", gpd.GeoDataFrame, gpd.GeoDataFrame]:
- # """A basic plot function. It plots the network described by the two `geopandas.GeoDataFrame` `buses` and
- # `branches`. It also adds a base map which can come from Maptiler or OSM.
- #
- # Args:
- # ax:
- # The axes on which plot the network.
- #
- # crs:
- # The CRS to use for the projection of data. By default pseudo mercator (EPSG:3857).
- #
- # zoom:
- # The zoom to use for the background tiles. By default, 'auto' so let contextily decides.
- #
- # source:
- # A tile source. One taken from `sirao_core.io.providers` or an URL. If None or not provided, use
- # `NetworkPlotExporter.DEFAULT_SOURCE`.
- #
- # min_size:
- # The minimum size (in metres) allowed for the plot. This is to ensure a pertinent zoom level on the map.
- # Pass None to define no minimum size (this is equivalent to 0.0). Default to 100.0.
- #
- # margin:
- # The margin to use for each side of the plot. It is a percentage of the network's size. Pass None to
- # define no margin (this is equivalent to 0.0). Default to 0.05.
- #
- # loads_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the loads buses.
- #
- # slacks_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the slack buses
- #
- # junctions_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the junction buses. To ignore this plot, just pass `{'marker':''}`.
- #
- # branches_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the branches.
- #
- # Returns:
- # The axe on which the network has been plotted and the data frames of buses and branches converted to the
- # new CRS.
- # """
- # ax, buses, branches, crs = self.plot_without_basemap(
- # ax=ax,
- # crs=crs,
- # loads_plot_kwargs=loads_plot_kwargs,
- # slacks_plot_kwargs=slacks_plot_kwargs,
- # junctions_plot_kwargs=junctions_plot_kwargs,
- # branches_plot_kwargs=branches_plot_kwargs,
- # )
- #
- # # Resize axes according to the provided minimum size and margin
- # self.resize_axis(ax=ax, min_size=min_size, margin=margin)
- #
- # # Add the base map
- # self.add_basemap(ax=ax, crs=crs, zoom=zoom, source=source)
- #
- # return ax, buses, branches
- #
- #
- # def plot_without_basemap(
- # self,
- # ax: Optional["Axes"] = None,
- # crs: Optional[CRS_LIKE_TYPE] = None,
- # loads_plot_kwargs: Optional[dict[str, Any]] = None,
- # slacks_plot_kwargs: Optional[dict[str, Any]] = None,
- # junctions_plot_kwargs: Optional[dict[str, Any]] = None,
- # branches_plot_kwargs: Optional[dict[str, Any]] = None,
- # ) -> tuple["Axes", gpd.GeoDataFrame, gpd.GeoDataFrame, CRS_LIKE_TYPE]:
- # """A basic plot function. It plots the network described by the two `geopandas.GeoDataFrame` `buses` and
- # `branches` without adding basemap.
- #
- # Args:
- # ax:
- # The axes on which plot the network.
- #
- # crs:
- # The CRS to use for the projection of data. By default pseudo mercator (EPSG:3857).
- #
- # loads_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the loads buses.
- #
- # slacks_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the slack buses
- #
- # junctions_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the junction buses. To ignore this plot, just pass `{'marker':''}`.
- #
- # branches_plot_kwargs:
- # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax`
- # argument) to plot the branches.
- #
- # Returns:
- # The axe on which the network has been plotted, the data frames of buses and branches converted to the new
- # CRS and the new CRS used.
- # """
- # from matplotlib import pyplot as plt
- #
- # # Default arguments
- # loads_plot_kwargs = loads_plot_kwargs if loads_plot_kwargs is not None else self.DEFAULT_LOADS_PLOT_KWARGS
- # branches_plot_kwargs = (
- # branches_plot_kwargs if branches_plot_kwargs is not None else self.DEFAULT_BRANCHES_PLOT_KWARGS
- # )
- # slacks_plot_kwargs = slacks_plot_kwargs if slacks_plot_kwargs is not None else self.DEFAULT_SLACKS_PLOT_KWARGS
- # junctions_plot_kwargs = (
- # junctions_plot_kwargs if junctions_plot_kwargs is not None else self.DEFAULT_JUNCTIONS_PLOT_KWARGS
- # )
- # if crs is None:
- # crs = CRS.from_epsg(3857)
- #
- # # Get the data and convert them to the provided CRS
- # buses = self.buses_frame.to_crs(crs=crs)
- # branches = self.branches_frame.to_crs(crs=crs)
- #
- # # Get the axes
- # if ax is None:
- # ax: "Axes" = plt.gca()
- # ax.axis("off")
- #
- # # Plot buses
- # # When "marker" is "" and in some other cases, matplotlib raises a ValueError. In these cases,
- # # it often means that we do not want to plot the layer, so we just continue
- # for bus_type, buses_gdf in buses.groupby(by="bus_type", observed=True):
- # if bus_type == "slack":
- # if slacks_plot_kwargs["marker"] != "":
- # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **slacks_plot_kwargs)
- # elif bus_type == "junction":
- # if junctions_plot_kwargs["marker"] != "":
- # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **junctions_plot_kwargs)
- # elif bus_type == "load":
- # if loads_plot_kwargs["marker"] != "":
- # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **loads_plot_kwargs)
- # else:
- # logger.warning(
- # f"The bus type {bus_type!r} is unknown so we ignore the {buses_gdf.shape[0]} buses of this type "
- # f"for the plot."
- # )
- #
- # if len(branches.index) > 0:
- # # Plot branches
- # self._plot_with_stroke(df=branches, ax=ax, stroke_color="white", **branches_plot_kwargs)
- #
- # return ax, buses, branches, crs
- #
- #
- # @staticmethod
- # def _plot_with_stroke(
- # df: Union[pd.DataFrame, gpd.GeoDataFrame],
- # ax: "Axes",
- # stroke_color: Optional[str] = None,
- # stroke_zorder: float = 1,
- # stroke_width: float = 3,
- # **kwargs,
- # ):
- # """Plot a data frame or geo data frame with a stroke.
+ # Catalogue of networks
#
- # Args:
- # df:
- # The data frame or geo data frame to plot.
- #
- # ax:
- # The axes on which to plot the data.
- #
- # stroke_color:
- # The color to use for the stroke. If None or not provided, no stroke will be plotted.
- #
- # stroke_zorder:
- # The zorder to pass to matplotlib for the stroke. By default, use 1.
- #
- # stroke_width:
- # The line width to use for the stroke. It should be greater than the line width uses for the normal plot.
- # By default, use 3.
- #
- # Keyword Args:
- # The keyword arguments to pass to the data frame plot method.
- # """
- # df.plot(ax=ax, **kwargs)
- #
- # kwargs.pop("zorder", None)
- # kwargs.pop("linewidth", None)
- # kwargs.pop("color", None)
- # kwargs.pop("column", None)
- # kwargs.pop("cmap", None)
- # kwargs.pop("label", None)
- # if stroke_color is not None:
- # df.plot(ax=ax, zorder=stroke_zorder, linewidth=stroke_width, color=stroke_color, **kwargs)
- #
- # @staticmethod
- # def resize_axe(ax: "Axes", figsize:tuple[float, float]):
- # xmin, xmax, ymin, ymax = ax.axis()
- # xlen, ylen = (xmax - xmin, ymax - ymin)
- # xfig, yfig = figsize
- # xratio = xlen / xfig
- # yratio = ylen / yfig
- #
- # if xratio > yratio:
- # expand = (xratio * yfig - ylen) / 2.0
- # ax.set_ylim(ymin=ymin - expand, ymax=ymax + expand)
- # elif xratio < yratio:
- # expand = (yratio * xfig - xlen) / 2.0
- # ax.set_xlim(xmin=xmin - expand, xmax=xmax + expand)
- #
- # def add_basemap(
- # self,
- # ax: "Axes",
- # crs: CRS_LIKE_TYPE,
- # zoom: Union[str, int] = DEFAULT_ZOOM,
- # source: Optional[Union[TileProvider, str]] = None,
- # ):
- # """Add a basemap to the provided axes.
- #
- # Args:
- # ax:
- # The axes on which to add the basemap.
- #
- # crs:
- # The CRS to use for the projection of data.
- #
- # zoom:
- # The zoom to use for the background tiles. By default, use "auto".
- #
- # source:
- # A tile source. One taken from `sirao_core.io.providers` or an URL. If None or not provided, use
- # `NetworkPlotExporter.DEFAULT_SOURCE`.
- # """
- # import contextily as ctx
- #
- # ax.axis("off")
- # if source is None:
- # source = self.DEFAULT_SOURCE
- # try:
- # logger.info(
- # f"Start adding basemap from {source['url'] if 'url' in source else source} to the plot."
- # )
- # ctx.add_basemap(ax=ax, zoom=zoom, source=source, crs=str(crs), reset_extent=True)
- # logger.info("Basemap was successfully added to the plot.")
- # except (HTTPError, UnidentifiedImageError) as e:
- # logger.error(
- # f"The following error has been raised by contextily when trying to add basemap to the plot:\n"
- # f"{e.__module__}.{e.__class__.__name__}: {e}"
- # )
- # if source != self.DEFAULT_SOURCE:
- # logger.info(f"Adding default basemap from {self.DEFAULT_SOURCE['url']} to the plot.")
- # ctx.add_basemap(ax=ax, zoom=zoom, source=self.DEFAULT_SOURCE, crs=str(crs), reset_extent=True)
+ @classmethod
+ def catalogue_path(cls) -> Path:
+ return Path(resources.files("roseau.load_flow") / "data" / "networks").expanduser().absolute()
+
+ @classmethod
+ def catalogue_data(cls) -> JsonDict:
+ return json.loads((cls.catalogue_path() / "Catalogue.json").read_text())
+
+ @classmethod
+ def from_catalogue(cls, name: Union[str, re.Pattern[str]], load_point_name: Union[str, re.Pattern[str]]) -> Self:
+ """Build a network from one in the catalogue.
+
+ Args:
+ name:
+ The name of the network to get from the catalogue. It can be a regular expression.
+
+ load_point_name:
+ The name of the load point to get. For each network, several load points may be available. It can be
+ a regular expression.
+
+ Returns:
+ The selected network
+ """
+ # Get the catalogue data
+ catalogue_data = cls.catalogue_data()
+
+ # Match on the name
+ if isinstance(name, re.Pattern):
+ name_pattern = name
+ name = name.pattern
+ match_names_list = [k for k in catalogue_data if name_pattern.match(k)]
+ else:
+ try:
+ name_pattern = re.compile(pattern=name, flags=re.IGNORECASE)
+ match_names_list = [k for k in catalogue_data if name_pattern.match(k)]
+ except re.error:
+ name_pattern = name.lower()
+ match_names_list = [k for k in catalogue_data if k.lower() == name_pattern]
+ if not match_names_list:
+ msg = (
+ f"No network matching the name {name!r} has been found. "
+ f"Please look at the catalogue using the `print_catalogue` class method."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND)
+ elif len(match_names_list) > 1:
+ msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(match_names_list)), width=500)
+ msg = f"Several networks matching the name {name!r} have been found: {msg_part}."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND)
+ name = match_names_list[0]
+
+ # Match on the load point
+ c_data = catalogue_data[name]
+ available_load_points = c_data["load_points"]
+ if isinstance(load_point_name, re.Pattern):
+ load_point_name_pattern = load_point_name
+ load_point_name = load_point_name.pattern
+ match_load_point_names_list = [k for k in available_load_points if load_point_name_pattern.match(k)]
+ else:
+ try:
+ load_point_name_pattern = re.compile(pattern=load_point_name, flags=re.IGNORECASE)
+ match_load_point_names_list = [k for k in available_load_points if load_point_name_pattern.match(k)]
+ except re.error:
+ load_point_name_pattern = load_point_name.lower()
+ match_load_point_names_list = [k for k in available_load_points if k.lower() == load_point_name_pattern]
+ if not match_load_point_names_list:
+ msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(available_load_points)), width=500)
+ msg = (
+ f"No load point matching the name {load_point_name!r} has been found for the network {name!r}. "
+ f"Available load points are {msg_part}."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND)
+ elif len(match_load_point_names_list) > 1:
+ msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(match_load_point_names_list)), width=500)
+ msg = (
+ f"Several load points matching the name {load_point_name!r} have been found for the network "
+ f"{name!r}: {msg_part}."
+ )
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND)
+ load_point_name = match_load_point_names_list[0]
+
+ # Get the data from the Json file
+ path = cls.catalogue_path() / f"{name}_{load_point_name}.json"
+ if not path.exists(): # pragma: no cover
+ msg = f"The file {path} has not been found while it should exist. Please post an issue on GitHub."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_MISSING)
+
+ return cls.from_json(path=path)
+
+ @classmethod
+ def print_catalogue(
+ cls,
+ name: Optional[Union[str, re.Pattern[str]]] = None,
+ load_point_name: Optional[Union[str, re.Pattern[str]]] = None,
+ ) -> None:
+ """Print the catalogue of available networks.
+
+ Args:
+ name:
+ The name of the networks to display. It can be a regular expression. For instance, `name="lv"` will
+ match all the network name starting with "lv" (ignoring case).
+
+ load_point_name:
+ Only networks having a load point matching this string or regular expression will be displayed.
+ """
+ # Get the catalogue data
+ catalogue_data = cls.catalogue_data()
+
+ # Start creating a table to display the results
+ table = Table(title="Available Networks")
+ table.add_column("Name")
+ table.add_column("Nb buses", justify="right", style="color(1)", header_style="color(1)")
+ table.add_column("Nb branches", justify="right", style="color(2)", header_style="color(2)")
+ table.add_column("Nb loads", justify="right", style="color(3)", header_style="color(3)")
+ table.add_column("Nb sources", justify="right", style="color(4)", header_style="color(4)")
+ table.add_column("Nb grounds", justify="right", style="color(5)", header_style="color(5)")
+ table.add_column("Nb potential refs", justify="right", style="color(6)", header_style="color(6)")
+ table.add_column("Available load points", justify="right", style="color(9)", header_style="color(9)")
+ empty_table = True
+
+ # Match on the name
+ match_names_list = cls._filter_name(name=name, catalogue_data=catalogue_data)
+
+ # Match on load point name
+ if load_point_name is None:
+ load_point_name_pattern = None
+
+ def match_load_point_function(x: str) -> bool:
+ return True
+
+ elif isinstance(load_point_name, re.Pattern):
+ load_point_name_pattern = load_point_name
+ load_point_name = load_point_name.pattern
+ match_load_point_function = load_point_name_pattern.match
+ else:
+ try:
+ load_point_name_pattern = re.compile(pattern=load_point_name, flags=re.IGNORECASE)
+ match_load_point_function = load_point_name_pattern.match
+ except re.error:
+ load_point_name_pattern = name.lower()
+
+ def match_load_point_function(x: str) -> bool:
+ nonlocal load_point_name_pattern
+ return x.lower() == load_point_name_pattern
+
+ # Iterate over the networks
+ for c_name in match_names_list:
+ c_data = catalogue_data[c_name]
+ available_load_points = c_data["load_points"]
+ if any(match_load_point_function(x) for x in available_load_points):
+ empty_table = False
+ table.add_row(
+ c_name,
+ str(c_data["nb_buses"]),
+ str(c_data["nb_branches"]),
+ str(c_data["nb_loads"]),
+ str(c_data["nb_sources"]),
+ str(c_data["nb_grounds"]),
+ str(c_data["nb_potential_refs"]),
+ ", ".join(repr(x) for x in sorted(c_data["load_points"])),
+ )
+
+ # Handle the case of an empty table
+ if empty_table:
+ msg = "No networks can be found in the catalogue"
+ if name is not None and load_point_name is not None:
+ msg += f" with the name {name!r} and having a load point named {load_point_name!r}"
+ elif name is not None:
+ msg += f" with the name {name!r}"
+ elif load_point_name is not None:
+ msg += f" having a load point named {load_point_name!r}"
+ msg += "!"
+ console.print(msg)
+ else:
+ console.print(table)
+
+ @staticmethod
+ def _filter_name(name: Optional[Union[str, re.Pattern[str]]], catalogue_data: JsonDict) -> list[str]:
+ """Filter the catalogue using the network name.
+
+ Args:
+ name:
+ The optional name to use as a filter.
+
+ catalogue_data:
+ The catalogue of available networks. It avoids an additional read.
+
+ Returns:
+ The list of network names matching the provided one.
+ """
+ if name is None:
+ match_names_list = list(catalogue_data)
+ elif isinstance(name, re.Pattern):
+ match_names_list = [k for k in catalogue_data if name.match(k)]
+ else:
+ try:
+ name_pattern = re.compile(pattern=name, flags=re.IGNORECASE)
+ match_names_list = [k for k in catalogue_data if name_pattern.match(k)]
+ except re.error:
+ name_pattern = name.lower()
+ match_names_list = [k for k in catalogue_data if k.lower() == name_pattern]
+
+ return match_names_list
diff --git a/roseau/load_flow/solvers.py b/roseau/load_flow/solvers.py
index dcdcbfd5..5071c115 100644
--- a/roseau/load_flow/solvers.py
+++ b/roseau/load_flow/solvers.py
@@ -26,10 +26,7 @@ def check_solver_params(solver: Solver, params: Optional[JsonDict]) -> JsonDict:
Returns:
The updated solver parameters.
"""
- if params is None:
- params = {}
- else:
- params = params.copy()
+ params = {} if params is None else params.copy()
# Check the solver
if solver not in _SOLVERS_PARAMS:
@@ -51,10 +48,9 @@ def check_solver_params(solver: Solver, params: Optional[JsonDict]) -> JsonDict:
# Extra checks per solver
if solver == "newton":
pass # Nothing more to check
- elif solver == "newton_goldstein":
- if params.get("m1", 0.1) >= params.get("m2", 0.9):
- msg = "For the 'newton_goldstein' solver, the inequality m1 < m2 should be respected."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SOLVER_PARAMS)
+ elif solver == "newton_goldstein" and params.get("m1", 0.1) >= params.get("m2", 0.9):
+ msg = "For the 'newton_goldstein' solver, the inequality m1 < m2 should be respected."
+ logger.error(msg)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SOLVER_PARAMS)
return params
diff --git a/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json b/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json
index 040ec616..3cb16a7e 100644
--- a/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json
+++ b/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json
@@ -1,2704 +1,2461 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 0,
- "phase": "n"
- },
- {
- "id": 50,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 0,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 50,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 542,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856978967864625, 45.69219040555863]
- }
- },
- {
- "id": 1364,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855867232318871, 45.69136027006984]
- }
- },
- {
- "id": 1365,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855846104884748, 45.69144901085738]
- }
- },
- {
- "id": 1366,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85588829377169, 45.69161122844266]
- }
- },
- {
- "id": 1367,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855860204231766, 45.69176818400519]
- }
- },
- {
- "id": 1407,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855869182087027, 45.69136049630226]
- }
- },
- {
- "id": 1663,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856370661831063, 45.69110851750263]
- }
- },
- {
- "id": 1664,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856375306784422, 45.69110589277815]
- }
- },
- {
- "id": 1665,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856382029776952, 45.69110208720114]
- }
- },
- {
- "id": 1666,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856387024934563, 45.69109925657929]
- }
- },
- {
- "id": 2081,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855854534153559, 45.69135896213488]
- }
- },
- {
- "id": 2082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855816427653202, 45.69135505659377]
- }
- },
- {
- "id": 2083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855791018908654, 45.6913524499912]
- }
- },
- {
- "id": 2084,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855786863583238, 45.69135202127266]
- }
- },
- {
- "id": 2085,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85563566314481, 45.69133651542809]
- }
- },
- {
- "id": 2086,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855622952159835, 45.69133520775522]
- }
- },
- {
- "id": 2087,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855600498514187, 45.69133290377598]
- }
- },
- {
- "id": 2088,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855587787530867, 45.69133159609905]
- }
- },
- {
- "id": 2089,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855407023176602, 45.69131305456497]
- }
- },
- {
- "id": 2090,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855368916328575, 45.69130913987988]
- }
- },
- {
- "id": 2091,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855356218598147, 45.6913078408805]
- }
- },
- {
- "id": 2156,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85685262162569, 45.69253367223592]
- }
- },
- {
- "id": 2157,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856851022816997, 45.69253802876519]
- }
- },
- {
- "id": 2488,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856738631522436, 45.69216124238103]
- }
- },
- {
- "id": 2489,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.8563875660472, 45.69228111612342]
- }
- },
- {
- "id": 2490,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856292856235074, 45.69232748538923]
- }
- },
- {
- "id": 2491,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856208673924059, 45.69236870335052]
- }
- },
- {
- "id": 2492,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856029618601329, 45.69250467560685]
- }
- },
- {
- "id": 2493,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855930737267387, 45.69267072873552]
- }
- },
- {
- "id": 2494,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855888072041425, 45.69274239200233]
- }
- },
- {
- "id": 2588,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855825999456157, 45.69273095075617]
- }
- },
- {
- "id": 2589,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855788745488097, 45.6927240826258]
- }
- },
- {
- "id": 2590,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855676659986405, 45.69270342242253]
- }
- },
- {
- "id": 2591,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855670455137178, 45.69270227463329]
- }
- },
- {
- "id": 2649,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85591518390002, 45.69139520669937]
- }
- },
- {
- "id": 2650,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855915068012751, 45.69139520030173]
- }
- },
- {
- "id": 2846,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856360725716369, 45.69102412913973]
- }
- },
- {
- "id": 2847,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856383793336582, 45.69086300169013]
- }
- },
- {
- "id": 2848,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856390704015929, 45.69081473478015]
- }
- },
- {
- "id": 2849,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856458006484099, 45.69111484486989]
- }
- },
- {
- "id": 2850,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856636058726183, 45.69113194244653]
- }
- },
- {
- "id": 2851,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856800333523847, 45.69114772016799]
- }
- },
- {
- "id": 2852,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856801404224056, 45.69114782212127]
- }
- },
- {
- "id": 2853,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856806693572222, 45.69114833332971]
- }
- },
- {
- "id": 2933,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85627431413481, 45.69280960338721]
- }
- },
- {
- "id": 2934,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856417860286734, 45.69283457875029]
- }
- },
- {
- "id": 2935,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856423816029007, 45.69283561508038]
- }
- },
- {
- "id": 2936,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856424087948438, 45.69283566297754]
- }
- },
- {
- "id": 3399,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855763551680219, 45.69182738723423]
- }
- },
- {
- "id": 3400,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855398849537063, 45.69194059727197]
- }
- },
- {
- "id": 3401,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855416724230305, 45.69181947119029]
- }
- },
- {
- "id": 3402,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855418952830454, 45.69181736884877]
- }
- },
- {
- "id": 3403,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855420553793683, 45.69181586568582]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 0,
- "bus2": 50,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line243",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 542,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856006369563374, 45.69145685074764],
- [4.856041286384759, 45.6914589736374],
- [4.85608611929476, 45.69142826223273],
- [4.85710799403576, 45.691501610824],
- [4.857207269582688, 45.69156598849194],
- [4.856978967864625, 45.69219040555863]
- ]
- },
- "length": 0.1698047886136108,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1213",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 1663,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856000594306501, 45.69144599899529],
- [4.856024490964286, 45.69142874679027],
- [4.856042739971293, 45.69129421833258],
- [4.856370661831063, 45.69110851750263]
- ]
- },
- "length": 0.0505315521261473,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line987",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 1407,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855988721281017, 45.6914422332006],
- [4.855996361520631, 45.6913753713747],
- [4.855869182087027, 45.69136049630226]
- ]
- },
- "length": 0.0174985508964364,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2112",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 2649,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855971166936666, 45.69144819937015],
- [4.855950443311009, 45.69143851158069],
- [4.855955048725805, 45.69139880266571],
- [4.85591518390002, 45.69139520669937]
- ]
- },
- "length": 0.0094992002360799,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line2113",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2649,
- "bus2": 2650,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85591518390002, 45.69139520669937],
- [4.855915068012751, 45.69139520030173]
- ]
- },
- "length": 9.054749376593195e-06,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line988",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1407,
- "bus2": 1364,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855869182087027, 45.69136049630226],
- [4.855867232318871, 45.69136027006984]
- ]
- },
- "length": 0.0001539404843332,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line952",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 1365,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855846104884748, 45.69144901085738]
- ]
- },
- "length": 0.0099994696006292,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1576",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 2081,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855854534153559, 45.69135896213488]
- ]
- },
- "length": 0.0009997222679235,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1577",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2081,
- "bus2": 2082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855854534153559, 45.69135896213488],
- [4.855816427653202, 45.69135505659377]
- ]
- },
- "length": 0.0029997976524975,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1578",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2082,
- "bus2": 2083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855816427653202, 45.69135505659377],
- [4.855791018908654, 45.6913524499912]
- ]
- },
- "length": 0.002000251978809,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1579",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2083,
- "bus2": 2084,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855791018908654, 45.6913524499912],
- [4.855786863583238, 45.69135202127266]
- ]
- },
- "length": 0.0003271589286956,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1580",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2084,
- "bus2": 2085,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855786863583238, 45.69135202127266],
- [4.85563566314481, 45.69133651542809]
- ]
- },
- "length": 0.0119028646292776,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line953",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1365,
- "bus2": 1366,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855846104884748, 45.69144901085738],
- [4.855845684286097, 45.69145076654667],
- [4.855901120337955, 45.69153953345657],
- [4.85588829377169, 45.69161122844266]
- ]
- },
- "length": 0.0189984078266001,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1581",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2085,
- "bus2": 2086,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85563566314481, 45.69133651542809],
- [4.855622952159835, 45.69133520775522]
- ]
- },
- "length": 0.0010007064087425,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1582",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2086,
- "bus2": 2087,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855622952159835, 45.69133520775522],
- [4.855600498514187, 45.69133290377598]
- ]
- },
- "length": 0.0017676269548577,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1583",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2087,
- "bus2": 2088,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855600498514187, 45.69133290377598],
- [4.855587787530867, 45.69133159609905]
- ]
- },
- "length": 0.0010007064104751,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1584",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2088,
- "bus2": 2089,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855587787530867, 45.69133159609905],
- [4.855407023176602, 45.69131305456497]
- ]
- },
- "length": 0.0142302752899377,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line954",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1366,
- "bus2": 1367,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85588829377169, 45.69161122844266],
- [4.855860204231766, 45.69176818400519]
- ]
- },
- "length": 0.0175815455828478,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1214",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1663,
- "bus2": 1664,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856370661831063, 45.69110851750263],
- [4.856375306784422, 45.69110589277815]
- ]
- },
- "length": 0.0004647694653149,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1215",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1664,
- "bus2": 1665,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856375306784422, 45.69110589277815],
- [4.856382029776952, 45.69110208720114]
- ]
- },
- "length": 0.000673157746019,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1216",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1665,
- "bus2": 1666,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856382029776952, 45.69110208720114],
- [4.856387024934563, 45.69109925657929]
- ]
- },
- "length": 0.0005003696964554,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2308",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2846,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.856355663247043, 45.69105945574269],
- [4.856360725716369, 45.69102412913973]
- ]
- },
- "length": 0.0089995012028159,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2311",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2849,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.85640419839692, 45.69110967215316],
- [4.856458006484099, 45.69111484486989]
- ]
- },
- "length": 0.0059995904338227,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1585",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2089,
- "bus2": 2090,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855407023176602, 45.69131305456497],
- [4.855368916328575, 45.69130913987988]
- ]
- },
- "length": 0.0029999740821226,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1586",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2090,
- "bus2": 2091,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855368916328575, 45.69130913987988],
- [4.855356218598147, 45.6913078408805]
- ]
- },
- "length": 0.0009995457086402,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2312",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2849,
- "bus2": 2850,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856458006484099, 45.69111484486989],
- [4.856636058726183, 45.69113194244653]
- ]
- },
- "length": 0.0139986419668756,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2309",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2846,
- "bus2": 2847,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856360725716369, 45.69102412913973],
- [4.856383793336582, 45.69086300169013]
- ]
- },
- "length": 0.0179984696461502,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2832",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1367,
- "bus2": 3399,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855860204231766, 45.69176818400519],
- [4.855763551680219, 45.69182738723423]
- ]
- },
- "length": 0.0099988303999178,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2313",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2850,
- "bus2": 2851,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856636058726183, 45.69113194244653],
- [4.856800333523847, 45.69114772016799]
- ]
- },
- "length": 0.0129154893237343,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2833",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3399,
- "bus2": 3400,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855763551680219, 45.69182738723423],
- [4.855584089016939, 45.69193730935378],
- [4.855398849537063, 45.69194059727197]
- ]
- },
- "length": 0.0329985491086803,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2310",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2847,
- "bus2": 2848,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856383793336582, 45.69086300169013],
- [4.856390704015929, 45.69081473478015]
- ]
- },
- "length": 0.0053915783689662,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2851,
- "bus2": 2852,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856800333523847, 45.69114772016799],
- [4.856801404224056, 45.69114782212127]
- ]
- },
- "length": 8.41665220926229e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2315",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2852,
- "bus2": 2853,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856801404224056, 45.69114782212127],
- [4.856806693572222, 45.69114833332971]
- ]
- },
- "length": 0.0004159034442303,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2834",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3400,
- "bus2": 3401,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855398849537063, 45.69194059727197],
- [4.855392869155902, 45.69194070460053],
- [4.855387309011729, 45.69184721664104],
- [4.855416724230305, 45.69181947119029]
- ]
- },
- "length": 0.0147075358057835,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2835",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3401,
- "bus2": 3402,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855416724230305, 45.69181947119029],
- [4.855418952830454, 45.69181736884877]
- ]
- },
- "length": 0.0002910897047899,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2836",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3402,
- "bus2": 3403,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855418952830454, 45.69181736884877],
- [4.855420553793683, 45.69181586568582]
- ]
- },
- "length": 0.0002084777079536,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1646",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2156,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.85685262162569, 45.69253367223592]
- ]
- },
- "length": 0.0394013052961165,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1960",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2488,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.856738631522436, 45.69216124238103]
- ]
- },
- "length": 0.0189987578088231,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1961",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2488,
- "bus2": 2489,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856738631522436, 45.69216124238103],
- [4.85665349107763, 45.69215091411277],
- [4.8563875660472, 45.69228111612342]
- ]
- },
- "length": 0.0319981744631324,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1647",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2156,
- "bus2": 2157,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85685262162569, 45.69253367223592],
- [4.856851022816997, 45.69253802876519]
- ]
- },
- "length": 0.0004999657082792,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1962",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2489,
- "bus2": 2490,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.8563875660472, 45.69228111612342],
- [4.856292856235074, 45.69232748538923]
- ]
- },
- "length": 0.008999023393858,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1963",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2490,
- "bus2": 2491,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856292856235074, 45.69232748538923],
- [4.856208673924059, 45.69236870335052]
- ]
- },
- "length": 0.0079989134977189,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1964",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2491,
- "bus2": 2492,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856208673924059, 45.69236870335052],
- [4.856140935805975, 45.69240186471046],
- [4.856052674911791, 45.69246595632609],
- [4.856029618601329, 45.69250467560685]
- ]
- },
- "length": 0.0209990509945453,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1965",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2492,
- "bus2": 2493,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856029618601329, 45.69250467560685],
- [4.855930737267387, 45.69267072873552]
- ]
- },
- "length": 0.0199986363582786,
- "params_id": "S_AL_240",
- "ground": "ground"
+ "id": 0,
+ "phase": "n"
},
{
- "id": "line1966",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2493,
- "bus2": 2494,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855930737267387, 45.69267072873552],
- [4.855888072041425, 45.69274239200233]
- ]
- },
- "length": 0.008630510320176,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2389",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2933,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.85627431413481, 45.69280960338721]
- ]
- },
- "length": 0.0309983265742373,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2056",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2588,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.855825999456157, 45.69273095075617]
- ]
- },
- "length": 0.0049993261430797,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2057",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2588,
- "bus2": 2589,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855825999456157, 45.69273095075617],
- [4.855788745488097, 45.6927240826258]
- ]
- },
- "length": 0.003000476475499,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2058",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2589,
- "bus2": 2590,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855788745488097, 45.6927240826258],
- [4.855676659986405, 45.69270342242253]
- ]
- },
- "length": 0.0090273856534237,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2059",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2590,
- "bus2": 2591,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855676659986405, 45.69270342242253],
- [4.855670455137178, 45.69270227463329]
- ]
- },
- "length": 0.0004998552042313,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2390",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2933,
- "bus2": 2934,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85627431413481, 45.69280960338721],
- [4.856417860286734, 45.69283457875029]
- ]
- },
- "length": 0.0115203641917798,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2391",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2934,
- "bus2": 2935,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856417860286734, 45.69283457875029],
- [4.856423816029007, 45.69283561508038]
- ]
- },
- "length": 0.0004779834842022,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2392",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2935,
- "bus2": 2936,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856423816029007, 45.69283561508038],
- [4.856424087948438, 45.69283566297754]
- ]
- },
- "length": 2.183881197426037e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 10,
- "bus": 542,
- "phases": "abcn",
- "powers": [
- [1319.5514969710862, 231.89395762970432],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 5,
- "bus": 1365,
- "phases": "abcn",
- "powers": [
- [1279.0606072611827, 398.74167539455425],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 15,
- "bus": 1365,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1303.5603371098352, 309.38876556509604]
- ]
- },
- {
- "id": 31,
- "bus": 1365,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1299.6575729488254, 325.3938441651446],
- [0.0, 0.0]
- ]
- },
- {
- "id": 73,
- "bus": 1365,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1277.5307281544729, 403.61640125855155],
- [0.0, 0.0]
- ]
- },
- {
- "id": 19,
- "bus": 1367,
- "phases": "abcn",
- "powers": [
- [1317.0812188972347, 245.5361960525906],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 32,
- "bus": 1367,
- "phases": "abcn",
- "powers": [
- [1333.9538346826566, 124.73222390079212],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 61,
- "bus": 1367,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1324.0862950086896, 204.41732831138063]
- ]
- },
- {
- "id": 86,
- "bus": 1367,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1326.9123992351522, 185.18759542640527],
- [0.0, 0.0]
- ]
- },
- {
- "id": 40,
- "bus": 1407,
- "phases": "abcn",
- "powers": [
- [1330.4682005964203, 157.6240081508046],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 60,
- "bus": 1407,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1305.3399293324028, 301.7923617891606]
- ]
- },
- {
- "id": 52,
- "bus": 1663,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1292.7765005180647, 351.7383693202493]
- ]
- },
- {
- "id": 83,
- "bus": 1663,
- "phases": "abcn",
- "powers": [
- [1285.618448582671, 377.0625484023677],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 16,
- "bus": 1664,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1278.0628087235511, 401.92837384472966],
- [0.0, 0.0]
- ]
- },
- {
- "id": 46,
- "bus": 1664,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1332.054862653535, 143.59945551732818]
- ]
- },
- {
- "id": 57,
- "bus": 1664,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1331.6484712473598, 147.32043228408932],
- [0.0, 0.0]
- ]
- },
- {
- "id": 36,
- "bus": 1665,
- "phases": "abcn",
- "powers": [
- [1322.6898869253412, 213.2660867771289],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 62,
- "bus": 1665,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1304.6226093055911, 304.87834956335075]
- ]
- },
- {
- "id": 41,
- "bus": 1666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1283.5010670472027, 384.20823993310415]
- ]
- },
- {
- "id": 54,
- "bus": 1666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1323.8636496186705, 205.85431246912336],
- [0.0, 0.0]
- ]
- },
- {
- "id": 23,
- "bus": 2081,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1296.5831906572867, 337.43590568991283],
- [0.0, 0.0]
- ]
- },
- {
- "id": 49,
- "bus": 2081,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1273.0014902093146, 417.6818965057808],
- [0.0, 0.0]
- ]
- },
- {
- "id": 85,
- "bus": 2082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1303.7749143548147, 308.4832790329114],
- [0.0, 0.0]
- ]
- },
- {
- "id": 78,
- "bus": 2083,
- "phases": "abcn",
- "powers": [
- [1279.2773539758966, 398.04574152756607],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 75,
- "bus": 2084,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1281.6474812299318, 390.34689008723115]
- ]
- },
- {
- "id": 6,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1313.1125046335185, 265.9445636197316]
- ]
- },
- {
- "id": 21,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [1298.2482283705212, 330.9720505973342],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 29,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1294.5073490838445, 345.3138918603177]
- ]
- },
- {
- "id": 39,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [1306.9165625138949, 294.88991059489666],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 69,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [1295.4319816915825, 341.82881908116127],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 71,
- "bus": 2085,
- "phases": "abcn",
- "powers": [
- [1277.5398209320822, 403.58761957798544],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 27,
- "bus": 2086,
- "phases": "abcn",
- "powers": [
- [1303.7502721461626, 308.58740839931943],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 59,
- "bus": 2086,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1336.2189429549055, 97.51870196160768]
- ]
- },
- {
- "id": 74,
- "bus": 2086,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1317.5980000347338, 242.747751891282],
- [0.0, 0.0]
- ]
- },
- {
- "id": 2,
- "bus": 2088,
- "phases": "abcn",
- "powers": [
- [1287.7366738794012, 369.76373468718975],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 28,
- "bus": 2088,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1318.883122101868, 235.66559141849945]
- ]
- },
- {
- "id": 17,
- "bus": 2089,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1314.2178856839457, 260.42716773067457]
- ]
- },
- {
- "id": 11,
- "bus": 2156,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1283.1994505839823, 385.21439584310394],
- [0.0, 0.0]
- ]
- },
- {
- "id": 48,
- "bus": 2156,
- "phases": "abcn",
- "powers": [
- [1292.4452642997337, 352.95353735724615],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 14,
- "bus": 2157,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1290.50398309402, 359.98670859112406]
- ]
- },
- {
- "id": 18,
- "bus": 2488,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1285.6652413586705, 376.90296882082686]
- ]
- },
- {
- "id": 13,
- "bus": 2489,
- "phases": "abcn",
- "powers": [
- [1296.8316300904191, 336.47984180456893],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 43,
- "bus": 2489,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1312.7018441498733, 267.9642310259403],
- [0.0, 0.0]
- ]
- },
- {
- "id": 82,
- "bus": 2490,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1295.5135097591285, 341.51970188465845]
- ]
- },
- {
- "id": 38,
- "bus": 2492,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1299.5393861113935, 325.86553160625016]
- ]
- },
- {
- "id": 79,
- "bus": 2492,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1301.1590452579821, 319.3369688700921],
- [0.0, 0.0]
- ]
- },
- {
- "id": 9,
- "bus": 2493,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1291.4197071024971, 356.68767970186735]
- ]
- },
- {
- "id": 22,
- "bus": 2494,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1328.6600109664457, 172.20202090116732]
- ]
- },
- {
- "id": 44,
- "bus": 2494,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1289.6259799692361, 363.1195292630083]
- ]
- },
- {
- "id": 80,
- "bus": 2494,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1276.4129448719732, 407.13751350994266]
- ]
- },
- {
- "id": 51,
- "bus": 2590,
- "phases": "abcn",
- "powers": [
- [1306.792993997642, 295.43701796234075],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 68,
- "bus": 2591,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1280.8899969845843, 392.8253764316062],
- [0.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [1312.3403791009896, 269.7289197043438],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 37,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1322.825527496478, 212.42312620679115],
- [0.0, 0.0]
- ]
- },
- {
- "id": 55,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1334.3127176075302, 120.83266269766999]
- ]
- },
- {
- "id": 65,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1318.9973828548552, 235.0252428269018]
- ]
- },
- {
- "id": 84,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1282.174711833792, 388.6115915380472],
- [0.0, 0.0]
- ]
- },
- {
- "id": 88,
- "bus": 2649,
- "phases": "abcn",
- "powers": [
- [1337.6958288260637, 74.57097481696131],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 7,
- "bus": 2650,
- "phases": "abcn",
- "powers": [
- [1320.7492683883816, 224.9718444502703],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 45,
- "bus": 2650,
- "phases": "abcn",
- "powers": [
- [1318.3553489029791, 238.6003662250029],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 63,
- "bus": 2650,
- "phases": "abcn",
- "powers": [
- [1290.5398730409277, 359.85802316372997],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 87,
- "bus": 2650,
- "phases": "abcn",
- "powers": [
- [1276.1729341198768, 407.8892042744769],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 33,
- "bus": 2846,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1293.8639330375797, 347.71695893114986]
- ]
- },
- {
- "id": 76,
- "bus": 2846,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1304.4476784103185, 305.62593972654224]
- ]
- },
- {
- "id": 70,
- "bus": 2847,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1288.1991630529185, 368.1492592055051]
- ]
- },
- {
- "id": 56,
- "bus": 2848,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1305.515121009439, 301.0336020438767],
- [0.0, 0.0]
- ]
- },
- {
- "id": 64,
- "bus": 2848,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1337.385446942204, 79.94452483443143],
- [0.0, 0.0]
- ]
- },
- {
- "id": 1,
- "bus": 2850,
- "phases": "abcn",
- "powers": [
- [1274.459527295882, 413.21165766294473],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 26,
- "bus": 2850,
- "phases": "abcn",
- "powers": [
- [1308.5653928987515, 287.4849096066398],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 53,
- "bus": 2850,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1313.5781749594094, 263.6348592544411]
- ]
- },
- {
- "id": 72,
- "bus": 2850,
- "phases": "abcn",
- "powers": [
- [1288.1205888132586, 368.4240890864575],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 34,
- "bus": 2851,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1299.2869324630979, 326.8706592437368],
- [0.0, 0.0]
- ]
- },
- {
- "id": 35,
- "bus": 2851,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1282.3548639279086, 388.0167054448003],
- [0.0, 0.0]
- ]
- },
- {
- "id": 81,
- "bus": 2851,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1279.3769698913727, 397.72544506904677]
- ]
- },
- {
- "id": 24,
- "bus": 2852,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1319.798076679979, 230.4864367715152],
- [0.0, 0.0]
- ]
- },
- {
- "id": 67,
- "bus": 2852,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1297.799021163752, 332.7291111553191]
- ]
- },
- {
- "id": 25,
- "bus": 2853,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1277.5672476586992, 403.50079114368214]
- ]
- },
- {
- "id": 42,
- "bus": 2853,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1312.736718592784, 267.79333151154407],
- [0.0, 0.0]
- ]
- },
- {
- "id": 8,
- "bus": 2933,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1300.8871516428294, 320.44278652266155]
- ]
- },
- {
- "id": 66,
- "bus": 2934,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1299.5120410055094, 325.97456346392505],
- [0.0, 0.0]
- ]
- },
- {
- "id": 50,
- "bus": 2935,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1290.428164252019, 360.25839844334774]
- ]
- },
- {
- "id": 3,
- "bus": 2936,
- "phases": "abcn",
- "powers": [
- [1318.1152667995234, 239.92312138229403],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 12,
- "bus": 3399,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1279.6310179555057, 396.9073174306034],
- [0.0, 0.0]
- ]
- },
- {
- "id": 47,
- "bus": 3399,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1324.2714719206322, 203.21424507392098],
- [0.0, 0.0]
- ]
- },
- {
- "id": 20,
- "bus": 3400,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1338.7827370942632, 51.495083281748634],
- [0.0, 0.0]
- ]
- },
- {
- "id": 30,
- "bus": 3400,
- "phases": "abcn",
- "powers": [
- [1288.127708911686, 368.39919418713686],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 77,
- "bus": 3401,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1326.8772136572086, 185.43953359810874],
- [0.0, 0.0]
- ]
- },
- {
- "id": 58,
- "bus": 3402,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1288.8246746527598, 365.953437953532],
- [0.0, 0.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 0,
- "bus": 0,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00010284317710785252,
- -2.5710794276947463e-05,
- -2.5710794276947463e-05,
- -2.57107942769788e-05
- ],
- [
- -2.5710794276947463e-05,
- 0.00010284317710785252,
- -2.5710794276947463e-05,
- -2.57107942769788e-05
- ],
- [
- -2.5710794276947463e-05,
- -2.5710794276947463e-05,
- 0.00010284317710785252,
- -2.57107942769788e-05
- ],
- [
- -2.57107942769788e-05,
- -2.57107942769788e-05,
- -2.57107942769788e-05,
- 0.0001028431771079
- ]
- ]
- ]
- },
- {
- "id": "S_AL_35",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.8571428571428571
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.719928802753306e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- 4.719928802753306e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- 4.719928802753306e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- 4.719928802753306e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.31578947368421
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 50,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 0,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 50,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 542,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856978967864625, 45.69219040555863]
+ }
+ },
+ {
+ "id": 1364,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855867232318871, 45.69136027006984]
+ }
+ },
+ {
+ "id": 1365,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855846104884748, 45.69144901085738]
+ }
+ },
+ {
+ "id": 1366,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85588829377169, 45.69161122844266]
+ }
+ },
+ {
+ "id": 1367,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855860204231766, 45.69176818400519]
+ }
+ },
+ {
+ "id": 1407,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855869182087027, 45.69136049630226]
+ }
+ },
+ {
+ "id": 1663,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856370661831063, 45.69110851750263]
+ }
+ },
+ {
+ "id": 1664,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856375306784422, 45.69110589277815]
+ }
+ },
+ {
+ "id": 1665,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856382029776952, 45.69110208720114]
+ }
+ },
+ {
+ "id": 1666,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856387024934563, 45.69109925657929]
+ }
+ },
+ {
+ "id": 2081,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855854534153559, 45.69135896213488]
+ }
+ },
+ {
+ "id": 2082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855816427653202, 45.69135505659377]
+ }
+ },
+ {
+ "id": 2083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855791018908654, 45.6913524499912]
+ }
+ },
+ {
+ "id": 2084,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855786863583238, 45.69135202127266]
+ }
+ },
+ {
+ "id": 2085,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85563566314481, 45.69133651542809]
+ }
+ },
+ {
+ "id": 2086,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855622952159835, 45.69133520775522]
+ }
+ },
+ {
+ "id": 2087,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855600498514187, 45.69133290377598]
+ }
+ },
+ {
+ "id": 2088,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855587787530867, 45.69133159609905]
+ }
+ },
+ {
+ "id": 2089,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855407023176602, 45.69131305456497]
+ }
+ },
+ {
+ "id": 2090,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855368916328575, 45.69130913987988]
+ }
+ },
+ {
+ "id": 2091,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855356218598147, 45.6913078408805]
+ }
+ },
+ {
+ "id": 2156,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85685262162569, 45.69253367223592]
+ }
+ },
+ {
+ "id": 2157,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856851022816997, 45.69253802876519]
+ }
+ },
+ {
+ "id": 2488,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856738631522436, 45.69216124238103]
+ }
+ },
+ {
+ "id": 2489,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.8563875660472, 45.69228111612342]
+ }
+ },
+ {
+ "id": 2490,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856292856235074, 45.69232748538923]
+ }
+ },
+ {
+ "id": 2491,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856208673924059, 45.69236870335052]
+ }
+ },
+ {
+ "id": 2492,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856029618601329, 45.69250467560685]
+ }
+ },
+ {
+ "id": 2493,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855930737267387, 45.69267072873552]
+ }
+ },
+ {
+ "id": 2494,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855888072041425, 45.69274239200233]
+ }
+ },
+ {
+ "id": 2588,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855825999456157, 45.69273095075617]
+ }
+ },
+ {
+ "id": 2589,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855788745488097, 45.6927240826258]
+ }
+ },
+ {
+ "id": 2590,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855676659986405, 45.69270342242253]
+ }
+ },
+ {
+ "id": 2591,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855670455137178, 45.69270227463329]
+ }
+ },
+ {
+ "id": 2649,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85591518390002, 45.69139520669937]
+ }
+ },
+ {
+ "id": 2650,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855915068012751, 45.69139520030173]
+ }
+ },
+ {
+ "id": 2846,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856360725716369, 45.69102412913973]
+ }
+ },
+ {
+ "id": 2847,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856383793336582, 45.69086300169013]
+ }
+ },
+ {
+ "id": 2848,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856390704015929, 45.69081473478015]
+ }
+ },
+ {
+ "id": 2849,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856458006484099, 45.69111484486989]
+ }
+ },
+ {
+ "id": 2850,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856636058726183, 45.69113194244653]
+ }
+ },
+ {
+ "id": 2851,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856800333523847, 45.69114772016799]
+ }
+ },
+ {
+ "id": 2852,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856801404224056, 45.69114782212127]
+ }
+ },
+ {
+ "id": 2853,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856806693572222, 45.69114833332971]
+ }
+ },
+ {
+ "id": 2933,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85627431413481, 45.69280960338721]
+ }
+ },
+ {
+ "id": 2934,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856417860286734, 45.69283457875029]
+ }
+ },
+ {
+ "id": 2935,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856423816029007, 45.69283561508038]
+ }
+ },
+ {
+ "id": 2936,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856424087948438, 45.69283566297754]
+ }
+ },
+ {
+ "id": 3399,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855763551680219, 45.69182738723423]
+ }
+ },
+ {
+ "id": 3400,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855398849537063, 45.69194059727197]
+ }
+ },
+ {
+ "id": 3401,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855416724230305, 45.69181947119029]
+ }
+ },
+ {
+ "id": 3402,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855418952830454, 45.69181736884877]
+ }
+ },
+ {
+ "id": 3403,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855420553793683, 45.69181586568582]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 0,
+ "bus2": 50,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line243",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 542,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856006369563374, 45.69145685074764],
+ [4.856041286384759, 45.6914589736374],
+ [4.85608611929476, 45.69142826223273],
+ [4.85710799403576, 45.691501610824],
+ [4.857207269582688, 45.69156598849194],
+ [4.856978967864625, 45.69219040555863]
+ ]
+ },
+ "length": 0.1698047886136108,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1213",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 1663,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856000594306501, 45.69144599899529],
+ [4.856024490964286, 45.69142874679027],
+ [4.856042739971293, 45.69129421833258],
+ [4.856370661831063, 45.69110851750263]
+ ]
+ },
+ "length": 0.0505315521261473,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line987",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 1407,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855988721281017, 45.6914422332006],
+ [4.855996361520631, 45.6913753713747],
+ [4.855869182087027, 45.69136049630226]
+ ]
+ },
+ "length": 0.0174985508964364,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2112",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 2649,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855971166936666, 45.69144819937015],
+ [4.855950443311009, 45.69143851158069],
+ [4.855955048725805, 45.69139880266571],
+ [4.85591518390002, 45.69139520669937]
+ ]
+ },
+ "length": 0.0094992002360799,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line2113",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2649,
+ "bus2": 2650,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85591518390002, 45.69139520669937],
+ [4.855915068012751, 45.69139520030173]
+ ]
+ },
+ "length": 9.054749376593195e-6,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line988",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1407,
+ "bus2": 1364,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855869182087027, 45.69136049630226],
+ [4.855867232318871, 45.69136027006984]
+ ]
+ },
+ "length": 0.0001539404843332,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line952",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 1365,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855846104884748, 45.69144901085738]
+ ]
+ },
+ "length": 0.0099994696006292,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1576",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 2081,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855854534153559, 45.69135896213488]
+ ]
+ },
+ "length": 0.0009997222679235,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1577",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2081,
+ "bus2": 2082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855854534153559, 45.69135896213488],
+ [4.855816427653202, 45.69135505659377]
+ ]
+ },
+ "length": 0.0029997976524975,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1578",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2082,
+ "bus2": 2083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855816427653202, 45.69135505659377],
+ [4.855791018908654, 45.6913524499912]
+ ]
+ },
+ "length": 0.002000251978809,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1579",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2083,
+ "bus2": 2084,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855791018908654, 45.6913524499912],
+ [4.855786863583238, 45.69135202127266]
+ ]
+ },
+ "length": 0.0003271589286956,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1580",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2084,
+ "bus2": 2085,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855786863583238, 45.69135202127266],
+ [4.85563566314481, 45.69133651542809]
+ ]
+ },
+ "length": 0.0119028646292776,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line953",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1365,
+ "bus2": 1366,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855846104884748, 45.69144901085738],
+ [4.855845684286097, 45.69145076654667],
+ [4.855901120337955, 45.69153953345657],
+ [4.85588829377169, 45.69161122844266]
+ ]
+ },
+ "length": 0.0189984078266001,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1581",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2085,
+ "bus2": 2086,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85563566314481, 45.69133651542809],
+ [4.855622952159835, 45.69133520775522]
+ ]
+ },
+ "length": 0.0010007064087425,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1582",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2086,
+ "bus2": 2087,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855622952159835, 45.69133520775522],
+ [4.855600498514187, 45.69133290377598]
+ ]
+ },
+ "length": 0.0017676269548577,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1583",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2087,
+ "bus2": 2088,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855600498514187, 45.69133290377598],
+ [4.855587787530867, 45.69133159609905]
+ ]
+ },
+ "length": 0.0010007064104751,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1584",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2088,
+ "bus2": 2089,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855587787530867, 45.69133159609905],
+ [4.855407023176602, 45.69131305456497]
+ ]
+ },
+ "length": 0.0142302752899377,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line954",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1366,
+ "bus2": 1367,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85588829377169, 45.69161122844266],
+ [4.855860204231766, 45.69176818400519]
+ ]
+ },
+ "length": 0.0175815455828478,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1214",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1663,
+ "bus2": 1664,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856370661831063, 45.69110851750263],
+ [4.856375306784422, 45.69110589277815]
+ ]
+ },
+ "length": 0.0004647694653149,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1215",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1664,
+ "bus2": 1665,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856375306784422, 45.69110589277815],
+ [4.856382029776952, 45.69110208720114]
+ ]
+ },
+ "length": 0.000673157746019,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1216",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1665,
+ "bus2": 1666,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856382029776952, 45.69110208720114],
+ [4.856387024934563, 45.69109925657929]
+ ]
+ },
+ "length": 0.0005003696964554,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2308",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2846,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.856355663247043, 45.69105945574269],
+ [4.856360725716369, 45.69102412913973]
+ ]
+ },
+ "length": 0.0089995012028159,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2311",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2849,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.85640419839692, 45.69110967215316],
+ [4.856458006484099, 45.69111484486989]
+ ]
+ },
+ "length": 0.0059995904338227,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1585",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2089,
+ "bus2": 2090,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855407023176602, 45.69131305456497],
+ [4.855368916328575, 45.69130913987988]
+ ]
+ },
+ "length": 0.0029999740821226,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1586",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2090,
+ "bus2": 2091,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855368916328575, 45.69130913987988],
+ [4.855356218598147, 45.6913078408805]
+ ]
+ },
+ "length": 0.0009995457086402,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2312",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2849,
+ "bus2": 2850,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856458006484099, 45.69111484486989],
+ [4.856636058726183, 45.69113194244653]
+ ]
+ },
+ "length": 0.0139986419668756,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2309",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2846,
+ "bus2": 2847,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856360725716369, 45.69102412913973],
+ [4.856383793336582, 45.69086300169013]
+ ]
+ },
+ "length": 0.0179984696461502,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2832",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1367,
+ "bus2": 3399,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855860204231766, 45.69176818400519],
+ [4.855763551680219, 45.69182738723423]
+ ]
+ },
+ "length": 0.0099988303999178,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2313",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2850,
+ "bus2": 2851,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856636058726183, 45.69113194244653],
+ [4.856800333523847, 45.69114772016799]
+ ]
+ },
+ "length": 0.0129154893237343,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2833",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3399,
+ "bus2": 3400,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855763551680219, 45.69182738723423],
+ [4.855584089016939, 45.69193730935378],
+ [4.855398849537063, 45.69194059727197]
+ ]
+ },
+ "length": 0.0329985491086803,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2310",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2847,
+ "bus2": 2848,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856383793336582, 45.69086300169013],
+ [4.856390704015929, 45.69081473478015]
+ ]
+ },
+ "length": 0.0053915783689662,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2851,
+ "bus2": 2852,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856800333523847, 45.69114772016799],
+ [4.856801404224056, 45.69114782212127]
+ ]
+ },
+ "length": 8.41665220926229e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2315",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2852,
+ "bus2": 2853,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856801404224056, 45.69114782212127],
+ [4.856806693572222, 45.69114833332971]
+ ]
+ },
+ "length": 0.0004159034442303,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2834",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3400,
+ "bus2": 3401,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855398849537063, 45.69194059727197],
+ [4.855392869155902, 45.69194070460053],
+ [4.855387309011729, 45.69184721664104],
+ [4.855416724230305, 45.69181947119029]
+ ]
+ },
+ "length": 0.0147075358057835,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2835",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3401,
+ "bus2": 3402,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855416724230305, 45.69181947119029],
+ [4.855418952830454, 45.69181736884877]
+ ]
+ },
+ "length": 0.0002910897047899,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2836",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3402,
+ "bus2": 3403,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855418952830454, 45.69181736884877],
+ [4.855420553793683, 45.69181586568582]
+ ]
+ },
+ "length": 0.0002084777079536,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1646",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2156,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.85685262162569, 45.69253367223592]
+ ]
+ },
+ "length": 0.0394013052961165,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1960",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2488,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.856738631522436, 45.69216124238103]
+ ]
+ },
+ "length": 0.0189987578088231,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1961",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2488,
+ "bus2": 2489,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856738631522436, 45.69216124238103],
+ [4.85665349107763, 45.69215091411277],
+ [4.8563875660472, 45.69228111612342]
+ ]
+ },
+ "length": 0.0319981744631324,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1647",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2156,
+ "bus2": 2157,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85685262162569, 45.69253367223592],
+ [4.856851022816997, 45.69253802876519]
+ ]
+ },
+ "length": 0.0004999657082792,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1962",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2489,
+ "bus2": 2490,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.8563875660472, 45.69228111612342],
+ [4.856292856235074, 45.69232748538923]
+ ]
+ },
+ "length": 0.008999023393858,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1963",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2490,
+ "bus2": 2491,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856292856235074, 45.69232748538923],
+ [4.856208673924059, 45.69236870335052]
+ ]
+ },
+ "length": 0.0079989134977189,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1964",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2491,
+ "bus2": 2492,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856208673924059, 45.69236870335052],
+ [4.856140935805975, 45.69240186471046],
+ [4.856052674911791, 45.69246595632609],
+ [4.856029618601329, 45.69250467560685]
+ ]
+ },
+ "length": 0.0209990509945453,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1965",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2492,
+ "bus2": 2493,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856029618601329, 45.69250467560685],
+ [4.855930737267387, 45.69267072873552]
+ ]
+ },
+ "length": 0.0199986363582786,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1966",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2493,
+ "bus2": 2494,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855930737267387, 45.69267072873552],
+ [4.855888072041425, 45.69274239200233]
+ ]
+ },
+ "length": 0.008630510320176,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2389",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2933,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.85627431413481, 45.69280960338721]
+ ]
+ },
+ "length": 0.0309983265742373,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2056",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2588,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.855825999456157, 45.69273095075617]
+ ]
+ },
+ "length": 0.0049993261430797,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2057",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2588,
+ "bus2": 2589,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855825999456157, 45.69273095075617],
+ [4.855788745488097, 45.6927240826258]
+ ]
+ },
+ "length": 0.003000476475499,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2058",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2589,
+ "bus2": 2590,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855788745488097, 45.6927240826258],
+ [4.855676659986405, 45.69270342242253]
+ ]
+ },
+ "length": 0.0090273856534237,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2059",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2590,
+ "bus2": 2591,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855676659986405, 45.69270342242253],
+ [4.855670455137178, 45.69270227463329]
+ ]
+ },
+ "length": 0.0004998552042313,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2390",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2933,
+ "bus2": 2934,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85627431413481, 45.69280960338721],
+ [4.856417860286734, 45.69283457875029]
+ ]
+ },
+ "length": 0.0115203641917798,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2391",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2934,
+ "bus2": 2935,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856417860286734, 45.69283457875029],
+ [4.856423816029007, 45.69283561508038]
+ ]
+ },
+ "length": 0.0004779834842022,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2392",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2935,
+ "bus2": 2936,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856423816029007, 45.69283561508038],
+ [4.856424087948438, 45.69283566297754]
+ ]
+ },
+ "length": 2.183881197426037e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 10,
+ "bus": 542,
+ "phases": "abcn",
+ "powers": [
+ [1319.5514969710862, 231.89395762970432],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 1365,
+ "phases": "abcn",
+ "powers": [
+ [1279.0606072611827, 398.74167539455425],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 1365,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1303.5603371098352, 309.38876556509604]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 1365,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1299.6575729488254, 325.3938441651446],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 73,
+ "bus": 1365,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1277.5307281544729, 403.61640125855155],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 1367,
+ "phases": "abcn",
+ "powers": [
+ [1317.0812188972347, 245.5361960525906],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 1367,
+ "phases": "abcn",
+ "powers": [
+ [1333.9538346826566, 124.73222390079212],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 61,
+ "bus": 1367,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1324.0862950086896, 204.41732831138063]
+ ]
+ },
+ {
+ "id": 86,
+ "bus": 1367,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1326.9123992351522, 185.18759542640527],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 40,
+ "bus": 1407,
+ "phases": "abcn",
+ "powers": [
+ [1330.4682005964203, 157.6240081508046],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 60,
+ "bus": 1407,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1305.3399293324028, 301.7923617891606]
+ ]
+ },
+ {
+ "id": 52,
+ "bus": 1663,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1292.7765005180647, 351.7383693202493]
+ ]
+ },
+ {
+ "id": 83,
+ "bus": 1663,
+ "phases": "abcn",
+ "powers": [
+ [1285.618448582671, 377.0625484023677],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 1664,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1278.0628087235511, 401.92837384472966],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 46,
+ "bus": 1664,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1332.054862653535, 143.59945551732818]
+ ]
+ },
+ {
+ "id": 57,
+ "bus": 1664,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1331.6484712473598, 147.32043228408932],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 1665,
+ "phases": "abcn",
+ "powers": [
+ [1322.6898869253412, 213.2660867771289],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 62,
+ "bus": 1665,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1304.6226093055911, 304.87834956335075]
+ ]
+ },
+ {
+ "id": 41,
+ "bus": 1666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1283.5010670472027, 384.20823993310415]
+ ]
+ },
+ {
+ "id": 54,
+ "bus": 1666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1323.8636496186705, 205.85431246912336],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 2081,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1296.5831906572867, 337.43590568991283],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 49,
+ "bus": 2081,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1273.0014902093146, 417.6818965057808],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 85,
+ "bus": 2082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1303.7749143548147, 308.4832790329114],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 78,
+ "bus": 2083,
+ "phases": "abcn",
+ "powers": [
+ [1279.2773539758966, 398.04574152756607],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 75,
+ "bus": 2084,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1281.6474812299318, 390.34689008723115]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1313.1125046335185, 265.9445636197316]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [1298.2482283705212, 330.9720505973342],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1294.5073490838445, 345.3138918603177]
+ ]
+ },
+ {
+ "id": 39,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [1306.9165625138949, 294.88991059489666],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 69,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [1295.4319816915825, 341.82881908116127],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 71,
+ "bus": 2085,
+ "phases": "abcn",
+ "powers": [
+ [1277.5398209320822, 403.58761957798544],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 2086,
+ "phases": "abcn",
+ "powers": [
+ [1303.7502721461626, 308.58740839931943],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 59,
+ "bus": 2086,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1336.2189429549055, 97.51870196160768]
+ ]
+ },
+ {
+ "id": 74,
+ "bus": 2086,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1317.5980000347338, 242.747751891282],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 2088,
+ "phases": "abcn",
+ "powers": [
+ [1287.7366738794012, 369.76373468718975],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 2088,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1318.883122101868, 235.66559141849945]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 2089,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1314.2178856839457, 260.42716773067457]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 2156,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1283.1994505839823, 385.21439584310394],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 48,
+ "bus": 2156,
+ "phases": "abcn",
+ "powers": [
+ [1292.4452642997337, 352.95353735724615],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 2157,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1290.50398309402, 359.98670859112406]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 2488,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1285.6652413586705, 376.90296882082686]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 2489,
+ "phases": "abcn",
+ "powers": [
+ [1296.8316300904191, 336.47984180456893],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 43,
+ "bus": 2489,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1312.7018441498733, 267.9642310259403],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 82,
+ "bus": 2490,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1295.5135097591285, 341.51970188465845]
+ ]
+ },
+ {
+ "id": 38,
+ "bus": 2492,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1299.5393861113935, 325.86553160625016]
+ ]
+ },
+ {
+ "id": 79,
+ "bus": 2492,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1301.1590452579821, 319.3369688700921],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 2493,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1291.4197071024971, 356.68767970186735]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 2494,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1328.6600109664457, 172.20202090116732]
+ ]
+ },
+ {
+ "id": 44,
+ "bus": 2494,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1289.6259799692361, 363.1195292630083]
+ ]
+ },
+ {
+ "id": 80,
+ "bus": 2494,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1276.4129448719732, 407.13751350994266]
+ ]
+ },
+ {
+ "id": 51,
+ "bus": 2590,
+ "phases": "abcn",
+ "powers": [
+ [1306.792993997642, 295.43701796234075],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 68,
+ "bus": 2591,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1280.8899969845843, 392.8253764316062],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [1312.3403791009896, 269.7289197043438],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 37,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1322.825527496478, 212.42312620679115],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 55,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1334.3127176075302, 120.83266269766999]
+ ]
+ },
+ {
+ "id": 65,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1318.9973828548552, 235.0252428269018]
+ ]
+ },
+ {
+ "id": 84,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1282.174711833792, 388.6115915380472],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 88,
+ "bus": 2649,
+ "phases": "abcn",
+ "powers": [
+ [1337.6958288260637, 74.57097481696131],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 2650,
+ "phases": "abcn",
+ "powers": [
+ [1320.7492683883816, 224.9718444502703],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 45,
+ "bus": 2650,
+ "phases": "abcn",
+ "powers": [
+ [1318.3553489029791, 238.6003662250029],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 63,
+ "bus": 2650,
+ "phases": "abcn",
+ "powers": [
+ [1290.5398730409277, 359.85802316372997],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 87,
+ "bus": 2650,
+ "phases": "abcn",
+ "powers": [
+ [1276.1729341198768, 407.8892042744769],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 2846,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1293.8639330375797, 347.71695893114986]
+ ]
+ },
+ {
+ "id": 76,
+ "bus": 2846,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1304.4476784103185, 305.62593972654224]
+ ]
+ },
+ {
+ "id": 70,
+ "bus": 2847,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1288.1991630529185, 368.1492592055051]
+ ]
+ },
+ {
+ "id": 56,
+ "bus": 2848,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1305.515121009439, 301.0336020438767],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 64,
+ "bus": 2848,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1337.385446942204, 79.94452483443143],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 2850,
+ "phases": "abcn",
+ "powers": [
+ [1274.459527295882, 413.21165766294473],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 2850,
+ "phases": "abcn",
+ "powers": [
+ [1308.5653928987515, 287.4849096066398],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 53,
+ "bus": 2850,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1313.5781749594094, 263.6348592544411]
+ ]
+ },
+ {
+ "id": 72,
+ "bus": 2850,
+ "phases": "abcn",
+ "powers": [
+ [1288.1205888132586, 368.4240890864575],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 2851,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1299.2869324630979, 326.8706592437368],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 2851,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1282.3548639279086, 388.0167054448003],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 81,
+ "bus": 2851,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1279.3769698913727, 397.72544506904677]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 2852,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1319.798076679979, 230.4864367715152],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 67,
+ "bus": 2852,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1297.799021163752, 332.7291111553191]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 2853,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1277.5672476586992, 403.50079114368214]
+ ]
+ },
+ {
+ "id": 42,
+ "bus": 2853,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1312.736718592784, 267.79333151154407],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 2933,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1300.8871516428294, 320.44278652266155]
+ ]
+ },
+ {
+ "id": 66,
+ "bus": 2934,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1299.5120410055094, 325.97456346392505],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 50,
+ "bus": 2935,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1290.428164252019, 360.25839844334774]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 2936,
+ "phases": "abcn",
+ "powers": [
+ [1318.1152667995234, 239.92312138229403],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 3399,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1279.6310179555057, 396.9073174306034],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 47,
+ "bus": 3399,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1324.2714719206322, 203.21424507392098],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 3400,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1338.7827370942632, 51.495083281748634],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 3400,
+ "phases": "abcn",
+ "powers": [
+ [1288.127708911686, 368.39919418713686],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 77,
+ "bus": 3401,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1326.8772136572086, 185.43953359810874],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 58,
+ "bus": 3402,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1288.8246746527598, 365.953437953532],
+ [0.0, 0.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 0,
+ "bus": 0,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0, 0.0],
+ [0.0, 0.125, 0.0, 0.0],
+ [0.0, 0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.0, 0.125]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00010284317710785252, -2.5710794276947463e-5, -2.5710794276947463e-5, -2.57107942769788e-5],
+ [-2.5710794276947463e-5, 0.00010284317710785252, -2.5710794276947463e-5, -2.57107942769788e-5],
+ [-2.5710794276947463e-5, -2.5710794276947463e-5, 0.00010284317710785252, -2.57107942769788e-5],
+ [-2.57107942769788e-5, -2.57107942769788e-5, -2.57107942769788e-5, 0.0001028431771079]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_35",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.8571428571428571]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.31578947368421]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json b/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json
index 8d7fa93d..8e848b20 100644
--- a/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json
+++ b/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json
@@ -1,1131 +1,726 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 0,
- "phase": "n"
- },
- {
- "id": 83,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 0,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845962381409016, 45.68384043214515]
- }
- },
- {
- "id": 83,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845962381409016, 45.68384043214515]
- }
- },
- {
- "id": 99,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.846156585393867, 45.68367766450246]
- }
- },
- {
- "id": 100,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.846250687311938, 45.6832344998551]
- }
- },
- {
- "id": 105,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.847069369791975, 45.68322067202762]
- }
- },
- {
- "id": 106,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.847547024466777, 45.68347281055756]
- }
- },
- {
- "id": 107,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.84623598955454, 45.68279917127494]
- }
- },
- {
- "id": 391,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.848237446933078, 45.68115303991434]
- }
- },
- {
- "id": 474,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845581618983626, 45.68374183928897]
- }
- },
- {
- "id": 475,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845156025280701, 45.68367395215652]
- }
- },
- {
- "id": 523,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845922473772013, 45.6837819174691]
- }
- },
- {
- "id": 582,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845719135428181, 45.68312398072084]
- }
- },
- {
- "id": 1464,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845693784456832, 45.68312113660608]
- }
- },
- {
- "id": 1465,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845207063024701, 45.68321554995192]
- }
- },
- {
- "id": 2470,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845723296509978, 45.68310622726796]
- }
- },
- {
- "id": 2471,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845901154044143, 45.68234732615426]
- }
- },
- {
- "id": 2472,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.84590299176227, 45.68233946299197]
- }
- },
- {
- "id": 3283,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845897154829175, 45.68377893765827]
- }
- },
- {
- "id": 3284,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.845859183244179, 45.68377447677985]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 0,
- "bus2": 83,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line359",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 83,
- "bus2": 99,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845962381409016, 45.68384043214515],
- [4.845967218558783, 45.68382737117161],
- [4.845985253622802, 45.68377871214401],
- [4.846037332609646, 45.68373794129257],
- [4.846156585393867, 45.68367766450246]
- ]
- },
- "length": 0.0231239168145578,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line230",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 83,
- "bus2": 523,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845962381409016, 45.68384043214515],
- [4.845954083097388, 45.68382825923782],
- [4.845922473772013, 45.6837819174691]
- ]
- },
- "length": 0.0057090361650646,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2717",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 523,
- "bus2": 3283,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845922473772013, 45.6837819174691],
- [4.845897154829175, 45.68377893765827]
- ]
- },
- "length": 0.0020000434170354,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line2718",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3283,
- "bus2": 3284,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845897154829175, 45.68377893765827],
- [4.845859183244179, 45.68377447677985]
- ]
- },
- "length": 0.0029993781124104,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line2719",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3284,
- "bus2": 474,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845859183244179, 45.68377447677985],
- [4.845581618983626, 45.68374183928897]
- ]
- },
- "length": 0.0219253677107112,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 99,
- "bus2": 100,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.846156585393867, 45.68367766450246],
- [4.846250687311938, 45.6832344998551]
- ]
- },
- "length": 0.0497981490086611,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line203",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 474,
- "bus2": 475,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845581618983626, 45.68374183928897],
- [4.845532108276982, 45.68395177478787],
- [4.845100917560134, 45.68390201502873],
- [4.845156025280701, 45.68367395215652]
- ]
- },
- "length": 0.0834023804327046,
- "params_id": "S_CU_14",
- "ground": "ground"
- },
- {
- "id": "line267",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 474,
- "bus2": 582,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845581618983626, 45.68374183928897],
- [4.845719135428181, 45.68312398072084]
- ]
- },
- "length": 0.0695025869248514,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 100,
- "bus2": 107,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.846250687311938, 45.6832344998551],
- [4.84623598955454, 45.68279917127494]
- ]
- },
- "length": 0.0483981960512238,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line1039",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 582,
- "bus2": 1464,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845719135428181, 45.68312398072084],
- [4.845693784456832, 45.68312113660608]
- ]
- },
- "length": 0.0020000879179518,
- "params_id": "S_CU_14",
- "ground": "ground"
- },
- {
- "id": "line1943",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 582,
- "bus2": 2470,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845719135428181, 45.68312398072084],
- [4.845723296509978, 45.68310622726796]
- ]
- },
- "length": 0.0019996601111272,
- "params_id": "S_CU_14",
- "ground": "ground"
- },
- {
- "id": "line1944",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2470,
- "bus2": 2471,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845723296509978, 45.68310622726796],
- [4.845901154044143, 45.68234732615426]
- ]
- },
- "length": 0.0854786464782574,
- "params_id": "S_CU_14",
- "ground": "ground"
- },
- {
- "id": "line1040",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1464,
- "bus2": 1465,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845693784456832, 45.68312113660608],
- [4.845324158276797, 45.68307971235598],
- [4.845287174983968, 45.68322635909988],
- [4.845207063024701, 45.68321554995192]
- ]
- },
- "length": 0.0520686283532788,
- "params_id": "S_CU_14",
- "ground": "ground"
+ "id": 0,
+ "phase": "n"
},
{
- "id": "line20",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 107,
- "bus2": 105,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.84623598955454, 45.68279917127494],
- [4.847069369791975, 45.68322067202762]
- ]
- },
- "length": 0.0800614921683771,
- "params_id": "T_AL_35",
- "ground": "ground"
- },
- {
- "id": "line1945",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2471,
- "bus2": 2472,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.845901154044143, 45.68234732615426],
- [4.84590299176227, 45.68233946299197]
- ]
- },
- "length": 0.0008856010986698,
- "params_id": "S_CU_14",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 105,
- "bus2": 106,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.847069369791975, 45.68322067202762],
- [4.847547024466777, 45.68347281055756]
- ]
- },
- "length": 0.0465834382688477,
- "params_id": "T_AL_35",
- "ground": "ground"
- },
- {
- "id": "line157",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 106,
- "bus2": 391,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.847547024466777, 45.68347281055756],
- [4.847747154588589, 45.68346832835926],
- [4.847837128896726, 45.68268140889288],
- [4.847871328228379, 45.68196684814885],
- [4.848000559193578, 45.68159040386583],
- [4.848237446933078, 45.68115303991434]
- ]
- },
- "length": 0.2778365911956989,
- "params_id": "S_AL_95",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 106,
- "phases": "abcn",
- "powers": [
- [4079.9204366170316, 662.3395468482394],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 3,
- "bus": 106,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [4079.7380005646523, 663.4623509990394]
- ]
- },
- {
- "id": 2,
- "bus": 475,
- "phases": "abcn",
- "powers": [
- [3955.5045052285295, 1199.3450519184416],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 0,
- "bus": 0,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_50",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.6,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.6,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.6,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.6
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 5.1270792106585444e-05,
- -1.2817698026646363e-05,
- -1.2817698026646363e-05,
- -1.281769802664636e-05
- ],
- [
- -1.2817698026646363e-05,
- 5.1270792106585444e-05,
- -1.2817698026646363e-05,
- -1.281769802664636e-05
- ],
- [
- -1.2817698026646363e-05,
- -1.2817698026646363e-05,
- 5.1270792106585444e-05,
- -1.281769802664636e-05
- ],
- [
- -1.281769802664636e-05,
- -1.281769802664636e-05,
- -1.281769802664636e-05,
- 5.127079210658544e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.31578947368421
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05
- ]
- ]
- ]
- },
- {
- "id": "S_CU_14",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.2857142857142856,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.2857142857142856,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.2857142857142856,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.2857142857142856
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.149918231685973e-05,
- -1.0374795579214933e-05,
- -1.0374795579214933e-05,
- -1.0374795579214932e-05
- ],
- [
- -1.0374795579214933e-05,
- 4.149918231685973e-05,
- -1.0374795579214933e-05,
- -1.0374795579214932e-05
- ],
- [
- -1.0374795579214933e-05,
- -1.0374795579214933e-05,
- 4.149918231685973e-05,
- -1.0374795579214932e-05
- ],
- [
- -1.0374795579214932e-05,
- -1.0374795579214932e-05,
- -1.0374795579214932e-05,
- 4.149918231685973e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_35",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.8571428571428571
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.8380526865282814e-05,
- -1.2095131716320704e-05,
- -1.2095131716320704e-05,
- -1.2095131716320704e-05
- ],
- [
- -1.2095131716320704e-05,
- 4.8380526865282814e-05,
- -1.2095131716320704e-05,
- -1.2095131716320704e-05
- ],
- [
- -1.2095131716320704e-05,
- -1.2095131716320704e-05,
- 4.8380526865282814e-05,
- -1.2095131716320704e-05
- ],
- [
- -1.2095131716320704e-05,
- -1.2095131716320704e-05,
- -1.2095131716320704e-05,
- 4.8380526865282814e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_70",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.42857142857142855,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.42857142857142855,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.42857142857142855,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4285714285714285
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.319468914507713e-05
- ],
- [
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- 5.277875658030852e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 83,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 0,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845962381409016, 45.68384043214515]
+ }
+ },
+ {
+ "id": 83,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845962381409016, 45.68384043214515]
+ }
+ },
+ {
+ "id": 99,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.846156585393867, 45.68367766450246]
+ }
+ },
+ {
+ "id": 100,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.846250687311938, 45.6832344998551]
+ }
+ },
+ {
+ "id": 105,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.847069369791975, 45.68322067202762]
+ }
+ },
+ {
+ "id": 106,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.847547024466777, 45.68347281055756]
+ }
+ },
+ {
+ "id": 107,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.84623598955454, 45.68279917127494]
+ }
+ },
+ {
+ "id": 391,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.848237446933078, 45.68115303991434]
+ }
+ },
+ {
+ "id": 474,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845581618983626, 45.68374183928897]
+ }
+ },
+ {
+ "id": 475,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845156025280701, 45.68367395215652]
+ }
+ },
+ {
+ "id": 523,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845922473772013, 45.6837819174691]
+ }
+ },
+ {
+ "id": 582,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845719135428181, 45.68312398072084]
+ }
+ },
+ {
+ "id": 1464,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845693784456832, 45.68312113660608]
+ }
+ },
+ {
+ "id": 1465,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845207063024701, 45.68321554995192]
+ }
+ },
+ {
+ "id": 2470,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845723296509978, 45.68310622726796]
+ }
+ },
+ {
+ "id": 2471,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845901154044143, 45.68234732615426]
+ }
+ },
+ {
+ "id": 2472,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.84590299176227, 45.68233946299197]
+ }
+ },
+ {
+ "id": 3283,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845897154829175, 45.68377893765827]
+ }
+ },
+ {
+ "id": 3284,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.845859183244179, 45.68377447677985]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 0,
+ "bus2": 83,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line359",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 83,
+ "bus2": 99,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845962381409016, 45.68384043214515],
+ [4.845967218558783, 45.68382737117161],
+ [4.845985253622802, 45.68377871214401],
+ [4.846037332609646, 45.68373794129257],
+ [4.846156585393867, 45.68367766450246]
+ ]
+ },
+ "length": 0.0231239168145578,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line230",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 83,
+ "bus2": 523,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845962381409016, 45.68384043214515],
+ [4.845954083097388, 45.68382825923782],
+ [4.845922473772013, 45.6837819174691]
+ ]
+ },
+ "length": 0.0057090361650646,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2717",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 523,
+ "bus2": 3283,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845922473772013, 45.6837819174691],
+ [4.845897154829175, 45.68377893765827]
+ ]
+ },
+ "length": 0.0020000434170354,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line2718",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3283,
+ "bus2": 3284,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845897154829175, 45.68377893765827],
+ [4.845859183244179, 45.68377447677985]
+ ]
+ },
+ "length": 0.0029993781124104,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line2719",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3284,
+ "bus2": 474,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845859183244179, 45.68377447677985],
+ [4.845581618983626, 45.68374183928897]
+ ]
+ },
+ "length": 0.0219253677107112,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 99,
+ "bus2": 100,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.846156585393867, 45.68367766450246],
+ [4.846250687311938, 45.6832344998551]
+ ]
+ },
+ "length": 0.0497981490086611,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line203",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 474,
+ "bus2": 475,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845581618983626, 45.68374183928897],
+ [4.845532108276982, 45.68395177478787],
+ [4.845100917560134, 45.68390201502873],
+ [4.845156025280701, 45.68367395215652]
+ ]
+ },
+ "length": 0.0834023804327046,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line267",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 474,
+ "bus2": 582,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845581618983626, 45.68374183928897],
+ [4.845719135428181, 45.68312398072084]
+ ]
+ },
+ "length": 0.0695025869248514,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 100,
+ "bus2": 107,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.846250687311938, 45.6832344998551],
+ [4.84623598955454, 45.68279917127494]
+ ]
+ },
+ "length": 0.0483981960512238,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line1039",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 582,
+ "bus2": 1464,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845719135428181, 45.68312398072084],
+ [4.845693784456832, 45.68312113660608]
+ ]
+ },
+ "length": 0.0020000879179518,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line1943",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 582,
+ "bus2": 2470,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845719135428181, 45.68312398072084],
+ [4.845723296509978, 45.68310622726796]
+ ]
+ },
+ "length": 0.0019996601111272,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line1944",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2470,
+ "bus2": 2471,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845723296509978, 45.68310622726796],
+ [4.845901154044143, 45.68234732615426]
+ ]
+ },
+ "length": 0.0854786464782574,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line1040",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1464,
+ "bus2": 1465,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845693784456832, 45.68312113660608],
+ [4.845324158276797, 45.68307971235598],
+ [4.845287174983968, 45.68322635909988],
+ [4.845207063024701, 45.68321554995192]
+ ]
+ },
+ "length": 0.0520686283532788,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line20",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 107,
+ "bus2": 105,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.84623598955454, 45.68279917127494],
+ [4.847069369791975, 45.68322067202762]
+ ]
+ },
+ "length": 0.0800614921683771,
+ "params_id": "T_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line1945",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2471,
+ "bus2": 2472,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.845901154044143, 45.68234732615426],
+ [4.84590299176227, 45.68233946299197]
+ ]
+ },
+ "length": 0.0008856010986698,
+ "params_id": "S_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 105,
+ "bus2": 106,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.847069369791975, 45.68322067202762],
+ [4.847547024466777, 45.68347281055756]
+ ]
+ },
+ "length": 0.0465834382688477,
+ "params_id": "T_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line157",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 106,
+ "bus2": 391,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.847547024466777, 45.68347281055756],
+ [4.847747154588589, 45.68346832835926],
+ [4.847837128896726, 45.68268140889288],
+ [4.847871328228379, 45.68196684814885],
+ [4.848000559193578, 45.68159040386583],
+ [4.848237446933078, 45.68115303991434]
+ ]
+ },
+ "length": 0.2778365911956989,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 106,
+ "phases": "abcn",
+ "powers": [
+ [4079.9204366170316, 662.3395468482394],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 106,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [4079.7380005646523, 663.4623509990394]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 475,
+ "phases": "abcn",
+ "powers": [
+ [3955.5045052285295, 1199.3450519184416],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 0,
+ "bus": 0,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_50",
+ "z_line": [
+ [
+ [0.6, 0.0, 0.0, 0.0],
+ [0.0, 0.6, 0.0, 0.0],
+ [0.0, 0.0, 0.6, 0.0],
+ [0.0, 0.0, 0.0, 0.6]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [5.1270792106585444e-5, -1.2817698026646363e-5, -1.2817698026646363e-5, -1.281769802664636e-5],
+ [-1.2817698026646363e-5, 5.1270792106585444e-5, -1.2817698026646363e-5, -1.281769802664636e-5],
+ [-1.2817698026646363e-5, -1.2817698026646363e-5, 5.1270792106585444e-5, -1.281769802664636e-5],
+ [-1.281769802664636e-5, -1.281769802664636e-5, -1.281769802664636e-5, 5.127079210658544e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.31578947368421]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_CU_14",
+ "z_line": [
+ [
+ [1.2857142857142856, 0.0, 0.0, 0.0],
+ [0.0, 1.2857142857142856, 0.0, 0.0],
+ [0.0, 0.0, 1.2857142857142856, 0.0],
+ [0.0, 0.0, 0.0, 1.2857142857142856]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.149918231685973e-5, -1.0374795579214933e-5, -1.0374795579214933e-5, -1.0374795579214932e-5],
+ [-1.0374795579214933e-5, 4.149918231685973e-5, -1.0374795579214933e-5, -1.0374795579214932e-5],
+ [-1.0374795579214933e-5, -1.0374795579214933e-5, 4.149918231685973e-5, -1.0374795579214932e-5],
+ [-1.0374795579214932e-5, -1.0374795579214932e-5, -1.0374795579214932e-5, 4.149918231685973e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_35",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.8571428571428571]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.8380526865282814e-5, -1.2095131716320704e-5, -1.2095131716320704e-5, -1.2095131716320704e-5],
+ [-1.2095131716320704e-5, 4.8380526865282814e-5, -1.2095131716320704e-5, -1.2095131716320704e-5],
+ [-1.2095131716320704e-5, -1.2095131716320704e-5, 4.8380526865282814e-5, -1.2095131716320704e-5],
+ [-1.2095131716320704e-5, -1.2095131716320704e-5, -1.2095131716320704e-5, 4.8380526865282814e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_70",
+ "z_line": [
+ [
+ [0.42857142857142855, 0.0, 0.0, 0.0],
+ [0.0, 0.42857142857142855, 0.0, 0.0],
+ [0.0, 0.0, 0.42857142857142855, 0.0],
+ [0.0, 0.0, 0.0, 0.4285714285714285]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5],
+ [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json b/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json
index 82b44a44..0a440692 100644
--- a/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json
+++ b/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json
@@ -1,2975 +1,2327 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 0,
- "phase": "n"
- },
- {
- "id": 497,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 0,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897907144011231, 45.78097150797902]
- }
- },
- {
- "id": 497,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897907144011231, 45.78097150797902]
- }
- },
- {
- "id": 1296,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898045001922835, 45.78100346927449]
- }
- },
- {
- "id": 1456,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898293229168931, 45.78036680840785]
- }
- },
- {
- "id": 1457,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898455400549711, 45.77992654058046]
- }
- },
- {
- "id": 3085,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897884461560674, 45.78087120949469]
- }
- },
- {
- "id": 3761,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897884079699322, 45.78102874289239]
- }
- },
- {
- "id": 4349,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897923183116726, 45.78087392693653]
- }
- },
- {
- "id": 4761,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898123075608456, 45.78093957878617]
- }
- },
- {
- "id": 5457,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898745384410104, 45.77924751952415]
- }
- },
- {
- "id": 5458,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898751180018882, 45.77922998756756]
- }
- },
- {
- "id": 5459,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898838651369918, 45.77896529465339]
- }
- },
- {
- "id": 5460,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898840093936859, 45.77896091405773]
- }
- },
- {
- "id": 6245,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897845942283554, 45.78156339635255]
- }
- },
- {
- "id": 6246,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897839718270447, 45.78158085701398]
- }
- },
- {
- "id": 6247,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897762678044369, 45.78179679355772]
- }
- },
- {
- "id": 6248,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897752048709893, 45.78182656959385]
- }
- },
- {
- "id": 6249,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897730290703834, 45.78188755527319]
- }
- },
- {
- "id": 6250,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897728731469642, 45.78189192051037]
- }
- },
- {
- "id": 6393,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898412763983085, 45.78014354708657]
- }
- },
- {
- "id": 6394,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898419571399055, 45.78012619009918]
- }
- },
- {
- "id": 6395,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898473980842879, 45.77998737132648]
- }
- },
- {
- "id": 6396,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898523221204275, 45.77985689773639]
- }
- },
- {
- "id": 6397,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.89872661987032, 45.77929898564247]
- }
- },
- {
- "id": 6398,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.89872980270631, 45.77929026266951]
- }
- },
- {
- "id": 6419,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898129416377485, 45.78092214244819]
- }
- },
- {
- "id": 6420,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898316620839051, 45.78040775333067]
- }
- },
- {
- "id": 6421,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898317817752009, 45.78040444951417]
- }
- },
- {
- "id": 6422,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898351519836142, 45.78031184833309]
- }
- },
- {
- "id": 6423,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898352250162446, 45.78030985136289]
- }
- },
- {
- "id": 6424,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898389179357653, 45.78020837317398]
- }
- },
- {
- "id": 6425,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898389602073382, 45.78020722935336]
- }
- },
- {
- "id": 6501,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897940702380139, 45.78127769072983]
- }
- },
- {
- "id": 6502,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897939246829146, 45.78128207160847]
- }
- },
- {
- "id": 6503,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897934893026222, 45.78129521395135]
- }
- },
- {
- "id": 6514,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896548496962727, 45.78135624166887]
- }
- },
- {
- "id": 6515,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896523372448674, 45.78135239468216]
- }
- },
- {
- "id": 6516,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896422978076482, 45.7813370223192]
- }
- },
- {
- "id": 6517,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896160874188697, 45.78129687311034]
- }
- },
- {
- "id": 6518,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.89615458975594, 45.78129590916776]
- }
- },
- {
- "id": 6544,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898845721166767, 45.77894335893312]
- }
- },
- {
- "id": 6545,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.899009716651245, 45.77843226148285]
- }
- },
- {
- "id": 6647,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898038388725708, 45.78102085781223]
- }
- },
- {
- "id": 6648,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897968943267765, 45.78120343308894]
- }
- },
- {
- "id": 6934,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897820874721898, 45.7815593953291]
- }
- },
- {
- "id": 6935,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897462306821973, 45.78150214100457]
- }
- },
- {
- "id": 6936,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897124322832424, 45.78144817883301]
- }
- },
- {
- "id": 6937,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896978648710327, 45.78142491892547]
- }
- },
- {
- "id": 6938,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896735556262215, 45.78138610188036]
- }
- },
- {
- "id": 6939,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896573382744059, 45.78136021111021]
- }
- },
- {
- "id": 6940,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896554770232163, 45.78135724184979]
- }
- },
- {
- "id": 6941,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.896554731259192, 45.78135723373672]
- }
- },
- {
- "id": 12391,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.89784423814649, 45.78096220397186]
- }
- },
- {
- "id": 12392,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897833304903626, 45.7809605900276]
- }
- },
- {
- "id": 13415,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898104125351007, 45.78109479929395]
- }
- },
- {
- "id": 13416,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898234177501279, 45.7811182610444]
- }
- },
- {
- "id": 13417,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.89823744259486, 45.78111820457093]
- }
- },
- {
- "id": 13418,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898490322487639, 45.78111415539615]
- }
- },
- {
- "id": 13419,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898491273910041, 45.78111414269355]
- }
- },
- {
- "id": 13420,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898735000638527, 45.78111023876026]
- }
- },
- {
- "id": 13421,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898735514694392, 45.78111022703252]
- }
- },
- {
- "id": 13422,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.898741428012528, 45.78111012812965]
- }
- },
- {
- "id": 24401,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897951242695125, 45.78093941133832]
- }
- },
- {
- "id": 24402,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.897964349302775, 45.78087388818584]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 0,
- "bus2": 497,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line351",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 1296,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.89792101189142, 45.78098088621309],
- [4.897948323438979, 45.78099937330788],
- [4.898045001922835, 45.78100346927449]
- ]
- },
- "length": 0.0104875299910643,
- "params_id": "S_CU_50",
- "ground": "ground"
- },
- {
- "id": "line1322",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 3085,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897896621177853, 45.78096019916252],
- [4.897875994437282, 45.78093801304183],
- [4.897884461560674, 45.78087120949469]
- ]
- },
- "length": 0.0103959141501447,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line1711",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 3761,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897901908374765, 45.78098449940555],
- [4.897884079699322, 45.78102874289239]
- ]
- },
- "length": 0.0051092589127879,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2064",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 4349,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897909349810417, 45.78095809957753],
- [4.897923183116726, 45.78087392693653]
- ]
- },
- "length": 0.0094171895161053,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2218",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 1456,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897924785315404, 45.78096605584098],
- [4.897985775457337, 45.78094721107689],
- [4.898047545759933, 45.78094760250347],
- [4.898080247290673, 45.78093155423457],
- [4.898293229168931, 45.78036680840785]
- ]
- },
- "length": 0.0780136650514689,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 4761,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897926413632788, 45.78097201364331],
- [4.898072018461941, 45.78097584883799],
- [4.898123075608456, 45.78093957878617]
- ]
- },
- "length": 0.0169898615012794,
- "params_id": "S_CU_50",
- "ground": "ground"
- },
- {
- "id": "line8959",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 12391,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.897888269637416, 45.78096871593997],
- [4.89784423814649, 45.78096220397186]
- ]
- },
- "length": 0.0034999156528606,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line19668",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 497,
- "bus2": 24401,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897907144011231, 45.78097150797902],
- [4.89792094664669, 45.78096208375364],
- [4.897950783612569, 45.78094170816726],
- [4.897951242695125, 45.78093941133832]
- ]
- },
- "length": 0.0035001358562825,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line8960",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 12391,
- "bus2": 12392,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.89784423814649, 45.78096220397186],
- [4.897833304903626, 45.7809605900276]
- ]
- },
- "length": 0.0008689777586691,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line19669",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 24401,
- "bus2": 24402,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897951242695125, 45.78093941133832],
- [4.897964349302775, 45.78087388818584]
- ]
- },
- "length": 0.0073536872026613,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line9849",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1296,
- "bus2": 13415,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898045001922835, 45.78100346927449],
- [4.898129493238593, 45.78102543189395],
- [4.898104125351007, 45.78109479929395]
- ]
- },
- "length": 0.0149679163862218,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line3913",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1296,
- "bus2": 6647,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898045001922835, 45.78100346927449],
- [4.898038388725708, 45.78102085781223]
- ]
- },
- "length": 0.0019999427589565,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3914",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6647,
- "bus2": 6648,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898038388725708, 45.78102085781223],
- [4.897968943267765, 45.78120343308894]
- ]
- },
- "length": 0.0209990652574889,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3683",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4761,
- "bus2": 6419,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898123075608456, 45.78093957878617],
- [4.898129416377485, 45.78092214244819]
- ]
- },
- "length": 0.0019997481783991,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3684",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6419,
- "bus2": 6420,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898129416377485, 45.78092214244819],
- [4.898316620839051, 45.78040775333067]
- ]
- },
- "length": 0.0589973443359054,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line9850",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13415,
- "bus2": 13416,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898104125351007, 45.78109479929395],
- [4.898099778060301, 45.78110669930064],
- [4.898159319916434, 45.78111945542906],
- [4.898234177501279, 45.7811182610444]
- ]
- },
- "length": 0.0120308859106781,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line3915",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6648,
- "bus2": 6501,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897968943267765, 45.78120343308894],
- [4.897940702380139, 45.78127769072983]
- ]
- },
- "length": 0.0085407263877016,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line9851",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13416,
- "bus2": 13417,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898234177501279, 45.7811182610444],
- [4.89823744259486, 45.78111820457093]
- ]
- },
- "length": 0.0002539979415765,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line9852",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13417,
- "bus2": 13418,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.89823744259486, 45.78111820457093],
- [4.898490322487639, 45.78111415539615]
- ]
- },
- "length": 0.0196711577494569,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line3766",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6501,
- "bus2": 6502,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897940702380139, 45.78127769072983],
- [4.897939246829146, 45.78128207160847]
- ]
- },
- "length": 0.0004999059062665,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3767",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6502,
- "bus2": 6503,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897939246829146, 45.78128207160847],
- [4.897934893026222, 45.78129521395135]
- ]
- },
- "length": 0.0014994600157975,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3768",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6503,
- "bus2": 6245,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897934893026222, 45.78129521395135],
- [4.897845942283554, 45.78156339635255]
- ]
- },
- "length": 0.0305998318156685,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line9853",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13418,
- "bus2": 13419,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898490322487639, 45.78111415539615],
- [4.898491273910041, 45.78111414269355]
- ]
- },
- "length": 7.400385918361567e-05,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line9854",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13419,
- "bus2": 13420,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898491273910041, 45.78111414269355],
- [4.898735000638527, 45.78111023876026]
- ]
- },
- "length": 0.0189591511709239,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line4222",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6245,
- "bus2": 6934,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897845942283554, 45.78156339635255],
- [4.897820874721898, 45.7815593953291]
- ]
- },
- "length": 0.0019995220010623,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3510",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6245,
- "bus2": 6246,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897845942283554, 45.78156339635255],
- [4.897839718270447, 45.78158085701398]
- ]
- },
- "length": 0.0020001504559546,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line9855",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13420,
- "bus2": 13421,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898735000638527, 45.78111023876026],
- [4.898735514694392, 45.78111022703252]
- ]
- },
- "length": 3.999843822761669e-05,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line9856",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13421,
- "bus2": 13422,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898735514694392, 45.78111022703252],
- [4.898741428012528, 45.78111012812965]
- ]
- },
- "length": 0.0004599993990123,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line4223",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6934,
- "bus2": 6935,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897820874721898, 45.7815593953291],
- [4.897462306821973, 45.78150214100457]
- ]
- },
- "length": 0.0286018767552987,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3511",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6246,
- "bus2": 6247,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897839718270447, 45.78158085701398],
- [4.897762678044369, 45.78179679355772]
- ]
- },
- "length": 0.0247371943252829,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3685",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6420,
- "bus2": 6421,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898316620839051, 45.78040775333067],
- [4.898317817752009, 45.78040444951417]
- ]
- },
- "length": 0.0003788233934084,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line434",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1456,
- "bus2": 1457,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898293229168931, 45.78036680840785],
- [4.89836360781197, 45.78016537166377],
- [4.898455400549711, 45.77992654058046]
- ]
- },
- "length": 0.0505368896290942,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line3686",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6421,
- "bus2": 6422,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898317817752009, 45.78040444951417],
- [4.898351519836142, 45.78031184833309]
- ]
- },
- "length": 0.0106208262167897,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3687",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6422,
- "bus2": 6423,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898351519836142, 45.78031184833309],
- [4.898352250162446, 45.78030985136289]
- ]
- },
- "length": 0.0002291090083889,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3688",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6423,
- "bus2": 6424,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898352250162446, 45.78030985136289],
- [4.898389179357653, 45.78020837317398]
- ]
- },
- "length": 0.011638899013559,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3689",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6424,
- "bus2": 6425,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898389179357653, 45.78020837317398],
- [4.898389602073382, 45.78020722935336]
- ]
- },
- "length": 0.0001313138799848,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3690",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6425,
- "bus2": 6393,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898389602073382, 45.78020722935336],
- [4.898412763983085, 45.78014354708657]
- ]
- },
- "length": 0.0073037021794629,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3512",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6247,
- "bus2": 6248,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897762678044369, 45.78179679355772],
- [4.897752048709893, 45.78182656959385]
- ]
- },
- "length": 0.0034111881398446,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3513",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6248,
- "bus2": 6249,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897752048709893, 45.78182656959385],
- [4.897730290703834, 45.78188755527319]
- ]
- },
- "length": 0.0069863781045524,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line4224",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6935,
- "bus2": 6936,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897462306821973, 45.78150214100457],
- [4.897124322832424, 45.78144817883301]
- ]
- },
- "length": 0.0269598519903243,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3657",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6393,
- "bus2": 6394,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898412763983085, 45.78014354708657],
- [4.898419571399055, 45.78012619009918]
- ]
- },
- "length": 0.0020005000078093,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3658",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6394,
- "bus2": 6395,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898419571399055, 45.78012619009918],
- [4.898473980842879, 45.77998737132648]
- ]
- },
- "length": 0.0159989956128032,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3514",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6249,
- "bus2": 6250,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897730290703834, 45.78188755527319],
- [4.897728731469642, 45.78189192051037]
- ]
- },
- "length": 0.000500106080843,
- "params_id": "A_CU_48",
- "ground": "ground"
- },
- {
- "id": "line3659",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6395,
- "bus2": 6396,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898473980842879, 45.77998737132648],
- [4.898497851137242, 45.77992647231902],
- [4.898523221204275, 45.77985689773639]
- ]
- },
- "length": 0.0149994353566979,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line4225",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6936,
- "bus2": 6937,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.897124322832424, 45.78144817883301],
- [4.896978648710327, 45.78142491892547]
- ]
- },
- "length": 0.0116199876850006,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3660",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6396,
- "bus2": 6397,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898523221204275, 45.77985689773639],
- [4.89872661987032, 45.77929898564247]
- ]
- },
- "length": 0.0639960445782171,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line4226",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6937,
- "bus2": 6938,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896978648710327, 45.78142491892547],
- [4.896735556262215, 45.78138610188036]
- ]
- },
- "length": 0.0193908217158391,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line4227",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6938,
- "bus2": 6939,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896735556262215, 45.78138610188036],
- [4.896573382744059, 45.78136021111021]
- ]
- },
- "length": 0.0129360196826803,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line4228",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6939,
- "bus2": 6940,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896573382744059, 45.78136021111021],
- [4.896554770232163, 45.78135724184979]
- ]
- },
- "length": 0.0014846015658598,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line4229",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6940,
- "bus2": 6941,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896554770232163, 45.78135724184979],
- [4.896554731259192, 45.78135723373672]
- ]
- },
- "length": 3.1621443333691564e-06,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line4230",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6941,
- "bus2": 6514,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896554731259192, 45.78135723373672],
- [4.896548496962727, 45.78135624166887]
- ]
- },
- "length": 0.0004972086628585,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3779",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6514,
- "bus2": 6515,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896548496962727, 45.78135624166887],
- [4.896523372448674, 45.78135239468216]
- ]
- },
- "length": 0.0020001175802214,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3780",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6515,
- "bus2": 6516,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896523372448674, 45.78135239468216],
- [4.896422978076482, 45.7813370223192]
- ]
- },
- "length": 0.0079922244672148,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3781",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6516,
- "bus2": 6517,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896422978076482, 45.7813370223192],
- [4.896160874188697, 45.78129687311034]
- ]
- },
- "length": 0.020866031041008,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line3661",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6397,
- "bus2": 6398,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.89872661987032, 45.77929898564247],
- [4.89872980270631, 45.77929026266951]
- ]
- },
- "length": 0.0010006321743201,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3662",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6398,
- "bus2": 5457,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.89872980270631, 45.77929026266951],
- [4.898745384410104, 45.77924751952415]
- ]
- },
- "length": 0.0049028870697555,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3782",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6517,
- "bus2": 6518,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.896160874188697, 45.78129687311034],
- [4.89615458975594, 45.78129590916776]
- ]
- },
- "length": 0.0005003331232622,
- "params_id": "A_AL_69",
- "ground": "ground"
- },
- {
- "id": "line2764",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5457,
- "bus2": 5458,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898745384410104, 45.77924751952415],
- [4.898751180018882, 45.77922998756756]
- ]
- },
- "length": 0.0020000735044251,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line2765",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5458,
- "bus2": 5459,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898751180018882, 45.77922998756756],
- [4.898838651369918, 45.77896529465339]
- ]
- },
- "length": 0.0301960795919156,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line2766",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5459,
- "bus2": 5460,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898838651369918, 45.77896529465339],
- [4.898840093936859, 45.77896091405773]
- ]
- },
- "length": 0.0004996484347619,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line3808",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5460,
- "bus2": 6544,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898840093936859, 45.77896091405773],
- [4.898845721166767, 45.77894335893312]
- ]
- },
- "length": 0.0019996761722972,
- "params_id": "A_CU_29",
- "ground": "ground"
- },
- {
- "id": "line3809",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6544,
- "bus2": 6545,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.898845721166767, 45.77894335893312],
- [4.899009716651245, 45.77843226148285]
- ]
- },
- "length": 0.0582211152736399,
- "params_id": "A_CU_29",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 7,
- "bus": 1456,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3205.1392855729655, 935.5539388097831]
- ]
- },
- {
- "id": 16,
- "bus": 1457,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3248.642875745216, 771.037274206333]
- ]
+ "id": 0,
+ "phase": "n"
},
{
- "id": 33,
- "bus": 1457,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3238.916676944561, 810.9240236644129],
- [0.0, 0.0]
- ]
- },
- {
- "id": 34,
- "bus": 3761,
- "phases": "abcn",
- "powers": [
- [3324.387447398753, 310.84901789016556],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 17,
- "bus": 5457,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3185.0996997347647, 1001.6580829280964],
- [0.0, 0.0]
- ]
- },
- {
- "id": 11,
- "bus": 5460,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3242.4975703584037, 796.4851025383498]
- ]
- },
- {
- "id": 6,
- "bus": 6247,
- "phases": "abcn",
- "powers": [
- [3256.310702263922, 737.9834840070072],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 9,
- "bus": 6248,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3270.3190766692837, 673.1954761572916],
- [0.0, 0.0]
- ]
- },
- {
- "id": 21,
- "bus": 6248,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3336.4217038658653, 128.3324834890737],
- [0.0, 0.0]
- ]
- },
- {
- "id": 2,
- "bus": 6393,
- "phases": "abcn",
- "powers": [
- [3209.2082371187335, 921.4995947665673],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 12,
- "bus": 6393,
- "phases": "abcn",
- "powers": [
- [3207.889880840739, 926.0785737426751],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 18,
- "bus": 6394,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3275.2028808808086, 649.0185678512825]
- ]
- },
- {
- "id": 15,
- "bus": 6398,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3216.1047336667857, 897.13396682534]
- ]
- },
- {
- "id": 25,
- "bus": 6398,
- "phases": "abcn",
- "powers": [
- [3283.826466611387, 603.8731237008743],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 14,
- "bus": 6420,
- "phases": "abcn",
- "powers": [
- [3231.8740576864616, 838.5517799151843],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 23,
- "bus": 6420,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3247.63877547873, 775.255697400988],
- [0.0, 0.0]
- ]
- },
- {
- "id": 29,
- "bus": 6420,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3337.139870481276, 108.05784187133824],
- [0.0, 0.0]
- ]
- },
- {
- "id": 5,
- "bus": 6423,
- "phases": "abcn",
- "powers": [
- [3176.918924689522, 1027.3096701069494],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 35,
- "bus": 6517,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3224.478168433301, 866.5561456955354]
- ]
- },
- {
- "id": 27,
- "bus": 6544,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3200.5150909908484, 951.2529446396039]
- ]
- },
- {
- "id": 1,
- "bus": 6647,
- "phases": "abcn",
- "powers": [
- [3176.1198510802283, 1029.7775021429563],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 30,
- "bus": 6647,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3264.9241100023783, 698.8916713417448]
- ]
- },
- {
- "id": 8,
- "bus": 6648,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3262.919397178481, 708.1920783672274]
- ]
- },
- {
- "id": 36,
- "bus": 6648,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3237.9929923715163, 814.6044400189779],
- [0.0, 0.0]
- ]
- },
- {
- "id": 31,
- "bus": 6935,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3312.653890009465, 417.73582244145035],
- [0.0, 0.0]
- ]
- },
- {
- "id": 26,
- "bus": 6936,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3280.1303518147784, 623.6376251070296]
- ]
- },
- {
- "id": 20,
- "bus": 6937,
- "phases": "abcn",
- "powers": [
- [3179.5945707158476, 1018.9982228738099],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 28,
- "bus": 6938,
- "phases": "abcn",
- "powers": [
- [3199.223582986366, 955.5875043184461],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 3,
- "bus": 6939,
- "phases": "abcn",
- "powers": [
- [3284.9156644281024, 597.9198022649499],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 13,
- "bus": 6940,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3189.0078822745636, 989.1449535514915],
- [0.0, 0.0]
- ]
- },
- {
- "id": 32,
- "bus": 6941,
- "phases": "abcn",
- "powers": [
- [3210.1827475695627, 918.098981348096],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 10,
- "bus": 12392,
- "phases": "abcn",
- "powers": [
- [3298.623118790275, 516.9763365261491],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 24,
- "bus": 13416,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3199.0986423307795, 956.0056950578493],
- [0.0, 0.0]
- ]
- },
- {
- "id": 22,
- "bus": 13417,
- "phases": "abcn",
- "powers": [
- [3316.599078811088, 385.16173586575326],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 19,
- "bus": 13418,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [3268.3301775831424, 682.7861031428672],
- [0.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 13420,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [3186.4583995584103, 997.3273686354607]
- ]
- }
- ],
- "sources": [
- {
- "id": 0,
- "bus": 0,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_69",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.4347826086956521,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.4347826086956521,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.4347826086956521,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4347826086956521
- ]
- ],
- [
- [
- 0.5249999999999999,
- 0.17499999999999993,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.5249999999999999,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.17499999999999993,
- 0.5249999999999999,
- 0.1749999999999999
- ],
- [
- 0.1749999999999999,
- 0.1749999999999999,
- 0.1749999999999999,
- 0.5249999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_29",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.6206896551724139,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.6206896551724139,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.6206896551724139,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.6206896551724139
- ]
- ],
- [
- [
- 0.5249999999999999,
- 0.17499999999999993,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.5249999999999999,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.17499999999999993,
- 0.5249999999999999,
- 0.1749999999999999
- ],
- [
- 0.1749999999999999,
- 0.1749999999999999,
- 0.1749999999999999,
- 0.5249999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 1.30899693899575e-06,
- -2.6179938779914994e-07,
- -2.6179938779914994e-07,
- -2.6179938779915e-07
- ],
- [
- -2.6179938779914994e-07,
- 1.30899693899575e-06,
- -2.6179938779914994e-07,
- -2.6179938779915e-07
- ],
- [
- -2.6179938779914994e-07,
- -2.6179938779914994e-07,
- 1.30899693899575e-06,
- -2.6179938779915e-07
- ],
- [
- -2.6179938779915e-07,
- -2.6179938779915e-07,
- -2.6179938779915e-07,
- 1.3089969389957497e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_48",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.375,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.375,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.375,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.375
- ]
- ],
- [
- [
- 0.5249999999999999,
- 0.17499999999999993,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.5249999999999999,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.17499999999999993,
- 0.5249999999999999,
- 0.1749999999999999
- ],
- [
- 0.1749999999999999,
- 0.1749999999999999,
- 0.1749999999999999,
- 0.5249999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.2
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 7.84141526336012e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- 7.84141526336012e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- 7.84141526336012e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- 7.84141526336012e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_35",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.8571428571428571
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.719928802753306e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- 4.719928802753306e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- 4.719928802753306e-05,
- -1.1799822006883264e-05
- ],
- [
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- -1.1799822006883264e-05,
- 4.719928802753306e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.31578947368421
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05
- ]
- ]
- ]
- },
- {
- "id": "S_CU_50",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.3619999999999999,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3619999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3619999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.3619999999999999
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 5.1270792106585444e-05,
- -1.2817698026646363e-05,
- -1.2817698026646363e-05,
- -1.281769802664636e-05
- ],
- [
- -1.2817698026646363e-05,
- 5.1270792106585444e-05,
- -1.2817698026646363e-05,
- -1.281769802664636e-05
- ],
- [
- -1.2817698026646363e-05,
- -1.2817698026646363e-05,
- 5.1270792106585444e-05,
- -1.281769802664636e-05
- ],
- [
- -1.281769802664636e-05,
- -1.281769802664636e-05,
- -1.281769802664636e-05,
- 5.127079210658544e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_70",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.42857142857142855,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.42857142857142855,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.42857142857142855,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4285714285714285
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.319468914507713e-05
- ],
- [
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- 5.277875658030852e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 497,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 0,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897907144011231, 45.78097150797902]
+ }
+ },
+ {
+ "id": 497,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897907144011231, 45.78097150797902]
+ }
+ },
+ {
+ "id": 1296,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898045001922835, 45.78100346927449]
+ }
+ },
+ {
+ "id": 1456,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898293229168931, 45.78036680840785]
+ }
+ },
+ {
+ "id": 1457,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898455400549711, 45.77992654058046]
+ }
+ },
+ {
+ "id": 3085,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897884461560674, 45.78087120949469]
+ }
+ },
+ {
+ "id": 3761,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897884079699322, 45.78102874289239]
+ }
+ },
+ {
+ "id": 4349,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897923183116726, 45.78087392693653]
+ }
+ },
+ {
+ "id": 4761,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898123075608456, 45.78093957878617]
+ }
+ },
+ {
+ "id": 5457,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898745384410104, 45.77924751952415]
+ }
+ },
+ {
+ "id": 5458,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898751180018882, 45.77922998756756]
+ }
+ },
+ {
+ "id": 5459,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898838651369918, 45.77896529465339]
+ }
+ },
+ {
+ "id": 5460,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898840093936859, 45.77896091405773]
+ }
+ },
+ {
+ "id": 6245,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897845942283554, 45.78156339635255]
+ }
+ },
+ {
+ "id": 6246,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897839718270447, 45.78158085701398]
+ }
+ },
+ {
+ "id": 6247,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897762678044369, 45.78179679355772]
+ }
+ },
+ {
+ "id": 6248,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897752048709893, 45.78182656959385]
+ }
+ },
+ {
+ "id": 6249,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897730290703834, 45.78188755527319]
+ }
+ },
+ {
+ "id": 6250,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897728731469642, 45.78189192051037]
+ }
+ },
+ {
+ "id": 6393,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898412763983085, 45.78014354708657]
+ }
+ },
+ {
+ "id": 6394,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898419571399055, 45.78012619009918]
+ }
+ },
+ {
+ "id": 6395,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898473980842879, 45.77998737132648]
+ }
+ },
+ {
+ "id": 6396,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898523221204275, 45.77985689773639]
+ }
+ },
+ {
+ "id": 6397,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.89872661987032, 45.77929898564247]
+ }
+ },
+ {
+ "id": 6398,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.89872980270631, 45.77929026266951]
+ }
+ },
+ {
+ "id": 6419,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898129416377485, 45.78092214244819]
+ }
+ },
+ {
+ "id": 6420,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898316620839051, 45.78040775333067]
+ }
+ },
+ {
+ "id": 6421,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898317817752009, 45.78040444951417]
+ }
+ },
+ {
+ "id": 6422,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898351519836142, 45.78031184833309]
+ }
+ },
+ {
+ "id": 6423,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898352250162446, 45.78030985136289]
+ }
+ },
+ {
+ "id": 6424,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898389179357653, 45.78020837317398]
+ }
+ },
+ {
+ "id": 6425,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898389602073382, 45.78020722935336]
+ }
+ },
+ {
+ "id": 6501,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897940702380139, 45.78127769072983]
+ }
+ },
+ {
+ "id": 6502,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897939246829146, 45.78128207160847]
+ }
+ },
+ {
+ "id": 6503,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897934893026222, 45.78129521395135]
+ }
+ },
+ {
+ "id": 6514,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896548496962727, 45.78135624166887]
+ }
+ },
+ {
+ "id": 6515,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896523372448674, 45.78135239468216]
+ }
+ },
+ {
+ "id": 6516,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896422978076482, 45.7813370223192]
+ }
+ },
+ {
+ "id": 6517,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896160874188697, 45.78129687311034]
+ }
+ },
+ {
+ "id": 6518,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.89615458975594, 45.78129590916776]
+ }
+ },
+ {
+ "id": 6544,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898845721166767, 45.77894335893312]
+ }
+ },
+ {
+ "id": 6545,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.899009716651245, 45.77843226148285]
+ }
+ },
+ {
+ "id": 6647,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898038388725708, 45.78102085781223]
+ }
+ },
+ {
+ "id": 6648,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897968943267765, 45.78120343308894]
+ }
+ },
+ {
+ "id": 6934,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897820874721898, 45.7815593953291]
+ }
+ },
+ {
+ "id": 6935,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897462306821973, 45.78150214100457]
+ }
+ },
+ {
+ "id": 6936,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897124322832424, 45.78144817883301]
+ }
+ },
+ {
+ "id": 6937,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896978648710327, 45.78142491892547]
+ }
+ },
+ {
+ "id": 6938,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896735556262215, 45.78138610188036]
+ }
+ },
+ {
+ "id": 6939,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896573382744059, 45.78136021111021]
+ }
+ },
+ {
+ "id": 6940,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896554770232163, 45.78135724184979]
+ }
+ },
+ {
+ "id": 6941,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.896554731259192, 45.78135723373672]
+ }
+ },
+ {
+ "id": 12391,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.89784423814649, 45.78096220397186]
+ }
+ },
+ {
+ "id": 12392,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897833304903626, 45.7809605900276]
+ }
+ },
+ {
+ "id": 13415,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898104125351007, 45.78109479929395]
+ }
+ },
+ {
+ "id": 13416,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898234177501279, 45.7811182610444]
+ }
+ },
+ {
+ "id": 13417,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.89823744259486, 45.78111820457093]
+ }
+ },
+ {
+ "id": 13418,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898490322487639, 45.78111415539615]
+ }
+ },
+ {
+ "id": 13419,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898491273910041, 45.78111414269355]
+ }
+ },
+ {
+ "id": 13420,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898735000638527, 45.78111023876026]
+ }
+ },
+ {
+ "id": 13421,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898735514694392, 45.78111022703252]
+ }
+ },
+ {
+ "id": 13422,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.898741428012528, 45.78111012812965]
+ }
+ },
+ {
+ "id": 24401,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897951242695125, 45.78093941133832]
+ }
+ },
+ {
+ "id": 24402,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.897964349302775, 45.78087388818584]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 0,
+ "bus2": 497,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line351",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 1296,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.89792101189142, 45.78098088621309],
+ [4.897948323438979, 45.78099937330788],
+ [4.898045001922835, 45.78100346927449]
+ ]
+ },
+ "length": 0.0104875299910643,
+ "params_id": "S_CU_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line1322",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 3085,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897896621177853, 45.78096019916252],
+ [4.897875994437282, 45.78093801304183],
+ [4.897884461560674, 45.78087120949469]
+ ]
+ },
+ "length": 0.0103959141501447,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line1711",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 3761,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897901908374765, 45.78098449940555],
+ [4.897884079699322, 45.78102874289239]
+ ]
+ },
+ "length": 0.0051092589127879,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2064",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 4349,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897909349810417, 45.78095809957753],
+ [4.897923183116726, 45.78087392693653]
+ ]
+ },
+ "length": 0.0094171895161053,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2218",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 1456,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897924785315404, 45.78096605584098],
+ [4.897985775457337, 45.78094721107689],
+ [4.898047545759933, 45.78094760250347],
+ [4.898080247290673, 45.78093155423457],
+ [4.898293229168931, 45.78036680840785]
+ ]
+ },
+ "length": 0.0780136650514689,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 4761,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897926413632788, 45.78097201364331],
+ [4.898072018461941, 45.78097584883799],
+ [4.898123075608456, 45.78093957878617]
+ ]
+ },
+ "length": 0.0169898615012794,
+ "params_id": "S_CU_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line8959",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 12391,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.897888269637416, 45.78096871593997],
+ [4.89784423814649, 45.78096220397186]
+ ]
+ },
+ "length": 0.0034999156528606,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line19668",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 497,
+ "bus2": 24401,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897907144011231, 45.78097150797902],
+ [4.89792094664669, 45.78096208375364],
+ [4.897950783612569, 45.78094170816726],
+ [4.897951242695125, 45.78093941133832]
+ ]
+ },
+ "length": 0.0035001358562825,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line8960",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 12391,
+ "bus2": 12392,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.89784423814649, 45.78096220397186],
+ [4.897833304903626, 45.7809605900276]
+ ]
+ },
+ "length": 0.0008689777586691,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line19669",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 24401,
+ "bus2": 24402,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897951242695125, 45.78093941133832],
+ [4.897964349302775, 45.78087388818584]
+ ]
+ },
+ "length": 0.0073536872026613,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line9849",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1296,
+ "bus2": 13415,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898045001922835, 45.78100346927449],
+ [4.898129493238593, 45.78102543189395],
+ [4.898104125351007, 45.78109479929395]
+ ]
+ },
+ "length": 0.0149679163862218,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line3913",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1296,
+ "bus2": 6647,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898045001922835, 45.78100346927449],
+ [4.898038388725708, 45.78102085781223]
+ ]
+ },
+ "length": 0.0019999427589565,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3914",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6647,
+ "bus2": 6648,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898038388725708, 45.78102085781223],
+ [4.897968943267765, 45.78120343308894]
+ ]
+ },
+ "length": 0.0209990652574889,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3683",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4761,
+ "bus2": 6419,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898123075608456, 45.78093957878617],
+ [4.898129416377485, 45.78092214244819]
+ ]
+ },
+ "length": 0.0019997481783991,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3684",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6419,
+ "bus2": 6420,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898129416377485, 45.78092214244819],
+ [4.898316620839051, 45.78040775333067]
+ ]
+ },
+ "length": 0.0589973443359054,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line9850",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13415,
+ "bus2": 13416,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898104125351007, 45.78109479929395],
+ [4.898099778060301, 45.78110669930064],
+ [4.898159319916434, 45.78111945542906],
+ [4.898234177501279, 45.7811182610444]
+ ]
+ },
+ "length": 0.0120308859106781,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line3915",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6648,
+ "bus2": 6501,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897968943267765, 45.78120343308894],
+ [4.897940702380139, 45.78127769072983]
+ ]
+ },
+ "length": 0.0085407263877016,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line9851",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13416,
+ "bus2": 13417,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898234177501279, 45.7811182610444],
+ [4.89823744259486, 45.78111820457093]
+ ]
+ },
+ "length": 0.0002539979415765,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line9852",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13417,
+ "bus2": 13418,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.89823744259486, 45.78111820457093],
+ [4.898490322487639, 45.78111415539615]
+ ]
+ },
+ "length": 0.0196711577494569,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line3766",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6501,
+ "bus2": 6502,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897940702380139, 45.78127769072983],
+ [4.897939246829146, 45.78128207160847]
+ ]
+ },
+ "length": 0.0004999059062665,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3767",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6502,
+ "bus2": 6503,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897939246829146, 45.78128207160847],
+ [4.897934893026222, 45.78129521395135]
+ ]
+ },
+ "length": 0.0014994600157975,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3768",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6503,
+ "bus2": 6245,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897934893026222, 45.78129521395135],
+ [4.897845942283554, 45.78156339635255]
+ ]
+ },
+ "length": 0.0305998318156685,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line9853",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13418,
+ "bus2": 13419,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898490322487639, 45.78111415539615],
+ [4.898491273910041, 45.78111414269355]
+ ]
+ },
+ "length": 7.400385918361567e-5,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line9854",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13419,
+ "bus2": 13420,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898491273910041, 45.78111414269355],
+ [4.898735000638527, 45.78111023876026]
+ ]
+ },
+ "length": 0.0189591511709239,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line4222",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6245,
+ "bus2": 6934,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897845942283554, 45.78156339635255],
+ [4.897820874721898, 45.7815593953291]
+ ]
+ },
+ "length": 0.0019995220010623,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3510",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6245,
+ "bus2": 6246,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897845942283554, 45.78156339635255],
+ [4.897839718270447, 45.78158085701398]
+ ]
+ },
+ "length": 0.0020001504559546,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line9855",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13420,
+ "bus2": 13421,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898735000638527, 45.78111023876026],
+ [4.898735514694392, 45.78111022703252]
+ ]
+ },
+ "length": 3.999843822761669e-5,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line9856",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13421,
+ "bus2": 13422,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898735514694392, 45.78111022703252],
+ [4.898741428012528, 45.78111012812965]
+ ]
+ },
+ "length": 0.0004599993990123,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line4223",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6934,
+ "bus2": 6935,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897820874721898, 45.7815593953291],
+ [4.897462306821973, 45.78150214100457]
+ ]
+ },
+ "length": 0.0286018767552987,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3511",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6246,
+ "bus2": 6247,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897839718270447, 45.78158085701398],
+ [4.897762678044369, 45.78179679355772]
+ ]
+ },
+ "length": 0.0247371943252829,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3685",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6420,
+ "bus2": 6421,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898316620839051, 45.78040775333067],
+ [4.898317817752009, 45.78040444951417]
+ ]
+ },
+ "length": 0.0003788233934084,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line434",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1456,
+ "bus2": 1457,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898293229168931, 45.78036680840785],
+ [4.89836360781197, 45.78016537166377],
+ [4.898455400549711, 45.77992654058046]
+ ]
+ },
+ "length": 0.0505368896290942,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line3686",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6421,
+ "bus2": 6422,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898317817752009, 45.78040444951417],
+ [4.898351519836142, 45.78031184833309]
+ ]
+ },
+ "length": 0.0106208262167897,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3687",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6422,
+ "bus2": 6423,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898351519836142, 45.78031184833309],
+ [4.898352250162446, 45.78030985136289]
+ ]
+ },
+ "length": 0.0002291090083889,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3688",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6423,
+ "bus2": 6424,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898352250162446, 45.78030985136289],
+ [4.898389179357653, 45.78020837317398]
+ ]
+ },
+ "length": 0.011638899013559,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3689",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6424,
+ "bus2": 6425,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898389179357653, 45.78020837317398],
+ [4.898389602073382, 45.78020722935336]
+ ]
+ },
+ "length": 0.0001313138799848,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3690",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6425,
+ "bus2": 6393,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898389602073382, 45.78020722935336],
+ [4.898412763983085, 45.78014354708657]
+ ]
+ },
+ "length": 0.0073037021794629,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3512",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6247,
+ "bus2": 6248,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897762678044369, 45.78179679355772],
+ [4.897752048709893, 45.78182656959385]
+ ]
+ },
+ "length": 0.0034111881398446,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3513",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6248,
+ "bus2": 6249,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897752048709893, 45.78182656959385],
+ [4.897730290703834, 45.78188755527319]
+ ]
+ },
+ "length": 0.0069863781045524,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line4224",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6935,
+ "bus2": 6936,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897462306821973, 45.78150214100457],
+ [4.897124322832424, 45.78144817883301]
+ ]
+ },
+ "length": 0.0269598519903243,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3657",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6393,
+ "bus2": 6394,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898412763983085, 45.78014354708657],
+ [4.898419571399055, 45.78012619009918]
+ ]
+ },
+ "length": 0.0020005000078093,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3658",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6394,
+ "bus2": 6395,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898419571399055, 45.78012619009918],
+ [4.898473980842879, 45.77998737132648]
+ ]
+ },
+ "length": 0.0159989956128032,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3514",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6249,
+ "bus2": 6250,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897730290703834, 45.78188755527319],
+ [4.897728731469642, 45.78189192051037]
+ ]
+ },
+ "length": 0.000500106080843,
+ "params_id": "A_CU_48",
+ "ground": "ground"
+ },
+ {
+ "id": "line3659",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6395,
+ "bus2": 6396,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898473980842879, 45.77998737132648],
+ [4.898497851137242, 45.77992647231902],
+ [4.898523221204275, 45.77985689773639]
+ ]
+ },
+ "length": 0.0149994353566979,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line4225",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6936,
+ "bus2": 6937,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.897124322832424, 45.78144817883301],
+ [4.896978648710327, 45.78142491892547]
+ ]
+ },
+ "length": 0.0116199876850006,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3660",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6396,
+ "bus2": 6397,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898523221204275, 45.77985689773639],
+ [4.89872661987032, 45.77929898564247]
+ ]
+ },
+ "length": 0.0639960445782171,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line4226",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6937,
+ "bus2": 6938,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896978648710327, 45.78142491892547],
+ [4.896735556262215, 45.78138610188036]
+ ]
+ },
+ "length": 0.0193908217158391,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line4227",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6938,
+ "bus2": 6939,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896735556262215, 45.78138610188036],
+ [4.896573382744059, 45.78136021111021]
+ ]
+ },
+ "length": 0.0129360196826803,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line4228",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6939,
+ "bus2": 6940,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896573382744059, 45.78136021111021],
+ [4.896554770232163, 45.78135724184979]
+ ]
+ },
+ "length": 0.0014846015658598,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line4229",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6940,
+ "bus2": 6941,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896554770232163, 45.78135724184979],
+ [4.896554731259192, 45.78135723373672]
+ ]
+ },
+ "length": 3.1621443333691564e-6,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line4230",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6941,
+ "bus2": 6514,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896554731259192, 45.78135723373672],
+ [4.896548496962727, 45.78135624166887]
+ ]
+ },
+ "length": 0.0004972086628585,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3779",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6514,
+ "bus2": 6515,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896548496962727, 45.78135624166887],
+ [4.896523372448674, 45.78135239468216]
+ ]
+ },
+ "length": 0.0020001175802214,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3780",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6515,
+ "bus2": 6516,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896523372448674, 45.78135239468216],
+ [4.896422978076482, 45.7813370223192]
+ ]
+ },
+ "length": 0.0079922244672148,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3781",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6516,
+ "bus2": 6517,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896422978076482, 45.7813370223192],
+ [4.896160874188697, 45.78129687311034]
+ ]
+ },
+ "length": 0.020866031041008,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line3661",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6397,
+ "bus2": 6398,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.89872661987032, 45.77929898564247],
+ [4.89872980270631, 45.77929026266951]
+ ]
+ },
+ "length": 0.0010006321743201,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3662",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6398,
+ "bus2": 5457,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.89872980270631, 45.77929026266951],
+ [4.898745384410104, 45.77924751952415]
+ ]
+ },
+ "length": 0.0049028870697555,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3782",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6517,
+ "bus2": 6518,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.896160874188697, 45.78129687311034],
+ [4.89615458975594, 45.78129590916776]
+ ]
+ },
+ "length": 0.0005003331232622,
+ "params_id": "A_AL_69",
+ "ground": "ground"
+ },
+ {
+ "id": "line2764",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5457,
+ "bus2": 5458,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898745384410104, 45.77924751952415],
+ [4.898751180018882, 45.77922998756756]
+ ]
+ },
+ "length": 0.0020000735044251,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line2765",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5458,
+ "bus2": 5459,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898751180018882, 45.77922998756756],
+ [4.898838651369918, 45.77896529465339]
+ ]
+ },
+ "length": 0.0301960795919156,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line2766",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5459,
+ "bus2": 5460,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898838651369918, 45.77896529465339],
+ [4.898840093936859, 45.77896091405773]
+ ]
+ },
+ "length": 0.0004996484347619,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line3808",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5460,
+ "bus2": 6544,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898840093936859, 45.77896091405773],
+ [4.898845721166767, 45.77894335893312]
+ ]
+ },
+ "length": 0.0019996761722972,
+ "params_id": "A_CU_29",
+ "ground": "ground"
+ },
+ {
+ "id": "line3809",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6544,
+ "bus2": 6545,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.898845721166767, 45.77894335893312],
+ [4.899009716651245, 45.77843226148285]
+ ]
+ },
+ "length": 0.0582211152736399,
+ "params_id": "A_CU_29",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 7,
+ "bus": 1456,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3205.1392855729655, 935.5539388097831]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 1457,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3248.642875745216, 771.037274206333]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 1457,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3238.916676944561, 810.9240236644129],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 3761,
+ "phases": "abcn",
+ "powers": [
+ [3324.387447398753, 310.84901789016556],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 5457,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3185.0996997347647, 1001.6580829280964],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 5460,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3242.4975703584037, 796.4851025383498]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 6247,
+ "phases": "abcn",
+ "powers": [
+ [3256.310702263922, 737.9834840070072],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 6248,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3270.3190766692837, 673.1954761572916],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 6248,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3336.4217038658653, 128.3324834890737],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 6393,
+ "phases": "abcn",
+ "powers": [
+ [3209.2082371187335, 921.4995947665673],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 6393,
+ "phases": "abcn",
+ "powers": [
+ [3207.889880840739, 926.0785737426751],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 6394,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3275.2028808808086, 649.0185678512825]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 6398,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3216.1047336667857, 897.13396682534]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 6398,
+ "phases": "abcn",
+ "powers": [
+ [3283.826466611387, 603.8731237008743],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 6420,
+ "phases": "abcn",
+ "powers": [
+ [3231.8740576864616, 838.5517799151843],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 6420,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3247.63877547873, 775.255697400988],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 6420,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3337.139870481276, 108.05784187133824],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6423,
+ "phases": "abcn",
+ "powers": [
+ [3176.918924689522, 1027.3096701069494],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 6517,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3224.478168433301, 866.5561456955354]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 6544,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3200.5150909908484, 951.2529446396039]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 6647,
+ "phases": "abcn",
+ "powers": [
+ [3176.1198510802283, 1029.7775021429563],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 6647,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3264.9241100023783, 698.8916713417448]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 6648,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3262.919397178481, 708.1920783672274]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 6648,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3237.9929923715163, 814.6044400189779],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 6935,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3312.653890009465, 417.73582244145035],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 6936,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3280.1303518147784, 623.6376251070296]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 6937,
+ "phases": "abcn",
+ "powers": [
+ [3179.5945707158476, 1018.9982228738099],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 6938,
+ "phases": "abcn",
+ "powers": [
+ [3199.223582986366, 955.5875043184461],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 6939,
+ "phases": "abcn",
+ "powers": [
+ [3284.9156644281024, 597.9198022649499],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 6940,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3189.0078822745636, 989.1449535514915],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 6941,
+ "phases": "abcn",
+ "powers": [
+ [3210.1827475695627, 918.098981348096],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 12392,
+ "phases": "abcn",
+ "powers": [
+ [3298.623118790275, 516.9763365261491],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 13416,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3199.0986423307795, 956.0056950578493],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 13417,
+ "phases": "abcn",
+ "powers": [
+ [3316.599078811088, 385.16173586575326],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 13418,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [3268.3301775831424, 682.7861031428672],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 13420,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [3186.4583995584103, 997.3273686354607]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 0,
+ "bus": 0,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_69",
+ "z_line": [
+ [
+ [0.4347826086956521, 0.0, 0.0, 0.0],
+ [0.0, 0.4347826086956521, 0.0, 0.0],
+ [0.0, 0.0, 0.4347826086956521, 0.0],
+ [0.0, 0.0, 0.0, 0.4347826086956521]
+ ],
+ [
+ [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999],
+ [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_29",
+ "z_line": [
+ [
+ [0.6206896551724139, 0.0, 0.0, 0.0],
+ [0.0, 0.6206896551724139, 0.0, 0.0],
+ [0.0, 0.0, 0.6206896551724139, 0.0],
+ [0.0, 0.0, 0.0, 0.6206896551724139]
+ ],
+ [
+ [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999],
+ [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [1.30899693899575e-6, -2.6179938779914994e-7, -2.6179938779914994e-7, -2.6179938779915e-7],
+ [-2.6179938779914994e-7, 1.30899693899575e-6, -2.6179938779914994e-7, -2.6179938779915e-7],
+ [-2.6179938779914994e-7, -2.6179938779914994e-7, 1.30899693899575e-6, -2.6179938779915e-7],
+ [-2.6179938779915e-7, -2.6179938779915e-7, -2.6179938779915e-7, 1.3089969389957497e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_48",
+ "z_line": [
+ [
+ [0.375, 0.0, 0.0, 0.0],
+ [0.0, 0.375, 0.0, 0.0],
+ [0.0, 0.0, 0.375, 0.0],
+ [0.0, 0.0, 0.0, 0.375]
+ ],
+ [
+ [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999],
+ [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.0, 0.2]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_35",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.8571428571428571]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5],
+ [-1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.31578947368421]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_CU_50",
+ "z_line": [
+ [
+ [0.3619999999999999, 0.0, 0.0, 0.0],
+ [0.0, 0.3619999999999999, 0.0, 0.0],
+ [0.0, 0.0, 0.3619999999999999, 0.0],
+ [0.0, 0.0, 0.0, 0.3619999999999999]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [5.1270792106585444e-5, -1.2817698026646363e-5, -1.2817698026646363e-5, -1.281769802664636e-5],
+ [-1.2817698026646363e-5, 5.1270792106585444e-5, -1.2817698026646363e-5, -1.281769802664636e-5],
+ [-1.2817698026646363e-5, -1.2817698026646363e-5, 5.1270792106585444e-5, -1.281769802664636e-5],
+ [-1.281769802664636e-5, -1.281769802664636e-5, -1.281769802664636e-5, 5.127079210658544e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_70",
+ "z_line": [
+ [
+ [0.42857142857142855, 0.0, 0.0, 0.0],
+ [0.0, 0.42857142857142855, 0.0, 0.0],
+ [0.0, 0.0, 0.42857142857142855, 0.0],
+ [0.0, 0.0, 0.0, 0.4285714285714285]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5],
+ [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json b/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json
index eda93553..f6a07c75 100644
--- a/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json
+++ b/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json
@@ -1,18644 +1,17962 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 505000,
- "phase": "n"
- },
- {
- "id": 9,
- "phase": "n"
- },
- {
- "id": 31,
- "phase": "n"
- },
- {
- "id": 116,
- "phase": "n"
- },
- {
- "id": 106,
- "phase": "n"
- },
- {
- "id": 54,
- "phase": "n"
- },
- {
- "id": 13,
- "phase": "n"
- },
- {
- "id": 33,
- "phase": "n"
- },
- {
- "id": 17,
- "phase": "n"
- },
- {
- "id": 64,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95294809914324, 45.73754749124046]
- }
- },
- {
- "id": 2607,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.952945371546177, 45.73752959668326]
- }
- },
- {
- "id": 2608,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.952137678945869, 45.73757489683429]
- }
- },
- {
- "id": 2609,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.952013669787013, 45.73755036805922]
- }
- },
- {
- "id": 3997,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.952958860905261, 45.73762811051713]
- }
- },
- {
- "id": 3998,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95299984255245, 45.73763540056071]
- }
- },
- {
- "id": 31,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962468682717135, 45.7385727604298]
- }
- },
- {
- "id": 725,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96228365590198, 45.73894135774701]
- }
- },
- {
- "id": 928,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96348113017075, 45.73866878906255]
- }
- },
- {
- "id": 929,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963847991183937, 45.73859809048848]
- }
- },
- {
- "id": 2382,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963315264239038, 45.73827681599819]
- }
- },
- {
- "id": 2383,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963320276703058, 45.73827490736029]
- }
- },
- {
- "id": 2384,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963320908022739, 45.73827466754383]
- }
- },
- {
- "id": 2546,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963379363543611, 45.73866953268058]
- }
- },
- {
- "id": 2596,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962023378725025, 45.73799627314051]
- }
- },
- {
- "id": 2597,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962011674654462, 45.73798025401729]
- }
- },
- {
- "id": 2598,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961721983117246, 45.73756662819431]
- }
- },
- {
- "id": 2599,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961749094610482, 45.73755530911566]
- }
- },
- {
- "id": 2962,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96204604983626, 45.73798780336082]
- }
- },
- {
- "id": 2963,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962386088267413, 45.73786072075063]
- }
- },
- {
- "id": 2964,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962395965099435, 45.73785703304483]
- }
- },
- {
- "id": 3555,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962044899263728, 45.73745010990579]
- }
- },
- {
- "id": 3556,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962070618646461, 45.73745057041838]
- }
- },
- {
- "id": 3575,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962306221292184, 45.73889078983816]
- }
- },
- {
- "id": 3576,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962305021429685, 45.73889016079168]
- }
- },
- {
- "id": 3577,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962272135033172, 45.73886128786016]
- }
- },
- {
- "id": 4301,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962204444303315, 45.73868466650154]
- }
- },
- {
- "id": 4302,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962205665041238, 45.73870028274997]
- }
- },
- {
- "id": 5147,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962443400091122, 45.73858604424576]
- }
- },
- {
- "id": 5148,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962426037335454, 45.73863679651681]
- }
- },
- {
- "id": 5149,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962426101871827, 45.73866266565135]
- }
- },
- {
- "id": 5150,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962391466086718, 45.73869842928318]
- }
- },
- {
- "id": 5151,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962291199755762, 45.7386883168697]
- }
- },
- {
- "id": 5177,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962488351451723, 45.73858434439914]
- }
- },
- {
- "id": 5178,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962534067334214, 45.7384817455323]
- }
- },
- {
- "id": 5179,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962059173865351, 45.73804193810163]
- }
- },
- {
- "id": 116,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949490109697274, 45.74058056584027]
- }
- },
- {
- "id": 156,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950202564891636, 45.7416954746224]
- }
- },
- {
- "id": 157,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950195488412604, 45.74181716061058]
- }
- },
- {
- "id": 260,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949352369787704, 45.74090298593372]
- }
- },
- {
- "id": 261,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949359604960197, 45.74092865200017]
- }
- },
- {
- "id": 355,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949577399652404, 45.74084858066003]
- }
- },
- {
- "id": 458,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950181282916888, 45.74176168166396]
- }
- },
- {
- "id": 459,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95011990117204, 45.74174150721939]
- }
- },
- {
- "id": 671,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950162413477225, 45.74168920833736]
- }
- },
- {
- "id": 809,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948901699557921, 45.74238903979888]
- }
- },
- {
- "id": 1961,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949419516477821, 45.740886750247]
- }
- },
- {
- "id": 2042,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948747655385304, 45.74202231858337]
- }
- },
- {
- "id": 2043,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948754290464784, 45.74203724178536]
- }
- },
- {
- "id": 2139,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949406732822898, 45.74115551056487]
- }
- },
- {
- "id": 2140,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949420405824933, 45.74114510150768]
- }
- },
- {
- "id": 2192,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949444471734358, 45.74048336720885]
- }
- },
- {
- "id": 2193,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949356695302401, 45.74050535808706]
- }
- },
- {
- "id": 2205,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950206721460432, 45.74186500342928]
- }
- },
- {
- "id": 2206,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950214698930297, 45.74189897862477]
- }
- },
- {
- "id": 2207,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950243322914806, 45.74202091347151]
- }
- },
- {
- "id": 2208,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950171682347555, 45.74205055859117]
- }
- },
- {
- "id": 2531,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95014676376539, 45.74146121192071]
- }
- },
- {
- "id": 2909,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949103736628304, 45.74096308905356]
- }
- },
- {
- "id": 2910,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948824395771884, 45.74103062148168]
- }
- },
- {
- "id": 2911,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948666498708469, 45.74106879030815]
- }
- },
- {
- "id": 2912,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948362867574832, 45.7411421887841]
- }
- },
- {
- "id": 2913,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948333087920872, 45.74114938988678]
- }
- },
- {
- "id": 3627,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950284047815058, 45.74232480334145]
- }
- },
- {
- "id": 3628,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950291314624964, 45.74234083694983]
- }
- },
- {
- "id": 3629,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95040077529106, 45.74267759317598]
- }
- },
- {
- "id": 3630,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950450977745136, 45.74286052423763]
- }
- },
- {
- "id": 3631,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950449800250516, 45.74308527593394]
- }
- },
- {
- "id": 3632,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950443458289948, 45.743086008727]
- }
- },
- {
- "id": 3967,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950061390994315, 45.74126666860317]
- }
- },
- {
- "id": 3968,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950063509303619, 45.74127553983312]
- }
- },
- {
- "id": 3969,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950142006222518, 45.7416038445639]
- }
- },
- {
- "id": 4357,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949968838151226, 45.74069976250984]
- }
- },
- {
- "id": 4358,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950058223808567, 45.74093010166632]
- }
- },
- {
- "id": 4784,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95030933222711, 45.74201102286589]
- }
- },
- {
- "id": 4785,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950345628579671, 45.74199512699472]
- }
- },
- {
- "id": 4979,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950120320168629, 45.74174599824795]
- }
- },
- {
- "id": 4980,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950121576731756, 45.74175946234211]
- }
- },
- {
- "id": 4981,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949469231184263, 45.74181897439431]
- }
- },
- {
- "id": 4982,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949462402830679, 45.7418113560017]
- }
- },
- {
- "id": 4983,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949398247419865, 45.74185297848733]
- }
- },
- {
- "id": 4984,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949335012650569, 45.74186092264297]
- }
- },
- {
- "id": 4985,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948959201377501, 45.74190962828636]
- }
- },
- {
- "id": 4986,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948848153785544, 45.74193515786838]
- }
- },
- {
- "id": 4987,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948737285115905, 45.74195687551208]
- }
- },
- {
- "id": 4988,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.948687881229532, 45.74193417113748]
- }
- },
- {
- "id": 106,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956821263808188, 45.7395436998441]
- }
- },
- {
- "id": 290,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956768992915554, 45.73946458993685]
- }
- },
- {
- "id": 2401,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956728606339034, 45.73964182901081]
- }
- },
- {
- "id": 2402,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956729477860355, 45.73964447313664]
- }
- },
- {
- "id": 2403,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956763170616643, 45.73974703386555]
- }
- },
- {
- "id": 2404,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956763290472624, 45.73974739113116]
- }
- },
- {
- "id": 2405,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956788668742579, 45.73982463544426]
- }
- },
- {
- "id": 2406,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956789104077987, 45.73982594851545]
- }
- },
- {
- "id": 2407,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956794862323364, 45.73984347521288]
- }
- },
- {
- "id": 2408,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956823655746058, 45.73993115365443]
- }
- },
- {
- "id": 2409,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956824392437657, 45.73993339585589]
- }
- },
- {
- "id": 2410,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956869496855397, 45.73995486482325]
- }
- },
- {
- "id": 2411,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956873061652036, 45.73995656391332]
- }
- },
- {
- "id": 2717,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956740752516652, 45.73943765934415]
- }
- },
- {
- "id": 2718,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95674016308763, 45.73943607982265]
- }
- },
- {
- "id": 2719,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956754846985068, 45.73942155950624]
- }
- },
- {
- "id": 3034,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956709810858944, 45.73936857433193]
- }
- },
- {
- "id": 3035,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956708697918765, 45.73936490966044]
- }
- },
- {
- "id": 3036,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956719399624836, 45.73933803310992]
- }
- },
- {
- "id": 5249,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956793992755852, 45.73964107665473]
- }
- },
- {
- "id": 5250,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956795272180759, 45.73964094776769]
- }
- },
- {
- "id": 5251,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956810392422511, 45.73963937055225]
- }
- },
- {
- "id": 54,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956052315026593, 45.7355287394871]
- }
- },
- {
- "id": 220,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95615091490285, 45.73559635332465]
- }
- },
- {
- "id": 221,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956204677642744, 45.73560887080555]
- }
- },
- {
- "id": 504,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956033322551094, 45.73549107007767]
- }
- },
- {
- "id": 522,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956249667952791, 45.73536985465486]
- }
- },
- {
- "id": 851,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956701860310014, 45.73551415251796]
- }
- },
- {
- "id": 935,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956421946673418, 45.73544764843857]
- }
- },
- {
- "id": 3513,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956125443948416, 45.73586872377459]
- }
- },
- {
- "id": 3514,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956126641959938, 45.73587012706333]
- }
- },
- {
- "id": 3515,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956271120290809, 45.73596229744482]
- }
- },
- {
- "id": 13,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959246469022067, 45.7378307590273]
- }
- },
- {
- "id": 1017,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959200448814673, 45.73770131122335]
- }
- },
- {
- "id": 3073,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959101179036857, 45.73775440898316]
- }
- },
- {
- "id": 3074,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959096975421994, 45.73775575843332]
- }
- },
- {
- "id": 3075,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959083641643665, 45.73776001270964]
- }
- },
- {
- "id": 3076,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95908115996522, 45.73776080883098]
- }
- },
- {
- "id": 4580,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959088866017715, 45.7377317966323]
- }
- },
- {
- "id": 4581,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959086005541451, 45.73773273662928]
- }
- },
- {
- "id": 4582,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959071057271706, 45.7377376407394]
- }
- },
- {
- "id": 33,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960105183392078, 45.73904390876906]
- }
- },
- {
- "id": 338,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960199756304963, 45.73870863853983]
- }
- },
- {
- "id": 339,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960001290873768, 45.73884393616881]
- }
- },
- {
- "id": 421,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961968644340571, 45.73876996402976]
- }
- },
- {
- "id": 422,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962163012139682, 45.73868603185797]
- }
- },
- {
- "id": 452,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96095747863722, 45.73882774732266]
- }
- },
- {
- "id": 453,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961544572899767, 45.73879241358706]
- }
- },
- {
- "id": 613,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961479027499966, 45.73865802224827]
- }
- },
- {
- "id": 614,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961398418773967, 45.73855818930203]
- }
- },
- {
- "id": 848,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960760924727571, 45.7388394635442]
- }
- },
- {
- "id": 849,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96089024310949, 45.73883175894161]
- }
- },
- {
- "id": 872,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961665400590003, 45.73828009622697]
- }
- },
- {
- "id": 926,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960916340919087, 45.73874417513907]
- }
- },
- {
- "id": 979,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960818791783983, 45.73931617700526]
- }
- },
- {
- "id": 1470,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96093602356783, 45.73876144806627]
- }
- },
- {
- "id": 1757,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960475547969224, 45.73885647863783]
- }
- },
- {
- "id": 1829,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960804607699028, 45.73933118128229]
- }
- },
- {
- "id": 1830,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960248469013997, 45.73991911622788]
- }
- },
- {
- "id": 1865,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960736612800587, 45.73866337541409]
- }
- },
- {
- "id": 1866,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960616899657214, 45.73850504564253]
- }
- },
- {
- "id": 1867,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960621839886369, 45.73849218385909]
- }
- },
- {
- "id": 2035,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960834371764742, 45.73930186921763]
- }
- },
- {
- "id": 2036,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961738822421614, 45.73928025843389]
- }
- },
- {
- "id": 2915,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960757004187017, 45.73868580772434]
- }
- },
- {
- "id": 2916,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960783074661972, 45.73867016545922]
- }
- },
- {
- "id": 3049,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959799155586835, 45.73737046237839]
- }
- },
- {
- "id": 3050,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959726093502897, 45.7372753938573]
- }
- },
- {
- "id": 3051,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959283390068452, 45.73736170490385]
- }
- },
- {
- "id": 3052,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959279701686487, 45.73736820023878]
- }
- },
- {
- "id": 3565,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959932834842134, 45.73939269895975]
- }
- },
- {
- "id": 3566,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960120329088985, 45.73944599859148]
- }
- },
- {
- "id": 3567,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960208458261459, 45.73948437369319]
- }
- },
- {
- "id": 4159,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961172370845995, 45.73823961583732]
- }
- },
- {
- "id": 4160,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961232766999241, 45.73804208532634]
- }
- },
- {
- "id": 4161,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961235967630083, 45.73803992210173]
- }
- },
- {
- "id": 4162,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961237387326696, 45.73803896173435]
- }
- },
- {
- "id": 4574,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960740549922936, 45.73708555348455]
- }
- },
- {
- "id": 4575,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960650120456335, 45.73707758610233]
- }
- },
- {
- "id": 4576,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960523291499956, 45.73712123874899]
- }
- },
- {
- "id": 4577,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960235029230575, 45.73722045155628]
- }
- },
- {
- "id": 4578,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960165846935249, 45.73724425782031]
- }
- },
- {
- "id": 4854,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.9599160787222, 45.73940634098333]
- }
- },
- {
- "id": 4855,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959672536121384, 45.73929886508697]
- }
- },
- {
- "id": 5080,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961963947167957, 45.73872566894523]
- }
- },
- {
- "id": 5081,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961963881619567, 45.73872510337682]
- }
- },
- {
- "id": 5082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961962149366898, 45.73870873395592]
- }
- },
- {
- "id": 5083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961961425705299, 45.738701918659]
- }
- },
- {
- "id": 5216,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96008019839414, 45.73903972195923]
- }
- },
- {
- "id": 5353,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959682440255655, 45.73761823205071]
- }
- },
- {
- "id": 5354,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959654271490656, 45.73767803996336]
- }
- },
- {
- "id": 5355,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959638274812121, 45.73806334042222]
- }
- },
- {
- "id": 5356,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959885624432446, 45.73834760879387]
- }
- },
- {
- "id": 5357,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960126272587628, 45.73862419295075]
- }
- },
- {
- "id": 17,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96075889797756, 45.73708967927565]
- }
- },
- {
- "id": 295,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961045955673573, 45.73736741760803]
- }
- },
- {
- "id": 296,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961254260680495, 45.73766500030121]
- }
- },
- {
- "id": 531,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961984072040853, 45.73663344835436]
- }
- },
- {
- "id": 532,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96266036706634, 45.73644749479478]
- }
- },
- {
- "id": 1502,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961982656484691, 45.7366037761511]
- }
- },
- {
- "id": 1503,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96213440083194, 45.73684960686295]
- }
- },
- {
- "id": 1504,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962126926139021, 45.73685244620967]
- }
- },
- {
- "id": 1510,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96219385396506, 45.73657448591048]
- }
- },
- {
- "id": 1511,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962286628397499, 45.73654351020274]
- }
- },
- {
- "id": 1512,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962440113013225, 45.73649225556941]
- }
- },
- {
- "id": 1531,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960935668151952, 45.73720722054048]
- }
- },
- {
- "id": 1532,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960941248158703, 45.73721532652868]
- }
- },
- {
- "id": 1840,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961317252966468, 45.73726479178624]
- }
- },
- {
- "id": 1841,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961334514238821, 45.73725825799199]
- }
- },
- {
- "id": 1842,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961339855392209, 45.73725623373556]
- }
- },
- {
- "id": 1843,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961340171264948, 45.73725611832876]
- }
- },
- {
- "id": 2900,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962478496234752, 45.73659513708291]
- }
- },
- {
- "id": 2901,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962546991911733, 45.73678516075339]
- }
- },
- {
- "id": 2902,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962546801938095, 45.73678575930509]
- }
- },
- {
- "id": 2903,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962545568380995, 45.73678954184167]
- }
- },
- {
- "id": 4647,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960793268398773, 45.7376150105743]
- }
- },
- {
- "id": 4648,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960622693085613, 45.7376778244415]
- }
- },
- {
- "id": 4649,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960513124055958, 45.7377181749721]
- }
- },
- {
- "id": 4650,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960508980416538, 45.73771970310602]
- }
- },
- {
- "id": 4651,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96050743912461, 45.7377202702363]
- }
- },
- {
- "id": 5116,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960849440960156, 45.73704179794322]
- }
- },
- {
- "id": 5117,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96086667443794, 45.73703575995913]
- }
- },
- {
- "id": 5118,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961136695199635, 45.73694116682628]
- }
- },
- {
- "id": 5119,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961153928614241, 45.73693512879809]
- }
- },
- {
- "id": 5120,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961360232170545, 45.73682367990691]
- }
- },
- {
- "id": 5121,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961366461715031, 45.73681090495221]
- }
- },
- {
- "id": 5122,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961430098987583, 45.73678945101164]
- }
- },
- {
- "id": 5123,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961447470592804, 45.73678361674145]
- }
- },
- {
- "id": 5124,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961661760315602, 45.73671160557122]
- }
- },
- {
- "id": 5125,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961679131871559, 45.73670577126523]
- }
- },
- {
- "id": 5126,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961965980931708, 45.73660937818495]
- }
- },
- {
- "id": 5127,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.961968713751984, 45.73660845910157]
- }
- },
- {
- "id": 64,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965081449499382, 45.73850349730601]
- }
- },
- {
- "id": 146,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96395197494093, 45.7380834639623]
- }
- },
- {
- "id": 147,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964252163804259, 45.73847286744663]
- }
- },
- {
- "id": 198,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964264272577165, 45.73854392180715]
- }
- },
- {
- "id": 199,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963785020541142, 45.73792534316028]
- }
- },
- {
- "id": 306,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966923846400905, 45.73856641666062]
- }
- },
- {
- "id": 307,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966934739302341, 45.73848824321975]
- }
- },
- {
- "id": 330,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963677814127196, 45.73778302565311]
- }
- },
- {
- "id": 331,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963753918031129, 45.73771465018205]
- }
- },
- {
- "id": 345,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966427240851997, 45.7385284734373]
- }
- },
- {
- "id": 346,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966473521113746, 45.73852687587556]
- }
- },
- {
- "id": 398,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965466467843086, 45.73860035649596]
- }
- },
- {
- "id": 441,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964510719345298, 45.73801997295966]
- }
- },
- {
- "id": 455,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96495930499504, 45.73861077678116]
- }
- },
- {
- "id": 461,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964394554729672, 45.73869937201268]
- }
- },
- {
- "id": 511,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964320979401388, 45.73865002848635]
- }
- },
- {
- "id": 512,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963846545798926, 45.73866394418235]
- }
- },
- {
- "id": 570,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966135101225179, 45.73852254528428]
- }
- },
- {
- "id": 588,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965467951236606, 45.73867850089131]
- }
- },
- {
- "id": 621,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965922818643806, 45.73851659985056]
- }
- },
- {
- "id": 650,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965804784154678, 45.7385702243004]
- }
- },
- {
- "id": 651,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965905552164909, 45.73849504039023]
- }
- },
- {
- "id": 741,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966932457213522, 45.73858627049101]
- }
- },
- {
- "id": 750,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964070768491324, 45.73870671870665]
- }
- },
- {
- "id": 751,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964094282222768, 45.73878724583392]
- }
- },
- {
- "id": 762,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963640385938517, 45.73773252953077]
- }
- },
- {
- "id": 837,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964457257085702, 45.73890894695324]
- }
- },
- {
- "id": 873,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964289723841232, 45.73870082731759]
- }
- },
- {
- "id": 921,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963416931799182, 45.73872430139771]
- }
- },
- {
- "id": 922,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962814040532729, 45.73880948751754]
- }
- },
- {
- "id": 940,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966861332364058, 45.73858555198233]
- }
- },
- {
- "id": 1020,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963808763795043, 45.73871376144375]
- }
- },
- {
- "id": 1022,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962859281896754, 45.73880820381644]
- }
- },
- {
- "id": 1118,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963939739555462, 45.73806763749647]
- }
- },
- {
- "id": 1119,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963684793044012, 45.73773775517096]
- }
- },
- {
- "id": 1408,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963728252376153, 45.73771370270651]
- }
- },
- {
- "id": 1409,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963688180820572, 45.73769912193055]
- }
- },
- {
- "id": 1410,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963859714633435, 45.73767153122744]
- }
- },
- {
- "id": 1411,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963861142878668, 45.73767398223961]
- }
- },
- {
- "id": 1412,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963861157007316, 45.73767400891371]
- }
- },
- {
- "id": 1413,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963866392190475, 45.73768295999191]
- }
- },
- {
- "id": 1583,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96614781966638, 45.7385212931198]
- }
- },
- {
- "id": 1584,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966152771529289, 45.73852080803084]
- }
- },
- {
- "id": 1585,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966173960655363, 45.73851872728084]
- }
- },
- {
- "id": 1833,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96449895162743, 45.73800398257293]
- }
- },
- {
- "id": 1834,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964629859448765, 45.73758060440638]
- }
- },
- {
- "id": 1835,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963474814846975, 45.73751312892872]
- }
- },
- {
- "id": 1836,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963497048017847, 45.73750411099638]
- }
- },
- {
- "id": 1837,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963301207348012, 45.73723494661714]
- }
- },
- {
- "id": 1838,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963299402071233, 45.73723267545407]
- }
- },
- {
- "id": 1839,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963298088674567, 45.73723101389017]
- }
- },
- {
- "id": 1850,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964264235958905, 45.7385364243123]
- }
- },
- {
- "id": 1851,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964295208166546, 45.7384861542162]
- }
- },
- {
- "id": 1900,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965698522526376, 45.73857859169032]
- }
- },
- {
- "id": 1901,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965725056144439, 45.73857643983605]
- }
- },
- {
- "id": 2082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962825142287602, 45.73910487687795]
- }
- },
- {
- "id": 2083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962799247099212, 45.73910478969897]
- }
- },
- {
- "id": 2182,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964668772496811, 45.73761479951217]
- }
- },
- {
- "id": 2183,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964694464150002, 45.73761521506726]
- }
- },
- {
- "id": 2184,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964989303413325, 45.73802766903388]
- }
- },
- {
- "id": 2243,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965084930423785, 45.73848567357514]
- }
- },
- {
- "id": 2244,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964547700386225, 45.73801370604721]
- }
- },
- {
- "id": 2318,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965749812771702, 45.73787625327925]
- }
- },
- {
- "id": 2319,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965774230664155, 45.73786884000859]
- }
- },
- {
- "id": 2415,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962836266744469, 45.73883721449722]
- }
- },
- {
- "id": 2416,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962814051602552, 45.73883773433524]
- }
- },
- {
- "id": 2493,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963718891198381, 45.73871618029157]
- }
- },
- {
- "id": 2571,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967039911883393, 45.73853347790435]
- }
- },
- {
- "id": 2572,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967092347593016, 45.73853774890823]
- }
- },
- {
- "id": 2573,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967093600205398, 45.73854082511308]
- }
- },
- {
- "id": 2574,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967096686551868, 45.73854837715886]
- }
- },
- {
- "id": 2734,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964669006017743, 45.73759680879945]
- }
- },
- {
- "id": 2735,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964714550721385, 45.73720055297952]
- }
- },
- {
- "id": 2841,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964387501263031, 45.7388655631196]
- }
- },
- {
- "id": 2842,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964387947426963, 45.73886656085501]
- }
- },
- {
- "id": 2843,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964393383784293, 45.73887702847927]
- }
- },
- {
- "id": 2907,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965378471563087, 45.73767863466824]
- }
- },
- {
- "id": 2908,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965336428176132, 45.73765938380543]
- }
- },
- {
- "id": 3107,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964315333159959, 45.73863247249453]
- }
- },
- {
- "id": 3108,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964299275431529, 45.7385891005713]
- }
- },
- {
- "id": 3161,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962888818684407, 45.73897160313579]
- }
- },
- {
- "id": 3162,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962863535513303, 45.73897033144124]
- }
- },
- {
- "id": 3259,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962682042602933, 45.73733274648558]
- }
- },
- {
- "id": 3260,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96269358237546, 45.73734882339289]
- }
- },
- {
- "id": 3261,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962914757208745, 45.73765675998811]
- }
- },
- {
- "id": 3482,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96479321244731, 45.73862099457246]
- }
- },
- {
- "id": 3483,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964792917532347, 45.73862101048032]
- }
- },
- {
- "id": 3484,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96465439581094, 45.73862952922292]
- }
- },
- {
- "id": 3485,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964652127236736, 45.7386296723614]
- }
- },
- {
- "id": 3486,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96437914655397, 45.73864645216977]
- }
- },
- {
- "id": 3516,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963398996550705, 45.73873718842353]
- }
- },
- {
- "id": 3517,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963291659341217, 45.73917011309167]
- }
- },
- {
- "id": 3561,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963462479145761, 45.73749734977482]
- }
- },
- {
- "id": 3562,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963265346496066, 45.73724528264585]
- }
- },
- {
- "id": 3633,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963242634353148, 45.73725369063208]
- }
- },
- {
- "id": 3634,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96288579730475, 45.73732738442268]
- }
- },
- {
- "id": 3961,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965635709880166, 45.73858368177106]
- }
- },
- {
- "id": 4000,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965512430883249, 45.73773316122202]
- }
- },
- {
- "id": 4001,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965496973365225, 45.73772255032398]
- }
- },
- {
- "id": 4018,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96641420877874, 45.73851643757229]
- }
- },
- {
- "id": 4019,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966421794051887, 45.73849815754939]
- }
- },
- {
- "id": 4080,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966976101032848, 45.73868684905409]
- }
- },
- {
- "id": 4081,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966984130069958, 45.73870394401352]
- }
- },
- {
- "id": 4082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967098205301746, 45.7390806352544]
- }
- },
- {
- "id": 4083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967099842838252, 45.73908423353426]
- }
- },
- {
- "id": 4084,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967227282552781, 45.73936342979869]
- }
- },
- {
- "id": 4085,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967229191598985, 45.73936759781802]
- }
- },
- {
- "id": 4086,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967234131662368, 45.73937842801658]
- }
- },
- {
- "id": 4127,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965699320512575, 45.73855439462086]
- }
- },
- {
- "id": 4128,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965699252348427, 45.73855377510523]
- }
- },
- {
- "id": 4238,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963550347283213, 45.73761321427028]
- }
- },
- {
- "id": 4239,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963549619934052, 45.73761225011894]
- }
- },
- {
- "id": 4444,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966880551612587, 45.73849680452578]
- }
- },
- {
- "id": 4445,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966916631945729, 45.73849186318009]
- }
- },
- {
- "id": 4459,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965485033672116, 45.73756303312003]
- }
- },
- {
- "id": 4460,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96546027566689, 45.73752995597727]
- }
- },
- {
- "id": 4679,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963773037764453, 45.73790942074913]
- }
- },
- {
- "id": 4686,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964618117042615, 45.73756460444032]
- }
- },
- {
- "id": 4687,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964821674409172, 45.73712873182915]
- }
- },
- {
- "id": 4711,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965147952614935, 45.73855656162601]
- }
- },
- {
- "id": 4712,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965194158703693, 45.73854856617363]
- }
- },
- {
- "id": 4719,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966755152046447, 45.73918277835366]
- }
- },
- {
- "id": 4720,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966757041384764, 45.73918707286457]
- }
- },
- {
- "id": 4769,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964831602864755, 45.73711213436472]
- }
- },
- {
- "id": 4770,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965111247117847, 45.73694731850593]
- }
- },
- {
- "id": 4776,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966974236946941, 45.73868254495371]
- }
- },
- {
- "id": 4886,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964444177119184, 45.73786241837054]
- }
- },
- {
- "id": 5001,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965878812489984, 45.73856444829248]
- }
- },
- {
- "id": 5002,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966068033230046, 45.73854969028852]
- }
- },
- {
- "id": 5003,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966131857231558, 45.73854451325678]
- }
- },
- {
- "id": 5004,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966144611671658, 45.73854347628841]
- }
- },
- {
- "id": 5005,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966221190525608, 45.73853727122765]
- }
- },
- {
- "id": 5006,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96638249761217, 45.73853210533971]
- }
- },
- {
- "id": 5163,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965879600063498, 45.73799438364752]
- }
- },
- {
- "id": 5164,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965906059884657, 45.73798800270665]
- }
- },
- {
- "id": 5197,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963807861265371, 45.73869027933681]
- }
- },
- {
- "id": 5198,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.963806843225488, 45.73866410844905]
- }
- },
- {
- "id": 5213,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.96436059502179, 45.73869892492372]
- }
- },
- {
- "id": 5338,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964834124266964, 45.73714447216054]
- }
- },
- {
- "id": 5339,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965208295435371, 45.73704136284544]
- }
- },
- {
- "id": 5409,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966859127692572, 45.73855744654087]
- }
- },
- {
- "id": 5410,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967179562034882, 45.73852652304286]
- }
- },
- {
- "id": 5411,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.967184445653658, 45.73852945112759]
- }
- },
- {
- "id": 505000,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.934853888991207, 45.75111906308752]
- }
- },
- {
- "id": 740000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.934012554090829, 45.74963878116863]
- }
- },
- {
- "id": 873000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.934405208834641, 45.75109114554304]
- }
- },
- {
- "id": 911000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965999144972133, 45.73853954813616]
- }
- },
- {
- "id": 912000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964967023796365, 45.73861896752438]
- }
- },
- {
- "id": 913000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.95935517406077, 45.73798696194202]
- }
- },
- {
- "id": 914000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959945775117695, 45.7387863723316]
- }
- },
- {
- "id": 922000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964922099667358, 45.73862204497594]
- }
- },
- {
- "id": 923000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.964710680877293, 45.73864011135382]
- }
- },
- {
- "id": 924000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.966075646839055, 45.73853361502763]
- }
- },
- {
- "id": 929000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.958670666082522, 45.73892603465969]
- }
- },
- {
- "id": 952000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962508976327063, 45.73870055878569]
- }
- },
- {
- "id": 953000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.951951711472315, 45.74009336132657]
- }
- },
- {
- "id": 954000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950700727347117, 45.73896168111497]
- }
- },
- {
- "id": 1275000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956590211563276, 45.73916813738952]
- }
- },
- {
- "id": 1276000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.958507278623495, 45.73882766560496]
- }
- },
- {
- "id": 1279000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959457101250193, 45.73792677160319]
- }
- },
- {
- "id": 1282000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.959254914727904, 45.73784289385675]
- }
- },
- {
- "id": 1283000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962445409300398, 45.73870412544466]
- }
- },
- {
- "id": 1284000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962460458941739, 45.73858496099791]
- }
- },
- {
- "id": 1285000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956805769545054, 45.73955173093524]
- }
- },
- {
- "id": 1286000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956540133369497, 45.73917989229741]
- }
- },
- {
- "id": 1287000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.956043948302113, 45.73551202979766]
- }
- },
- {
- "id": 1288000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.952966927517592, 45.73755037388134]
- }
- },
- {
- "id": 1291000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.947923168242962, 45.7454139309383]
- }
- },
- {
- "id": 1294000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.968629499909648, 45.7381231100194]
- }
- },
- {
- "id": 1295000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.962475676465369, 45.73834215542708]
- }
- },
- {
- "id": 1298000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950552409384916, 45.74327504293316]
- }
- },
- {
- "id": 1303000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960091104079988, 45.73903468717842]
- }
- },
- {
- "id": 1304000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960266999084436, 45.73878216700876]
- }
- },
- {
- "id": 1315000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.950690491372931, 45.73889693720407]
- }
- },
- {
- "id": 1316000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.960749536320644, 45.73710147424123]
- }
- },
- {
- "id": 1319000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.949480260064897, 45.74059216412196]
- }
- },
- {
- "id": 1321000,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.965069722600271, 45.7385142048397]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1288000,
- "bus2": 9,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line1904",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 9,
- "bus2": 2607,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95294809914324, 45.73754749124046],
- [4.952946059972593, 45.73753407242081],
- [4.952945371546177, 45.73752959668326]
- ]
- },
- "length": 0.0005003382576709,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3163",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 9,
- "bus2": 3997,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95294809914324, 45.73754749124046],
- [4.952949894765706, 45.73756092473948],
- [4.952958860905261, 45.73762811051713]
- ]
- },
- "length": 0.0074999777410105,
- "params_id": "S_AL_25_bt",
- "ground": "ground"
- },
- {
- "id": "line1905",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2607,
- "bus2": 2608,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.952945371546177, 45.73752959668326],
- [4.952925679418836, 45.7374003880531],
- [4.952221303417048, 45.73759143713276],
- [4.952137678945869, 45.73757489683429]
- ]
- },
- "length": 0.0799951954264822,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3164",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3997,
- "bus2": 3998,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.952958860905261, 45.73762811051713],
- [4.952960078525964, 45.7376372277327],
- [4.95299984255245, 45.73763540056071]
- ]
- },
- "length": 0.0041192001404145,
- "params_id": "S_AL_25_bt",
- "ground": "ground"
- },
- {
- "id": "line1906",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2608,
- "bus2": 2609,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.952137678945869, 45.73757489683429],
- [4.952013669787013, 45.73755036805922]
- ]
- },
- "length": 0.0100291338052338,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "transfo2",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1284000,
- "bus2": 31,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line4292",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 31,
- "bus2": 5177,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962468682717135, 45.7385727604298],
- [4.962483430842504, 45.73858144398642],
- [4.962488351451723, 45.73858434439914]
- ]
- },
- "length": 0.0005005785930769,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1851",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 31,
- "bus2": 2546,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962468682717135, 45.7385727604298],
- [4.962469326294041, 45.73858624779614],
- [4.962473616814869, 45.73867616357228],
- [4.963379363543611, 45.73866953268058]
- ]
- },
- "length": 0.0804949278393397,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4264",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 31,
- "bus2": 5147,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962468682717135, 45.7385727604298],
- [4.962450190964499, 45.73858287882064],
- [4.962443400091122, 45.73858604424576]
- ]
- },
- "length": 0.0006349088237527,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4293",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5177,
- "bus2": 5178,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962488351451723, 45.73858434439914],
- [4.962508364359765, 45.73859613635118],
- [4.962510809991794, 45.7386473883427],
- [4.962672865036608, 45.73864899752117],
- [4.962557577118273, 45.73849596710668],
- [4.962534067334214, 45.7384817455323]
- ]
- },
- "length": 0.0419970317072572,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4265",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5147,
- "bus2": 5148,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962443400091122, 45.73858604424576],
- [4.9624259328287, 45.73859419431346],
- [4.962426037335454, 45.73863679651681]
- ]
- },
- "length": 0.0063686689669366,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4266",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5148,
- "bus2": 5149,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962426037335454, 45.73863679651681],
- [4.962426101871827, 45.73866266565135]
- ]
- },
- "length": 0.0028752607062334,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4267",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5149,
- "bus2": 5150,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962426101871827, 45.73866266565135],
- [4.962426186774521, 45.73869839107908],
- [4.962391466086718, 45.73869842928318]
- ]
- },
- "length": 0.0066729663005973,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4268",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5150,
- "bus2": 5151,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962391466086718, 45.73869842928318],
- [4.962295133258132, 45.73869854969649],
- [4.962291619517926, 45.73869873091996],
- [4.962291199755762, 45.7386883168697]
- ]
- },
- "length": 0.0089294677782444,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2771",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3577,
- "bus2": 3576,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962305021429685, 45.73889016079168],
- [4.96227148094557, 45.73887263619685],
- [4.962272135033172, 45.73886128786016]
- ]
- },
- "length": 0.0045193175970921,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3451",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4302,
- "bus2": 4301,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962204444303315, 45.73868466650154],
- [4.962205665041238, 45.73870028274997]
- ]
- },
- "length": 0.0017382851226349,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3452",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4302,
- "bus2": 5151,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962205665041238, 45.73870028274997],
- [4.962206267273864, 45.738708055058],
- [4.962254965338331, 45.73870620464304],
- [4.962257595391107, 45.73868831091244],
- [4.962291199755762, 45.7386883168697]
- ]
- },
- "length": 0.0066600652974873,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4294",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5178,
- "bus2": 5179,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962534067334214, 45.7384817455323],
- [4.962366959917578, 45.7383807055064],
- [4.962243760192935, 45.73827736879885],
- [4.962059173865351, 45.73804193810163]
- ]
- },
- "length": 0.0619962769193219,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2770",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3576,
- "bus2": 3575,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962306221292184, 45.73889078983816],
- [4.962305021429685, 45.73889016079168]
- ]
- },
- "length": 0.0001166549485426,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line321",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3576,
- "bus2": 725,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962305021429685, 45.73889016079168],
- [4.962281073740844, 45.73890798615641],
- [4.962240808534379, 45.73889232018421],
- [4.962232259109893, 45.73891413307611],
- [4.962246258682557, 45.73894673346743],
- [4.96228365590198, 45.73894135774701]
- ]
- },
- "length": 0.0128539123750615,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2772",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5151,
- "bus2": 3577,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962272135033172, 45.73886128786016],
- [4.962280436136135, 45.73871787794917],
- [4.962277607964204, 45.7386893189779],
- [4.962291199755762, 45.7386883168697]
- ]
- },
- "length": 0.0191343998901612,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1852",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2546,
- "bus2": 928,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963379363543611, 45.73866953268058],
- [4.96348113017075, 45.73866878906255]
- ]
- },
- "length": 0.0079206398602404,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1715",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 928,
- "bus2": 2382,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96348113017075, 45.73866878906255],
- [4.963477174286758, 45.73853205702689],
- [4.963288079391093, 45.73828713799261],
- [4.963315264239038, 45.73827681599819]
- ]
- },
- "length": 0.0485524283856353,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line453",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 928,
- "bus2": 929,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96348113017075, 45.73866878906255],
- [4.963847991183937, 45.73859809048848]
- ]
- },
- "length": 0.029613341361079,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4295",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5179,
- "bus2": 2596,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962059173865351, 45.73804193810163],
- [4.962023378725025, 45.73799627314051]
- ]
- },
- "length": 0.0057897859314363,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2221",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2596,
- "bus2": 2962,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962023378725025, 45.73799627314051],
- [4.96204604983626, 45.73798780336082]
- ]
- },
- "length": 0.0019998716132067,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1895",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2596,
- "bus2": 2597,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962023378725025, 45.73799627314051],
- [4.962011674654462, 45.73798025401729]
- ]
- },
- "length": 0.0019999509303946,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2222",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2962,
- "bus2": 2963,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96204604983626, 45.73798780336082],
- [4.962386088267413, 45.73786072075063]
- ]
- },
- "length": 0.0299980427743589,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1896",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2597,
- "bus2": 2598,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962011674654462, 45.73798025401729],
- [4.961712542478319, 45.73757056668453],
- [4.961721983117246, 45.73756662819431]
- ]
- },
- "length": 0.051996812717244,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1716",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2382,
- "bus2": 2383,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963315264239038, 45.73827681599819],
- [4.963320276703058, 45.73827490736029]
- ]
- },
- "length": 0.0004440576697726,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1717",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2383,
- "bus2": 2384,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963320276703058, 45.73827490736029],
- [4.963320908022739, 45.73827466754383]
- ]
- },
- "length": 5.589847208640475e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2223",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2963,
- "bus2": 2964,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962386088267413, 45.73786072075063],
- [4.962395965099435, 45.73785703304483]
- ]
- },
- "length": 0.0008711441750244,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1897",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2598,
- "bus2": 2599,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961721983117246, 45.73756662819431],
- [4.961749094610482, 45.73755530911566]
- ]
- },
- "length": 0.0024566375573587,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2751",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2599,
- "bus2": 3555,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961749094610482, 45.73755530911566],
- [4.962026874124092, 45.73744979344909],
- [4.962044899263728, 45.73745010990579]
- ]
- },
- "length": 0.0259986378904056,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2752",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3555,
- "bus2": 3556,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962044899263728, 45.73745010990579],
- [4.962070618646461, 45.73745057041838]
- ]
- },
- "length": 0.0020023646205635,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "transfo3",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1319000,
- "bus2": 116,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "400kVA",
- "tap": 1.0
- },
- {
- "id": "line115",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 116,
- "bus2": 355,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949490109697274, 45.74058056584027],
- [4.949480745023916, 45.74059235986793],
- [4.949464636609704, 45.74061266434407],
- [4.949577399652404, 45.74084858066003]
- ]
- },
- "length": 0.030232355152662,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1839",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 116,
- "bus2": 2531,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949490109697274, 45.74058056584027],
- [4.949495990831826, 45.74059341818484],
- [4.949597693424425, 45.74081570255527],
- [4.949972721763631, 45.74072685681764],
- [4.950017902158366, 45.74092023868075],
- [4.95014676376539, 45.74146121192071]
- ]
- },
- "length": 0.1394916214647838,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3500",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 116,
- "bus2": 4357,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949490109697274, 45.74058056584027],
- [4.94950753285216, 45.74058632629289],
- [4.949538434830522, 45.74059654377515],
- [4.94962432260402, 45.74078087663503],
- [4.949968838151226, 45.74069976250984]
- ]
- },
- "length": 0.0524971216028656,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1549",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 116,
- "bus2": 2192,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949490109697274, 45.74058056584027],
- [4.949507899758947, 45.74057537184645],
- [4.949537025899295, 45.74056687140702],
- [4.949491364509629, 45.74047161767668],
- [4.949444471734358, 45.74048336720885]
- ]
- },
- "length": 0.0174993450141986,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1550",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2192,
- "bus2": 2193,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949444471734358, 45.74048336720885],
- [4.949356695302401, 45.74050535808706]
- ]
- },
- "length": 0.0072552737885666,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1354",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 355,
- "bus2": 1961,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949577399652404, 45.74084858066003],
- [4.949419516477821, 45.740886750247]
- ]
- },
- "length": 0.0129988959249751,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3134",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 355,
- "bus2": 3967,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949577399652404, 45.74084858066003],
- [4.949942197636729, 45.7407608733611],
- [4.949977922141468, 45.74091756898132],
- [4.950061390994315, 45.74126666860317]
- ]
- },
- "length": 0.0869948949795668,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1355",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1961,
- "bus2": 260,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949419516477821, 45.740886750247],
- [4.949352369787704, 45.74090298593372]
- ]
- },
- "length": 0.0055284311183522,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line65",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 260,
- "bus2": 261,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949352369787704, 45.74090298593372],
- [4.949354557231781, 45.74091250367673],
- [4.949359604960197, 45.74092865200017]
- ]
- },
- "length": 0.0029087843100057,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2174",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 260,
- "bus2": 2909,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949352369787704, 45.74090298593372],
- [4.949103736628304, 45.74096308905356]
- ]
- },
- "length": 0.0204703168245886,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1507",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2140,
- "bus2": 2139,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949406732822898, 45.74115551056487],
- [4.949420155304052, 45.74115282168234],
- [4.949420405824933, 45.74114510150768]
- ]
- },
- "length": 0.0019447888185644,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3501",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4357,
- "bus2": 4358,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949968838151226, 45.74069976250984],
- [4.950001918987462, 45.74069197100517],
- [4.950058223808567, 45.74093010166632]
- ]
- },
- "length": 0.0295438488161324,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2175",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2909,
- "bus2": 2910,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949103736628304, 45.74096308905356],
- [4.948824395771884, 45.74103062148168]
- ]
- },
- "length": 0.022998726468752,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1508",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 261,
- "bus2": 2140,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949420405824933, 45.74114510150768],
- [4.949421195125904, 45.74112138200793],
- [4.949387418600921, 45.74098050165401],
- [4.949374659918358, 45.74094355918756],
- [4.949391331715796, 45.74093403448928],
- [4.949383442055609, 45.74091841140541],
- [4.949359604960197, 45.74092865200017]
- ]
- },
- "length": 0.0262552058736826,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2176",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2910,
- "bus2": 2911,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948824395771884, 45.74103062148168],
- [4.948666498708469, 45.74106879030815]
- ]
- },
- "length": 0.0129998523408677,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2177",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2911,
- "bus2": 2912,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948666498708469, 45.74106879030815],
- [4.948362867574832, 45.7411421887841]
- ]
- },
- "length": 0.0249983255219346,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3135",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3967,
- "bus2": 3968,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950061390994315, 45.74126666860317],
- [4.950063509303619, 45.74127553983312]
- ]
- },
- "length": 0.0009996904364898,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3136",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3968,
- "bus2": 3969,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950063509303619, 45.74127553983312],
- [4.950142006222518, 45.7416038445639]
- ]
- },
- "length": 0.0369976668118124,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2178",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2912,
- "bus2": 2913,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948362867574832, 45.7411421887841],
- [4.948333087920872, 45.74114938988678]
- ]
- },
- "length": 0.0024518774106525,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1840",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2531,
- "bus2": 156,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95014676376539, 45.74146121192071],
- [4.950202564891636, 45.7416954746224]
- ]
- },
- "length": 0.0263970803789386,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3137",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3969,
- "bus2": 671,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950142006222518, 45.7416038445639],
- [4.950162413477225, 45.74168920833736]
- ]
- },
- "length": 0.0096198658184063,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line289",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 671,
- "bus2": 458,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950162413477225, 45.74168920833736],
- [4.950176789760147, 45.74174828393607],
- [4.950181282916888, 45.74176168166396]
- ]
- },
- "length": 0.0081902799410984,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line13",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 156,
- "bus2": 157,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950202564891636, 45.7416954746224],
- [4.950220150198784, 45.74176797784662],
- [4.950195488412604, 45.74181716061058]
- ]
- },
- "length": 0.0139674557311314,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line170",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 458,
- "bus2": 459,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950181282916888, 45.74176168166396],
- [4.950153116202084, 45.7417641378672],
- [4.95011990117204, 45.74174150721939]
- ]
- },
- "length": 0.0058156718278381,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4103",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 459,
- "bus2": 4979,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95011990117204, 45.74174150721939],
- [4.950120320168629, 45.74174599824795]
- ]
- },
- "length": 0.0005002249885874,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4104",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4979,
- "bus2": 4980,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950120320168629, 45.74174599824795],
- [4.950121576731756, 45.74175946234211]
- ]
- },
- "length": 0.0014996755561289,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1561",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 157,
- "bus2": 2205,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950195488412604, 45.74181716061058],
- [4.950206721460432, 45.74186500342928]
- ]
- },
- "length": 0.0053889286439807,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4105",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4980,
- "bus2": 4981,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950121576731756, 45.74175946234211],
- [4.950122509225502, 45.74176935135737],
- [4.949738747301098, 45.74180979230424],
- [4.949489568591248, 45.74184169798374],
- [4.949469231184263, 45.74181897439431]
- ]
- },
- "length": 0.0539972561494892,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1562",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2205,
- "bus2": 2206,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950206721460432, 45.74186500342928],
- [4.950214698930297, 45.74189897862477]
- ]
- },
- "length": 0.0038269097623782,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1563",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2206,
- "bus2": 2207,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950214698930297, 45.74189897862477],
- [4.950243322914806, 45.74202091347151]
- ]
- },
- "length": 0.0137344549052552,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1564",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2207,
- "bus2": 2208,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950243322914806, 45.74202091347151],
- [4.950247948545511, 45.74204061821467],
- [4.950171682347555, 45.74205055859117]
- ]
- },
- "length": 0.0082566766241566,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3914",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2208,
- "bus2": 4784,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950171682347555, 45.74205055859117],
- [4.950174797281904, 45.74205902854793],
- [4.950314951164724, 45.74204487294905],
- [4.95030933222711, 45.74201102286589]
- ]
- },
- "length": 0.0148076510091801,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2820",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2208,
- "bus2": 3627,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950171682347555, 45.74205055859117],
- [4.950175624912356, 45.74206508533622],
- [4.950251540963354, 45.74205914080723],
- [4.950315548545417, 45.74231485217745],
- [4.950284047815058, 45.74232480334145]
- ]
- },
- "length": 0.0374887933481141,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3915",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4784,
- "bus2": 4785,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95030933222711, 45.74201102286589],
- [4.950307440570665, 45.74199961691831],
- [4.950345628579671, 45.74199512699472]
- ]
- },
- "length": 0.0042897434917417,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4106",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4981,
- "bus2": 4982,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949469231184263, 45.74181897439431],
- [4.949462402830679, 45.7418113560017]
- ]
- },
- "length": 0.0009996915998455,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4107",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4982,
- "bus2": 4983,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949462402830679, 45.7418113560017],
- [4.949455627981273, 45.74180378137108],
- [4.949452497864194, 45.74184616160709],
- [4.949398247419865, 45.74185297848733]
- ]
- },
- "length": 0.0099994250049299,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4108",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4983,
- "bus2": 4984,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949398247419865, 45.74185297848733],
- [4.949335012650569, 45.74186092264297]
- ]
- },
- "length": 0.0049996879919236,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2821",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3627,
- "bus2": 3628,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950284047815058, 45.74232480334145],
- [4.950250951188242, 45.74233525974066],
- [4.950291314624964, 45.74234083694983]
- ]
- },
- "length": 0.0060274595104198,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4109",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4984,
- "bus2": 4985,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949335012650569, 45.74186092264297],
- [4.949021817462513, 45.74190029450114],
- [4.948961972701536, 45.74191248929228],
- [4.948959201377501, 45.74190962828636]
- ]
- },
- "length": 0.0299981489511425,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2822",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3628,
- "bus2": 3629,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950291314624964, 45.74234083694983],
- [4.950323421657008, 45.74234527417999],
- [4.95040077529106, 45.74267759317598]
- ]
- },
- "length": 0.039970201546093,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4110",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4985,
- "bus2": 4986,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948959201377501, 45.74190962828636],
- [4.948929530032742, 45.74187903844593],
- [4.948927598325311, 45.74191959045178],
- [4.948848153785544, 45.74193515786838]
- ]
- },
- "length": 0.0150397858917662,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2823",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3629,
- "bus2": 3630,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95040077529106, 45.74267759317598],
- [4.950400951576777, 45.74267832719964],
- [4.950347740868912, 45.74269486901222],
- [4.950408696655409, 45.74270605171005],
- [4.950450977745136, 45.74286052423763]
- ]
- },
- "length": 0.0269987834223425,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4111",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4986,
- "bus2": 4987,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948848153785544, 45.74193515786838],
- [4.948737285115905, 45.74195687551208]
- ]
- },
- "length": 0.0089593827594157,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4112",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4987,
- "bus2": 4988,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948737285115905, 45.74195687551208],
- [4.948703415860845, 45.74196351476765],
- [4.948687881229532, 45.74193417113748]
- ]
- },
- "length": 0.0062154329987107,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1426",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4988,
- "bus2": 2042,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948687881229532, 45.74193417113748],
- [4.948668417395697, 45.74193905288156],
- [4.948685728057248, 45.74197764479616],
- [4.94872571793278, 45.74197292445942],
- [4.948747655385304, 45.74202231858337]
- ]
- },
- "length": 0.0134012523708699,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2824",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3630,
- "bus2": 3631,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950450977745136, 45.74286052423763],
- [4.950456921333884, 45.7428822596457],
- [4.950401227438782, 45.7429006596228],
- [4.950460856538577, 45.7429109730364],
- [4.950502276058836, 45.74307923802846],
- [4.950449800250516, 45.74308527593394]
- ]
- },
- "length": 0.035148289614464,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1427",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2042,
- "bus2": 2043,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948747655385304, 45.74202231858337],
- [4.948754290464784, 45.74203724178536]
- ]
- },
- "length": 0.001737174038491,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line375",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2043,
- "bus2": 809,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.948754290464784, 45.74203724178536],
- [4.948773476276781, 45.74203408579645],
- [4.948901699557921, 45.74238903979888]
- ]
- },
- "length": 0.0406942114996201,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2825",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3631,
- "bus2": 3632,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950449800250516, 45.74308527593394],
- [4.950443458289948, 45.743086008727]
- ]
- },
- "length": 0.0005002132965161,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "transfo4",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1285000,
- "bus2": 106,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "100kVA",
- "tap": 1.0
- },
- {
- "id": "line80",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 106,
- "bus2": 290,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956821263808188, 45.7395436998441],
- [4.95680609641228, 45.73953537640867],
- [4.956757901902865, 45.73951568986967],
- [4.956743343370634, 45.73947695382841],
- [4.956768992915554, 45.73946458993685]
- ]
- },
- "length": 0.0112177985437179,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1730",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 106,
- "bus2": 2401,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956821263808188, 45.7395436998441],
- [4.956802470560173, 45.73954670404984],
- [4.956702610127227, 45.73956267277521],
- [4.956728606339034, 45.73964182901081]
- ]
- },
- "length": 0.0169993694393854,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4365",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 106,
- "bus2": 5249,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956821263808188, 45.7395436998441],
- [4.956815487479819, 45.73955657195612],
- [4.956806154177184, 45.73957735849662],
- [4.956748667883184, 45.73958500168168],
- [4.956765618971497, 45.73964401646928],
- [4.956793992755852, 45.73964107665473]
- ]
- },
- "length": 0.0158985806026337,
- "params_id": "S_AL_35_bt",
- "ground": "ground"
- },
- {
- "id": "line2282",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 290,
- "bus2": 3034,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956768992915554, 45.73946458993685],
- [4.956768624302769, 45.73945711821771],
- [4.956738192164534, 45.73946164535425],
- [4.956709810858944, 45.73936857433193]
- ]
- },
- "length": 0.012998956469388,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2002",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 290,
- "bus2": 2717,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956768992915554, 45.73946458993685],
- [4.956764772282777, 45.7394507360002],
- [4.956744790341858, 45.73944848401223],
- [4.956740752516652, 45.73943765934415]
- ]
- },
- "length": 0.0028186145322106,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2003",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2717,
- "bus2": 2718,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956740752516652, 45.73943765934415],
- [4.95674016308763, 45.73943607982265]
- ]
- },
- "length": 0.0001814521700402,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2004",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2718,
- "bus2": 2719,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95674016308763, 45.73943607982265],
- [4.956737583640353, 45.73942915480448],
- [4.956754846985068, 45.73942155950624]
- ]
- },
- "length": 0.0023821808616207,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4366",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5249,
- "bus2": 5250,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956793992755852, 45.73964107665473],
- [4.956795272180759, 45.73964094776769]
- ]
- },
- "length": 0.0001005974948599,
- "params_id": "S_AL_35_bt",
- "ground": "ground"
- },
- {
- "id": "line4367",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5250,
- "bus2": 5251,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956795272180759, 45.73964094776769],
- [4.956810392422511, 45.73963937055225]
- ]
- },
- "length": 0.001189731053329,
- "params_id": "S_AL_35_bt",
- "ground": "ground"
- },
- {
- "id": "line1731",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2401,
- "bus2": 2402,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956728606339034, 45.73964182901081],
- [4.956729477860355, 45.73964447313664]
- ]
- },
- "length": 0.0003016101018866,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1732",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2402,
- "bus2": 2403,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956729477860355, 45.73964447313664],
- [4.956763170616643, 45.73974703386555]
- ]
- },
- "length": 0.01169693911365,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2283",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3034,
- "bus2": 3035,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956709810858944, 45.73936857433193],
- [4.956708697918765, 45.73936490966044]
- ]
- },
- "length": 0.0004164220714956,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2284",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3035,
- "bus2": 3036,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956708697918765, 45.73936490966044],
- [4.956701324266537, 45.73934072348808],
- [4.956719399624836, 45.73933803310992]
- ]
- },
- "length": 0.0041869395569844,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1733",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2403,
- "bus2": 2404,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956763170616643, 45.73974703386555],
- [4.956763290472624, 45.73974739113116]
- ]
- },
- "length": 4.078960848303534e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1734",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2404,
- "bus2": 2405,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956763290472624, 45.73974739113116],
- [4.956788668742579, 45.73982463544426]
- ]
- },
- "length": 0.008809669797575,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1735",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2405,
- "bus2": 2406,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956788668742579, 45.73982463544426],
- [4.956789104077987, 45.73982594851545]
- ]
- },
- "length": 0.0001498239148669,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1736",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2406,
- "bus2": 2407,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956789104077987, 45.73982594851545],
- [4.956794862323364, 45.73984347521288]
- ]
- },
- "length": 0.0019989085093089,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1737",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2407,
- "bus2": 2408,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956794862323364, 45.73984347521288],
- [4.956823655746058, 45.73993115365443]
- ]
- },
- "length": 0.0099994498409093,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1738",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2408,
- "bus2": 2409,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956823655746058, 45.73993115365443],
- [4.956824392437657, 45.73993339585589]
- ]
- },
- "length": 0.0002557222298103,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1739",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2409,
- "bus2": 2410,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956824392437657, 45.73993339585589],
- [4.956869496855397, 45.73995486482325]
- ]
- },
- "length": 0.0042445161037907,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1740",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2410,
- "bus2": 2411,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956869496855397, 45.73995486482325],
- [4.956873061652036, 45.73995656391332]
- ]
- },
- "length": 0.0003356064585007,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "transfo5",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1287000,
- "bus2": 54,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "400kVA",
- "tap": 1.0
- },
- {
- "id": "line194",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 54,
- "bus2": 504,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956052315026593, 45.7355287394871],
- [4.956033604501489, 45.7355161689203],
- [4.956033322551094, 45.73549107007767]
- ]
- },
- "length": 0.0027897260577011,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line128",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 504,
- "bus2": 220,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956033322551094, 45.73549107007767],
- [4.956034563370537, 45.73548851166989],
- [4.956178737154027, 45.73553866083661],
- [4.95615091490285, 45.73559635332465]
- ]
- },
- "length": 0.0192974364705181,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line204",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 504,
- "bus2": 522,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956033322551094, 45.73549107007767],
- [4.956037862495945, 45.73548733647123],
- [4.956182125310585, 45.7355347650762],
- [4.956210637034254, 45.73546968418562],
- [4.956249667952791, 45.73536985465486]
- ]
- },
- "length": 0.0314743261836909,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line45",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 220,
- "bus2": 221,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95615091490285, 45.73559635332465],
- [4.956204677642744, 45.73560887080555]
- ]
- },
- "length": 0.0044096591919014,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2707",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 220,
- "bus2": 3513,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95615091490285, 45.73559635332465],
- [4.956088156578513, 45.7357264868948],
- [4.95606026307445, 45.7357872775662],
- [4.95606030542764, 45.73579248849629],
- [4.956125443948416, 45.73586872377459]
- ]
- },
- "length": 0.0328165699103589,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line456",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 522,
- "bus2": 935,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956249667952791, 45.73536985465486],
- [4.956256600027722, 45.73537154716573],
- [4.956233058051791, 45.73544489253887],
- [4.956382576042555, 45.73548281856218],
- [4.95640308545411, 45.7354448751772],
- [4.956421946673418, 45.73544764843857]
- ]
- },
- "length": 0.0267418691062935,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2708",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3513,
- "bus2": 3514,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956125443948416, 45.73586872377459],
- [4.956126641959938, 45.73587012706333]
- ]
- },
- "length": 0.0001817164085017,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2709",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3514,
- "bus2": 3515,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956126641959938, 45.73587012706333],
- [4.956214651246689, 45.73597313926646],
- [4.956259165800845, 45.73595366492601],
- [4.956271120290809, 45.73596229744482]
- ]
- },
- "length": 0.0187637017295666,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line400",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 935,
- "bus2": 851,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956421946673418, 45.73544764843857],
- [4.956420010356635, 45.73545152831737],
- [4.956409039547999, 45.73545167640629],
- [4.956392814960897, 45.73548484794242],
- [4.956667948706969, 45.73555193177604],
- [4.95669179900583, 45.73551288415374],
- [4.956701860310014, 45.73551415251796]
- ]
- },
- "length": 0.032942199881977,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "transfo6",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1282000,
- "bus2": 13,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "630kVA",
- "tap": 1.0
- },
- {
- "id": "line510",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13,
- "bus2": 1017,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959246469022067, 45.7378307590273],
- [4.959255831126285, 45.73781896418637],
- [4.959268297090128, 45.73780324412505],
- [4.959200448814673, 45.73770131122335]
- ]
- },
- "length": 0.014498142279017,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2316",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13,
- "bus2": 3073,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959246469022067, 45.7378307590273],
- [4.9592273911606, 45.73782885543228],
- [4.959202552832604, 45.73782638432161],
- [4.959141939241144, 45.73774138536665],
- [4.959101179036857, 45.73775440898316]
- ]
- },
- "length": 0.0159991368150779,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3709",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13,
- "bus2": 4580,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959246469022067, 45.7378307590273],
- [4.959237884212604, 45.73781867245589],
- [4.959159657960649, 45.73770856555179],
- [4.959088866017715, 45.7377317966323]
- ]
- },
- "length": 0.0197533840312648,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2317",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3073,
- "bus2": 3074,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959101179036857, 45.73775440898316],
- [4.959096975421994, 45.73775575843332]
- ]
- },
- "length": 0.000359902842447,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2318",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3074,
- "bus2": 3075,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959096975421994, 45.73775575843332],
- [4.959083641643665, 45.73776001270964]
- ]
- },
- "length": 0.0011403959888861,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2319",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3075,
- "bus2": 3076,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959083641643665, 45.73776001270964],
- [4.95908115996522, 45.73776080883098]
- ]
- },
- "length": 0.000212449508454,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3710",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4580,
- "bus2": 4581,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959088866017715, 45.7377317966323],
- [4.959086005541451, 45.73773273662928]
- ]
- },
- "length": 0.0002459227906416,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3711",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4581,
- "bus2": 4582,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959086005541451, 45.73773273662928],
- [4.959071057271706, 45.7377376407394]
- ]
- },
- "length": 0.0012847593141744,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "transfo7",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1303000,
- "bus2": 33,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "400kVA",
- "tap": 1.0
- },
- {
- "id": "line1176",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 33,
- "bus2": 1757,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960105183392078, 45.73904390876906],
- [4.960111400639391, 45.73903113418077],
- [4.960121574971325, 45.73901021965473],
- [4.960112705305831, 45.73887810336793],
- [4.960475547969224, 45.73885647863783]
- ]
- },
- "length": 0.0454971945072443,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4331",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 33,
- "bus2": 5216,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960105183392078, 45.73904390876906],
- [4.960086444428941, 45.73904076416639],
- [4.96008019839414, 45.73903972195923]
- ]
- },
- "length": 0.000499719203563,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line487",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 33,
- "bus2": 979,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960105183392078, 45.73904390876906],
- [4.960123153890179, 45.73903902389544],
- [4.960155947987132, 45.73903011984349],
- [4.96015328829069, 45.73894736723048],
- [4.960312304348342, 45.7389391491087],
- [4.960327297000351, 45.73909182594988],
- [4.960818791783983, 45.73931617700526]
- ]
- },
- "length": 0.0870175633918751,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line472",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 33,
- "bus2": 339,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960105183392078, 45.73904390876906],
- [4.960097345116976, 45.73903157976098],
- [4.960084335555435, 45.73901109015626],
- [4.960071097374336, 45.73884126923696],
- [4.960001290873768, 45.73884393616881]
- ]
- },
- "length": 0.0268362299978696,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4332",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5216,
- "bus2": 3565,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96008019839414, 45.73903972195923],
- [4.96005334712315, 45.7390352187045],
- [4.96004401165916, 45.73897422599731],
- [4.960017045202498, 45.73897485634307],
- [4.960030281400803, 45.73911767249419],
- [4.959909243692164, 45.73930233415155],
- [4.959932834842134, 45.73939269895975]
- ]
- },
- "length": 0.0597665823576085,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4465",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5357,
- "bus2": 5356,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959885624432446, 45.73834760879387],
- [4.960126272587628, 45.73862419295075]
- ]
- },
- "length": 0.0359972603310922,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1177",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1757,
- "bus2": 848,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960475547969224, 45.73885647863783],
- [4.960760924727571, 45.7388394635442]
- ]
- },
- "length": 0.0222903648041503,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line106",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 339,
- "bus2": 338,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960199756304963, 45.73870863853983],
- [4.96012073094316, 45.73878515420129],
- [4.960051938939426, 45.73882474004503],
- [4.960001290873768, 45.73884393616881]
- ]
- },
- "length": 0.0219072952150191,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4464",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5356,
- "bus2": 5355,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959638274812121, 45.73806334042222],
- [4.959885624432446, 45.73834760879387]
- ]
- },
- "length": 0.036998038532957,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2760",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3565,
- "bus2": 3566,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959932834842134, 45.73939269895975],
- [4.960029915934189, 45.7394066326256],
- [4.960120329088985, 45.73944599859148]
- ]
- },
- "length": 0.0159984466404242,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3982",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3565,
- "bus2": 4854,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959932834842134, 45.73939269895975],
- [4.9599160787222, 45.73940634098333]
- ]
- },
- "length": 0.0019999066660844,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3983",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4854,
- "bus2": 4855,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.9599160787222, 45.73940634098333],
- [4.959818981404895, 45.73948537619096],
- [4.959659490567712, 45.73945669808589],
- [4.959622544267035, 45.73935584343205],
- [4.959672536121384, 45.73929886508697]
- ]
- },
- "length": 0.0434079011695349,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line399",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 848,
- "bus2": 849,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960760924727571, 45.7388394635442],
- [4.96089024310949, 45.73883175894161]
- ]
- },
- "length": 0.0101008190175309,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2761",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3566,
- "bus2": 3567,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960120329088985, 45.73944599859148],
- [4.960208458261459, 45.73948437369319]
- ]
- },
- "length": 0.0080768028699387,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line451",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 849,
- "bus2": 926,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96089024310949, 45.73883175894161],
- [4.960916340919087, 45.73874417513907]
- ]
- },
- "length": 0.0099442456338206,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1240",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 979,
- "bus2": 1829,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960818791783983, 45.73931617700526],
- [4.960804607699028, 45.73933118128229]
- ]
- },
- "length": 0.0019999254240497,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1421",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 979,
- "bus2": 2035,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960818791783983, 45.73931617700526],
- [4.960834371764742, 45.73930186921763]
- ]
- },
- "length": 0.0019997874322937,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line928",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1470,
- "bus2": 452,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96095747863722, 45.73882774732266],
- [4.96093602356783, 45.73876144806627]
- ]
- },
- "length": 0.0075557284635259,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1422",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2035,
- "bus2": 2036,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960834371764742, 45.73930186921763],
- [4.960928404891914, 45.73921549641435],
- [4.96151156517715, 45.73917845461823],
- [4.961626527672252, 45.73908214900259],
- [4.961790299750718, 45.73911972578223],
- [4.961807218664164, 45.7392318502114],
- [4.961738822421614, 45.73928025843389]
- ]
- },
- "length": 0.1051066453823083,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1241",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1829,
- "bus2": 1830,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960804607699028, 45.73933118128229],
- [4.960248469013997, 45.73991911622788]
- ]
- },
- "length": 0.0783806505567235,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line167",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 452,
- "bus2": 453,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96095747863722, 45.73882774732266],
- [4.961544572899767, 45.73879241358706]
- ]
- },
- "length": 0.0458602317411214,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4463",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5355,
- "bus2": 5354,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959654271490656, 45.73767803996336],
- [4.959542328938872, 45.73791566113006],
- [4.95966723044202, 45.73794694804518],
- [4.959621736614228, 45.73804432849675],
- [4.959638274812121, 45.73806334042222]
- ]
- },
- "length": 0.0519968520062209,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2179",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 926,
- "bus2": 2915,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960916340919087, 45.73874417513907],
- [4.960905544140147, 45.73874475165952],
- [4.960889052594204, 45.7387588107271],
- [4.96079953543904, 45.73872420430275],
- [4.960767503232685, 45.73870325039978],
- [4.960757004187017, 45.73868580772434]
- ]
- },
- "length": 0.0154957070661534,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line929",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 926,
- "bus2": 1470,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96093602356783, 45.73876144806627],
- [4.960930430213592, 45.73874416974355],
- [4.960916340919087, 45.73874417513907]
- ]
- },
- "length": 0.0019691399428032,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2180",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2915,
- "bus2": 2916,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960757004187017, 45.73868580772434],
- [4.960783074661972, 45.73867016545922]
- ]
- },
- "length": 0.0026719767370282,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1272",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2916,
- "bus2": 1865,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960783074661972, 45.73867016545922],
- [4.960770753031895, 45.73865790531985],
- [4.960736612800587, 45.73866337541409]
- ]
- },
- "length": 0.0027257092541228,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1273",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1865,
- "bus2": 1866,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960736612800587, 45.73866337541409],
- [4.960613525714848, 45.7385138200812],
- [4.960616899657214, 45.73850504564253]
- ]
- },
- "length": 0.0201952650554332,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1274",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1866,
- "bus2": 1867,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960616899657214, 45.73850504564253],
- [4.960621839886369, 45.73849218385909]
- ]
- },
- "length": 0.0014803408852694,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4462",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5354,
- "bus2": 5353,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959682440255655, 45.73761823205071],
- [4.959654271490656, 45.73767803996336]
- ]
- },
- "length": 0.00699961071024,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line292",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 453,
- "bus2": 421,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961544572899767, 45.73879241358706],
- [4.961968644340571, 45.73876996402976]
- ]
- },
- "length": 0.0330984002559041,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line468",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 453,
- "bus2": 613,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961544572899767, 45.73879241358706],
- [4.961479027499966, 45.73865802224827]
- ]
- },
- "length": 0.0157841355046023,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line256",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 613,
- "bus2": 614,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961479027499966, 45.73865802224827],
- [4.961465535419309, 45.73856382087653],
- [4.961398418773967, 45.73855818930203]
- ]
- },
- "length": 0.015783526014468,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line413",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 614,
- "bus2": 872,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961398418773967, 45.73855818930203],
- [4.961465103978998, 45.73852782451912],
- [4.961362963415412, 45.73840779143752],
- [4.961665400590003, 45.73828009622697]
- ]
- },
- "length": 0.0492066014196515,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3313",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 614,
- "bus2": 4159,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961398418773967, 45.73855818930203],
- [4.961417291850237, 45.73852264161904],
- [4.961172370845995, 45.73823961583732]
- ]
- },
- "length": 0.0409970179470728,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line151",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 421,
- "bus2": 422,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961968644340571, 45.73876996402976],
- [4.962167516981007, 45.73875943365877],
- [4.962163012139682, 45.73868603185797]
- ]
- },
- "length": 0.0236877203591259,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4203",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 421,
- "bus2": 5080,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961968644340571, 45.73876996402976],
- [4.961963947167957, 45.73872566894523]
- ]
- },
- "length": 0.0049367846142944,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4204",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5080,
- "bus2": 5081,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961963947167957, 45.73872566894523],
- [4.961963881619567, 45.73872510337682]
- ]
- },
- "length": 6.306745004955883e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4205",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5081,
- "bus2": 5082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961963881619567, 45.73872510337682],
- [4.961962149366898, 45.73870873395592]
- ]
- },
- "length": 0.0018243872061862,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4206",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5082,
- "bus2": 5083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961962149366898, 45.73870873395592],
- [4.961961425705299, 45.738701918659]
- ]
- },
- "length": 0.000759585304389,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4461",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5353,
- "bus2": 3049,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959799155586835, 45.73737046237839],
- [4.959682440255655, 45.73761823205071]
- ]
- },
- "length": 0.028998158624463,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2295",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3049,
- "bus2": 3050,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959799155586835, 45.73737046237839],
- [4.959726093502897, 45.7372753938573]
- ]
- },
- "length": 0.0119993997887356,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3708",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3049,
- "bus2": 4578,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960165846935249, 45.73724425782031],
- [4.959799155586835, 45.73737046237839]
- ]
- },
- "length": 0.0318001496995585,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4159,
- "bus2": 4160,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961172370845995, 45.73823961583732],
- [4.961086686034492, 45.73814060353558],
- [4.961232766999241, 45.73804208532634]
- ]
- },
- "length": 0.0286524746049958,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3707",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4578,
- "bus2": 4577,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960235029230575, 45.73722045155628],
- [4.960165846935249, 45.73724425782031]
- ]
- },
- "length": 0.0059994127493386,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2296",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3050,
- "bus2": 3051,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959726093502897, 45.7372753938573],
- [4.95971692485665, 45.73726346499498],
- [4.959460499797927, 45.73735857402437],
- [4.959308162719201, 45.73731802631416],
- [4.959283390068452, 45.73736170490385]
- ]
- },
- "length": 0.041997209573858,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3315",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4160,
- "bus2": 4161,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961232766999241, 45.73804208532634],
- [4.961235967630083, 45.73803992210173]
- ]
- },
- "length": 0.0003462063427907,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3316",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4161,
- "bus2": 4162,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961235967630083, 45.73803992210173],
- [4.961237387326696, 45.73803896173435]
- ]
- },
- "length": 0.0001536301071027,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3706",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4577,
- "bus2": 4576,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960523291499956, 45.73712123874899],
- [4.960235029230575, 45.73722045155628]
- ]
- },
- "length": 0.0249987466101525,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3705",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4576,
- "bus2": 4575,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960650120456335, 45.73707758610233],
- [4.960523291499956, 45.73712123874899]
- ]
- },
- "length": 0.0109989613390624,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2297",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3051,
- "bus2": 3052,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959283390068452, 45.73736170490385],
- [4.959279701686487, 45.73736820023878]
- ]
- },
- "length": 0.0007769109155526,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3704",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4575,
- "bus2": 4574,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960740549922936, 45.73708555348455],
- [4.960671836128309, 45.73707011111041],
- [4.960650120456335, 45.73707758610233]
- ]
- },
- "length": 0.0074999085460423,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4466",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 338,
- "bus2": 5357,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960126272587628, 45.73862419295075],
- [4.960199756304963, 45.73870863853983]
- ]
- },
- "length": 0.0109909365086242,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "transfo8",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1316000,
- "bus2": 17,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "400kVA",
- "tap": 1.0
- },
- {
- "id": "line4236",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 17,
- "bus2": 5116,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96075889797756, 45.73708967927565],
- [4.960771590226623, 45.73707952573821],
- [4.960794806906621, 45.73706093464583],
- [4.960849440960156, 45.73704179794322]
- ]
- },
- "length": 0.0074993866686839,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line286",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 17,
- "bus2": 531,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96075889797756, 45.73708967927565],
- [4.960777939782102, 45.73708759573616],
- [4.960811330564744, 45.73708395245376],
- [4.961358971029576, 45.73689561425828],
- [4.961398300335136, 45.7368307829915],
- [4.961984072040853, 45.73663344835436]
- ]
- },
- "length": 0.1085366702149709,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line977",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 17,
- "bus2": 1531,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96075889797756, 45.73708967927565],
- [4.960770216708153, 45.73710059461094],
- [4.960789889444348, 45.73711956007803],
- [4.960858114576383, 45.73709456058403],
- [4.960935668151952, 45.73720722054048]
- ]
- },
- "length": 0.0224988879643285,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4237",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5116,
- "bus2": 5117,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960849440960156, 45.73704179794322],
- [4.96086667443794, 45.73703575995913]
- ]
- },
- "length": 0.0014997946053861,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4238",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5117,
- "bus2": 5118,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96086667443794, 45.73703575995913],
- [4.961136695199635, 45.73694116682628]
- ]
- },
- "length": 0.0234987629080634,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line978",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1531,
- "bus2": 1532,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960935668151952, 45.73720722054048],
- [4.960941248158703, 45.73721532652868]
- ]
- },
- "length": 0.0010001579199835,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line979",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1532,
- "bus2": 295,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960941248158703, 45.73721532652868],
- [4.961045955673573, 45.73736741760803]
- ]
- },
- "length": 0.0187661331039162,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4239",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5118,
- "bus2": 5119,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961136695199635, 45.73694116682628],
- [4.961153928614241, 45.73693512879809]
- ]
- },
- "length": 0.0014997945502358,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4240",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5119,
- "bus2": 5120,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961153928614241, 45.73693512879809],
- [4.961337225159591, 45.73687091834149],
- [4.961360232170545, 45.73682367990691]
- ]
- },
- "length": 0.0214987798149279,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3773",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 295,
- "bus2": 4647,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961045955673573, 45.73736741760803],
- [4.961038896755773, 45.73740808991974],
- [4.961099941734808, 45.73750207943066],
- [4.960793268398773, 45.7376150105743]
- ]
- },
- "length": 0.0429972584046471,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1250",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 295,
- "bus2": 1840,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961045955673573, 45.73736741760803],
- [4.961317252966468, 45.73726479178624]
- ]
- },
- "length": 0.0239988073603358,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line83",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 295,
- "bus2": 296,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961045955673573, 45.73736741760803],
- [4.961254260680495, 45.73766500030121]
- ]
- },
- "length": 0.0368347747644785,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4241",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5120,
- "bus2": 5121,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961360232170545, 45.73682367990691],
- [4.961366461715031, 45.73681090495221]
- ]
- },
- "length": 0.0015003845165864,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4242",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5121,
- "bus2": 5122,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961366461715031, 45.73681090495221],
- [4.96136649637729, 45.73681082312702],
- [4.961430098987583, 45.73678945101164]
- ]
- },
- "length": 0.0055001062627582,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4243",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5122,
- "bus2": 5123,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961430098987583, 45.73678945101164],
- [4.961447470592804, 45.73678361674145]
- ]
- },
- "length": 0.0014994921828266,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4244",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5123,
- "bus2": 5124,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961447470592804, 45.73678361674145],
- [4.961661760315602, 45.73671160557122]
- ]
- },
- "length": 0.0184992014171015,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1251",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1840,
- "bus2": 1841,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961317252966468, 45.73726479178624],
- [4.961334514238821, 45.73725825799199]
- ]
- },
- "length": 0.0015271473619261,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1252",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1841,
- "bus2": 1842,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961334514238821, 45.73725825799199],
- [4.961339855392209, 45.73725623373556]
- ]
- },
- "length": 0.0004726775241331,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1253",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1842,
- "bus2": 1843,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961339855392209, 45.73725623373556],
- [4.961340171264948, 45.73725611832876]
- ]
- },
- "length": 2.772923754078671e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4245",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5124,
- "bus2": 5125,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961661760315602, 45.73671160557122],
- [4.961679131871559, 45.73670577126523]
- ]
- },
- "length": 0.001499492136751,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4246",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5125,
- "bus2": 5126,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961679131871559, 45.73670577126523],
- [4.961965980931708, 45.73660937818495]
- ]
- },
- "length": 0.0247630704763613,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3774",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4647,
- "bus2": 4648,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960793268398773, 45.7376150105743],
- [4.960622693085613, 45.7376778244415]
- ]
- },
- "length": 0.0149994723794677,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3775",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4648,
- "bus2": 4649,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960622693085613, 45.7376778244415],
- [4.960513124055958, 45.7377181749721]
- ]
- },
- "length": 0.0096350082787613,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line209",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 531,
- "bus2": 532,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961984072040853, 45.73663344835436],
- [4.962053028112852, 45.73665073858405],
- [4.96266036706634, 45.73644749479478]
- ]
- },
- "length": 0.0580902420227454,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4247",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5126,
- "bus2": 5127,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961965980931708, 45.73660937818495],
- [4.961968713751984, 45.73660845910157]
- ]
- },
- "length": 0.000235954498344,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4248",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5127,
- "bus2": 1502,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961968713751984, 45.73660845910157],
- [4.961982656484691, 45.7366037761511]
- ]
- },
- "length": 0.0012035329395608,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3776",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4649,
- "bus2": 4650,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960513124055958, 45.7377181749721],
- [4.960508980416538, 45.73771970310602]
- ]
- },
- "length": 0.000364485419189,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line961",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1502,
- "bus2": 1510,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961982656484691, 45.7366037761511],
- [4.962051655415735, 45.73662196553913],
- [4.96219385396506, 45.73657448591048]
- ]
- },
- "length": 0.0179992128212935,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line955",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1502,
- "bus2": 1503,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.961982656484691, 45.7366037761511],
- [4.962002394882419, 45.73666722583931],
- [4.962055727770482, 45.73668038074695],
- [4.962167329875355, 45.73683709838383],
- [4.96213440083194, 45.73684960686295]
- ]
- },
- "length": 0.0339982521657435,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3777",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4650,
- "bus2": 4651,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960508980416538, 45.73771970310602],
- [4.96050743912461, 45.7377202702363]
- ]
- },
- "length": 0.0001355096861915,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line962",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1510,
- "bus2": 1511,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96219385396506, 45.73657448591048],
- [4.962286628397499, 45.73654351020274]
- ]
- },
- "length": 0.0079994237598084,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line963",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1511,
- "bus2": 1512,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962286628397499, 45.73654351020274],
- [4.962440113013225, 45.73649225556941]
- ]
- },
- "length": 0.01323455875897,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line956",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1503,
- "bus2": 1504,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96213440083194, 45.73684960686295],
- [4.962126926139021, 45.73685244620967]
- ]
- },
- "length": 0.0006618375786432,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2166",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1512,
- "bus2": 2900,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962440113013225, 45.73649225556941],
- [4.962499017231833, 45.73656829120282],
- [4.962478496234752, 45.73659513708291]
- ]
- },
- "length": 0.012998874465924,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2167",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2900,
- "bus2": 2901,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962478496234752, 45.73659513708291],
- [4.962472398263021, 45.73660312016901],
- [4.962562383748659, 45.73673783918393],
- [4.962546991911733, 45.73678516075339]
- ]
- },
- "length": 0.022931005478589,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2168",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2901,
- "bus2": 2902,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962546991911733, 45.73678516075339],
- [4.962546801938095, 45.73678575930509]
- ]
- },
- "length": 6.814998294214048e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2169",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2902,
- "bus2": 2903,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962546801938095, 45.73678575930509],
- [4.962545568380995, 45.73678954184167]
- ]
- },
- "length": 0.0004312374862264,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "transfo9",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1321000,
- "bus2": 64,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "630kVA",
- "tap": 1.0
- },
- {
- "id": "line1594",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 2243,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965084063081045, 45.73849012268901],
- [4.965084930423785, 45.73848567357514]
- ]
- },
- "length": 0.0004990881977186,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line260",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 621,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965086563914866, 45.73852633167192],
- [4.965081747073785, 45.73856274804481],
- [4.965140569083272, 45.7386711182296],
- [4.965899220039365, 45.7386086992918],
- [4.965922818643806, 45.73851659985056]
- ]
- },
- "length": 0.0868002806626187,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line171",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 461,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965073226315021, 45.73851569806614],
- [4.965058640595166, 45.73853733751645],
- [4.965010617682945, 45.73855466514089],
- [4.965078778436606, 45.73866288865581],
- [4.964450467561931, 45.73869650556197],
- [4.964394554729672, 45.73869937201268]
- ]
- },
- "length": 0.0734158864084878,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line168",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 455,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965063299618518, 45.73849896248653],
- [4.965032009370969, 45.73849115276518],
- [4.964913236217574, 45.73853444168664],
- [4.96495930499504, 45.73861077678116]
- ]
- },
- "length": 0.022217159646987,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line161",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 441,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965071638764609, 45.73849188093678],
- [4.9650419343038, 45.73845671414239],
- [4.964901632092384, 45.73850680840194],
- [4.964510719345298, 45.73801997295966]
- ]
- },
- "length": 0.0788746145834906,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line230",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 570,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965092310713022, 45.73851557515957],
- [4.965167793202724, 45.73864789553053],
- [4.966121754461933, 45.73857171884823],
- [4.966135101225179, 45.73852254528428]
- ]
- },
- "length": 0.0961254785888437,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line139",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 398,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965077689549044, 45.73852166963346],
- [4.965053551445329, 45.73856536174762],
- [4.965097165500242, 45.73862744169458],
- [4.965466467843086, 45.73860035649596]
- ]
- },
- "length": 0.0417955946810107,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3836",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 64,
- "bus2": 4711,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965081449499382, 45.73850349730601],
- [4.965096556236531, 45.73851187507648],
- [4.96512502746423, 45.73852768123741],
- [4.965147952614935, 45.73855656162601]
- ]
- },
- "length": 0.0065002527623105,
- "params_id": "S_AL_35_bt",
- "ground": "ground"
- },
- {
- "id": "line1595",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2243,
- "bus2": 2244,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965084930423785, 45.73848567357514],
- [4.965088677354798, 45.73846642135719],
- [4.965052928588864, 45.73841774966102],
- [4.964916607629818, 45.73847045118764],
- [4.964547700386225, 45.73801370604721]
- ]
- },
- "length": 0.07868403373704,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3837",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4711,
- "bus2": 4712,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965147952614935, 45.73855656162601],
- [4.965152384551264, 45.73856214685375],
- [4.965194158703693, 45.73854856617363]
- ]
- },
- "length": 0.0042946510843251,
- "params_id": "S_AL_35_bt",
- "ground": "ground"
- },
- {
- "id": "line2677",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 455,
- "bus2": 3482,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96495930499504, 45.73861077678116],
- [4.96479321244731, 45.73862099457246]
- ]
- },
- "length": 0.0129763168892696,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2678",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3482,
- "bus2": 3483,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96479321244731, 45.73862099457246],
- [4.964792917532347, 45.73862101048032]
- ]
- },
- "length": 2.3020417188823448e-05,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2679",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3483,
- "bus2": 3484,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964792917532347, 45.73862101048032],
- [4.96465439581094, 45.73862952922292]
- ]
- },
- "length": 0.010822259929561,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line240",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 398,
- "bus2": 588,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965466467843086, 45.73860035649596],
- [4.965445515323404, 45.73863806901497],
- [4.965452493889316, 45.73867301190182],
- [4.965467951236606, 45.73867850089131]
- ]
- },
- "length": 0.0097680440360565,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3128",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 398,
- "bus2": 3961,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965466467843086, 45.73860035649596],
- [4.965635709880166, 45.73858368177106]
- ]
- },
- "length": 0.0133013956335383,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2680",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3484,
- "bus2": 3485,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96465439581094, 45.73862952922292],
- [4.964652127236736, 45.7386296723614]
- ]
- },
- "length": 0.0001772721694314,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2681",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3485,
- "bus2": 3486,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964652127236736, 45.7386296723614],
- [4.96437914655397, 45.73864645216977]
- ]
- },
- "length": 0.0213270284582181,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3129",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3961,
- "bus2": 1900,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965635709880166, 45.73858368177106],
- [4.965698522526376, 45.73857859169032]
- ]
- },
- "length": 0.004921165621923,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1303",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1900,
- "bus2": 1901,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965698522526376, 45.73857859169032],
- [4.965725056144439, 45.73857643983605]
- ]
- },
- "length": 0.0020788438731462,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3282",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1900,
- "bus2": 4127,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965698522526376, 45.73857859169032],
- [4.965699320512575, 45.73855439462086]
- ]
- },
- "length": 0.0026901295622809,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1304",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1901,
- "bus2": 650,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965725056144439, 45.73857643983605],
- [4.965804784154678, 45.7385702243004]
- ]
- },
- "length": 0.0062433544462683,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3283",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4127,
- "bus2": 4128,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965699320512575, 45.73855439462086],
- [4.965699252348427, 45.73855377510523]
- ]
- },
- "length": 6.906087275498889e-05,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2682",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3486,
- "bus2": 511,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96437914655397, 45.73864645216977],
- [4.964320979401388, 45.73865002848635]
- ]
- },
- "length": 0.0045444041469279,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4126",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 650,
- "bus2": 5001,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965804784154678, 45.7385702243004],
- [4.965878812489984, 45.73856444829248]
- ]
- },
- "length": 0.0057970831921064,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line278",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 650,
- "bus2": 651,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965804784154678, 45.7385702243004],
- [4.965807853201676, 45.73855804521034],
- [4.96588560785737, 45.73855142576443],
- [4.965892013136321, 45.73849849014617],
- [4.965905552164909, 45.73849504039023]
- ]
- },
- "length": 0.0144965442912675,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line199",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 511,
- "bus2": 512,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964320979401388, 45.73865002848635],
- [4.964300903280957, 45.73865953616883],
- [4.963849315269567, 45.73867375412993],
- [4.963846545798926, 45.73866394418235]
- ]
- },
- "length": 0.0381790357341103,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2343",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 511,
- "bus2": 3107,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964320979401388, 45.73865002848635],
- [4.964315333159959, 45.73863247249453]
- ]
- },
- "length": 0.0020001502928667,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line391",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 461,
- "bus2": 837,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964394554729672, 45.73869937201268],
- [4.964392671373303, 45.7387660011235],
- [4.964457257085702, 45.73890894695324]
- ]
- },
- "length": 0.024071080076804,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4327",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 461,
- "bus2": 5213,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964394554729672, 45.73869937201268],
- [4.96436059502179, 45.73869892492372]
- ]
- },
- "length": 0.0026434536605825,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2344",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3107,
- "bus2": 3108,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964315333159959, 45.73863247249453],
- [4.964302865197918, 45.73859374237484],
- [4.964299275431529, 45.7385891005713]
- ]
- },
- "length": 0.0049994247730048,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4127",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5001,
- "bus2": 5002,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965878812489984, 45.73856444829248],
- [4.966068033230046, 45.73854969028852]
- ]
- },
- "length": 0.0148176137400325,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4328",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5213,
- "bus2": 873,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96436059502179, 45.73869892492372],
- [4.964289723841232, 45.73870082731759]
- ]
- },
- "length": 0.0055197517724435,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1244",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 441,
- "bus2": 1833,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964510719345298, 45.73801997295966],
- [4.96449895162743, 45.73800398257293]
- ]
- },
- "length": 0.0019993720963717,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2345",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3108,
- "bus2": 198,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964299275431529, 45.7385891005713],
- [4.964264272577165, 45.73854392180715]
- ]
- },
- "length": 0.0057128006007713,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4012",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2244,
- "bus2": 4886,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964547700386225, 45.73801370604721],
- [4.964439172513151, 45.73786772048844],
- [4.964444177119184, 45.73786241837054]
- ]
- },
- "length": 0.0189989762344716,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1245",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1833,
- "bus2": 1834,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96449895162743, 45.73800398257293],
- [4.964399365763311, 45.73786865255626],
- [4.964631577039423, 45.73761657068017],
- [4.964629859448765, 45.73758060440638]
- ]
- },
- "length": 0.0542616673342133,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line414",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 873,
- "bus2": 750,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964289723841232, 45.73870082731759],
- [4.964070768491324, 45.73870671870665]
- ]
- },
- "length": 0.017053240950427,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2114",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 873,
- "bus2": 2841,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964289723841232, 45.73870082731759],
- [4.964335562248609, 45.73874947004877],
- [4.964387501263031, 45.7388655631196]
- ]
- },
- "length": 0.0199990456917288,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1662",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2319,
- "bus2": 2318,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965749812771702, 45.73787625327925],
- [4.965774230664155, 45.73786884000859]
- ]
- },
- "length": 0.0020713364128582,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1259",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 198,
- "bus2": 1850,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964264272577165, 45.73854392180715],
- [4.964264235958905, 45.7385364243123]
- ]
- },
- "length": 0.0008333230108893,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line34",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 198,
- "bus2": 199,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964264272577165, 45.73854392180715],
- [4.963785020541142, 45.73792534316028]
- ]
- },
- "length": 0.0782186277177634,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1260",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1850,
- "bus2": 1851,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964264235958905, 45.7385364243123],
- [4.96426419637153, 45.73852617239019],
- [4.964246811848618, 45.73850374229704],
- [4.964295208166546, 45.7384861542162]
- ]
- },
- "length": 0.008219598467182,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4128",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5002,
- "bus2": 5003,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966068033230046, 45.73854969028852],
- [4.966131857231558, 45.73854451325678]
- ]
- },
- "length": 0.005000468856018,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 147,
- "bus2": 146,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96395197494093, 45.7380834639623],
- [4.964252163804259, 45.73847286744663]
- ]
- },
- "length": 0.0491838494724766,
- "params_id": "T_AL_70_bt",
- "ground": "ground"
- },
- {
- "id": "line4129",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5003,
- "bus2": 5004,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966131857231558, 45.73854451325678],
- [4.966144611671658, 45.73854347628841]
- ]
- },
- "length": 0.0009993128878082,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4130",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5004,
- "bus2": 5005,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966144611671658, 45.73854347628841],
- [4.966221190525608, 45.73853727122765]
- ]
- },
- "length": 0.0059996999556732,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1021",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 570,
- "bus2": 1583,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966135101225179, 45.73852254528428],
- [4.96614781966638, 45.7385212931198]
- ]
- },
- "length": 0.0009995789954377,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1022",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1583,
- "bus2": 1584,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96614781966638, 45.7385212931198],
- [4.966152771529289, 45.73852080803084]
- ]
- },
- "length": 0.0003891436092389,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line587",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 146,
- "bus2": 1118,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96395197494093, 45.7380834639623],
- [4.963939739555462, 45.73806763749647]
- ]
- },
- "length": 0.0020002632179181,
- "params_id": "T_AL_70_bt",
- "ground": "ground"
- },
- {
- "id": "line1023",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1584,
- "bus2": 1585,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966152771529289, 45.73852080803084],
- [4.966173960655363, 45.73851872728084]
- ]
- },
- "length": 0.0016652315367893,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4013",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4886,
- "bus2": 2182,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964444177119184, 45.73786241837054],
- [4.96463372403091, 45.73766152852276],
- [4.964668772496811, 45.73761479951217]
- ]
- },
- "length": 0.0326278795576607,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line338",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 750,
- "bus2": 751,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964070768491324, 45.73870671870665],
- [4.964074290125498, 45.73878020652378],
- [4.964094282222768, 45.73878724583392]
- ]
- },
- "length": 0.0099140527275263,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line513",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 750,
- "bus2": 1020,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964070768491324, 45.73870671870665],
- [4.963808763795043, 45.73871376144375]
- ]
- },
- "length": 0.0204060882306732,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4131",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5005,
- "bus2": 5006,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966221190525608, 45.73853727122765],
- [4.96638249761217, 45.73853210533971]
- ]
- },
- "length": 0.0125672273490958,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2115",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2841,
- "bus2": 2842,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964387501263031, 45.7388655631196],
- [4.964387947426963, 45.73886656085501]
- ]
- },
- "length": 0.0001162037823713,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2116",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2842,
- "bus2": 2843,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964387947426963, 45.73886656085501],
- [4.964393383784293, 45.73887702847927]
- ]
- },
- "length": 0.0012379799892217,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4132",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5006,
- "bus2": 345,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96638249761217, 45.73853210533971],
- [4.966427240851997, 45.7385284734373]
- ]
- },
- "length": 0.0035055677178873,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3182",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 345,
- "bus2": 4018,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966427240851997, 45.7385284734373],
- [4.966412768224104, 45.73851991895285],
- [4.96641420877874, 45.73851643757229]
- ]
- },
- "length": 0.0018768720471732,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line110",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 345,
- "bus2": 346,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966427240851997, 45.7385284734373],
- [4.966473521113746, 45.73852687587556]
- ]
- },
- "length": 0.0036062449539755,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3183",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4018,
- "bus2": 4019,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96641420877874, 45.73851643757229],
- [4.966421794051887, 45.73849815754939]
- ]
- },
- "length": 0.0021157819220978,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4313",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1020,
- "bus2": 5197,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963808763795043, 45.73871376144375],
- [4.963807861265371, 45.73869027933681]
- ]
- },
- "length": 0.0026108922941206,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1808",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1020,
- "bus2": 2493,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963808763795043, 45.73871376144375],
- [4.963718891198381, 45.73871618029157]
- ]
- },
- "length": 0.0069996890251837,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3843",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 346,
- "bus2": 4719,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966473521113746, 45.73852687587556],
- [4.966755152046447, 45.73918277835366]
- ]
- },
- "length": 0.0761248081615365,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3588",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 346,
- "bus2": 4444,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966473521113746, 45.73852687587556],
- [4.966880551612587, 45.73849680452578]
- ]
- },
- "length": 0.0318539546392073,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5197,
- "bus2": 5198,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963807861265371, 45.73869027933681],
- [4.963806843225488, 45.73866410844905]
- ]
- },
- "length": 0.0029098739269281,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1809",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2493,
- "bus2": 921,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963718891198381, 45.73871618029157],
- [4.963416931799182, 45.73872430139771]
- ]
- },
- "length": 0.0235179522513829,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1543",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2182,
- "bus2": 2183,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964668772496811, 45.73761479951217],
- [4.964694464150002, 45.73761521506726]
- ]
- },
- "length": 0.0020000796630264,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2019",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2182,
- "bus2": 2734,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964668772496811, 45.73761479951217],
- [4.964669006017743, 45.73759680879945]
- ]
- },
- "length": 0.0019996818008195,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2020",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2734,
- "bus2": 2735,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964669006017743, 45.73759680879945],
- [4.964669322462765, 45.7375724790019],
- [4.964516827801912, 45.73736721224008],
- [4.964550498084664, 45.73726470547585],
- [4.964714550721385, 45.73720055297952]
- ]
- },
- "length": 0.0547361961355345,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1544",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2183,
- "bus2": 2184,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964694464150002, 45.73761521506726],
- [4.964736957699373, 45.73761590327503],
- [4.964994169236909, 45.73794113947151],
- [4.964942681060684, 45.73796664969664],
- [4.964989303413325, 45.73802766903388]
- ]
- },
- "length": 0.0572302368153654,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3811",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1834,
- "bus2": 4686,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964629859448765, 45.73758060440638],
- [4.964618117042615, 45.73756460444032]
- ]
- },
- "length": 0.0019994205494919,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3812",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4686,
- "bus2": 4687,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964618117042615, 45.73756460444032],
- [4.964477236101665, 45.73737264012023],
- [4.964521132064454, 45.73724198889518],
- [4.964821674409172, 45.73712873182915]
- ]
- },
- "length": 0.0654695205155956,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line525",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1851,
- "bus2": 147,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964252163804259, 45.73847286744663],
- [4.964258060030759, 45.73848192905675],
- [4.964277527287557, 45.73846559440268],
- [4.964295208166546, 45.7384861542162]
- ]
- },
- "length": 0.0034714457404252,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line588",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1118,
- "bus2": 1119,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963939739555462, 45.73806763749647],
- [4.963684793044012, 45.73773775517096]
- ]
- },
- "length": 0.0416898170124738,
- "params_id": "T_AL_70_bt",
- "ground": "ground"
- },
- {
- "id": "line446",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 921,
- "bus2": 922,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963416931799182, 45.73872430139771],
- [4.963302642840888, 45.73878535183302],
- [4.962829897366068, 45.73879641518248],
- [4.962814040532729, 45.73880948751754]
- ]
- },
- "length": 0.0499067215902113,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line2710",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 921,
- "bus2": 3516,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963416931799182, 45.73872430139771],
- [4.963398996550705, 45.73873718842353]
- ]
- },
- "length": 0.002000000406419,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2711",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3516,
- "bus2": 3517,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963398996550705, 45.73873718842353],
- [4.963324954976326, 45.73879036562378],
- [4.963300989515336, 45.7388269330034],
- [4.963303170042107, 45.73914193866987],
- [4.963291659341217, 45.73917011309167]
- ]
- },
- "length": 0.050995699586163,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3589",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4444,
- "bus2": 4445,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966880551612587, 45.73849680452578],
- [4.966909055576143, 45.73849338198927],
- [4.966916631945729, 45.73849186318009]
- ]
- },
- "length": 0.0028641060648262,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1663",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 651,
- "bus2": 2319,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965774230664155, 45.73786884000859],
- [4.965846609451201, 45.73784685470286],
- [4.965911994183847, 45.73792009941256],
- [4.965883449031353, 45.73797296861514],
- [4.965578269249133, 45.73809980354573],
- [4.965639238618598, 45.73818476394621],
- [4.965721940402679, 45.73830000078299],
- [4.965840160537955, 45.73846471558547],
- [4.965879397435174, 45.73851938143104],
- [4.96591426814956, 45.73850903176411],
- [4.965905552164909, 45.73849504039023]
- ]
- },
- "length": 0.1047828220836059,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3590",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4445,
- "bus2": 307,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966916631945729, 45.73849186318009],
- [4.966934739302341, 45.73848824321975]
- ]
- },
- "length": 0.001465559166063,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4278",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5163,
- "bus2": 651,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965905552164909, 45.73849504039023],
- [4.965894046249666, 45.73847862092615],
- [4.965881287996398, 45.73848226842815],
- [4.965617501401622, 45.73810702199559],
- [4.965879600063498, 45.73799438364752]
- ]
- },
- "length": 0.0714927558180307,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line331",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 306,
- "bus2": 741,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966923846400905, 45.73856641666062],
- [4.966932457213522, 45.73858627049101]
- ]
- },
- "length": 0.0023061954219882,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line460",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 306,
- "bus2": 940,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966923846400905, 45.73856641666062],
- [4.966904058672045, 45.73857952771669],
- [4.966861332364058, 45.73858555198233]
- ]
- },
- "length": 0.0055122134429526,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3803",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 199,
- "bus2": 4679,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963785020541142, 45.73792534316028],
- [4.963773037764453, 45.73790942074913]
- ]
- },
- "length": 0.0020004079740598,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3804",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4679,
- "bus2": 330,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963773037764453, 45.73790942074913],
- [4.963677814127196, 45.73778302565311]
- ]
- },
- "length": 0.015883325342187,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line89",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 307,
- "bus2": 306,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966923846400905, 45.73856641666062],
- [4.966934739302341, 45.73848824321975]
- ]
- },
- "length": 0.008729942494233,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3906",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 741,
- "bus2": 4776,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966932457213522, 45.73858627049101],
- [4.966974236946941, 45.73868254495371]
- ]
- },
- "length": 0.0111836711773385,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line1873",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 741,
- "bus2": 2571,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966932457213522, 45.73858627049101],
- [4.966944711871314, 45.73857289490283],
- [4.966942396755723, 45.73854274867939],
- [4.967039911883393, 45.73853347790435]
- ]
- },
- "length": 0.0127807354164762,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4517",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 940,
- "bus2": 5409,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966861332364058, 45.73858555198233],
- [4.966854561154346, 45.73856061411885],
- [4.966859127692572, 45.73855744654087]
- ]
- },
- "length": 0.0005002593837252,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4518",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5409,
- "bus2": 5410,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966859127692572, 45.73855744654087],
- [4.966885408608472, 45.73853925041993],
- [4.967086714558416, 45.73851779829013],
- [4.967153198292993, 45.73851071299938],
- [4.967179562034882, 45.73852652304286]
- ]
- },
- "length": 0.0266592078044351,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3907",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4776,
- "bus2": 4080,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966974236946941, 45.73868254495371],
- [4.966976101032848, 45.73868684905409]
- ]
- },
- "length": 0.0004998988670749,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3240",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4080,
- "bus2": 4081,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966976101032848, 45.73868684905409],
- [4.966984130069958, 45.73870394401352]
- ]
- },
- "length": 0.0020001557972112,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1874",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2571,
- "bus2": 2572,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967039911883393, 45.73853347790435],
- [4.967088720798991, 45.73852884128122],
- [4.967092347593016, 45.73853774890823]
- ]
- },
- "length": 0.0048629663518772,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line102",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 330,
- "bus2": 331,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963677814127196, 45.73778302565311],
- [4.963753918031129, 45.73771465018205]
- ]
- },
- "length": 0.0096352240810242,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3241",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4081,
- "bus2": 4082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966984130069958, 45.73870394401352],
- [4.967040504754998, 45.73882396476578],
- [4.967077614525938, 45.73903553358095],
- [4.967098205301746, 45.7390806352544]
- ]
- },
- "length": 0.0429974144606054,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1875",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2572,
- "bus2": 2573,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967092347593016, 45.73853774890823],
- [4.967093600205398, 45.73854082511308]
- ]
- },
- "length": 0.0003555351492179,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1876",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2573,
- "bus2": 2574,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967093600205398, 45.73854082511308],
- [4.967096686551868, 45.73854837715886]
- ]
- },
- "length": 0.000873073871471,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3603",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2318,
- "bus2": 4459,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965749812771702, 45.73787625327925],
- [4.965740732820078, 45.73785813867644],
- [4.965833183197056, 45.73782844585855],
- [4.965707994515488, 45.73767175276756],
- [4.965586043737275, 45.73771951868912],
- [4.965523531768788, 45.73764127362278],
- [4.965520943090657, 45.73761103478463],
- [4.965485033672116, 45.73756303312003]
- ]
- },
- "length": 0.0581020815410653,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line4279",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5164,
- "bus2": 5163,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965879600063498, 45.73799438364752],
- [4.965896378940283, 45.73798717632106],
- [4.965906059884657, 45.73798800270665]
- ]
- },
- "length": 0.00229101978137,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3387",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 762,
- "bus2": 4238,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963640385938517, 45.73773252953077],
- [4.963550347283213, 45.73761321427028]
- ]
- },
- "length": 0.0149990621636114,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line346",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 331,
- "bus2": 762,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963640385938517, 45.73773252953077],
- [4.963753918031129, 45.73771465018205]
- ]
- },
- "length": 0.0090567371203615,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line877",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1408,
- "bus2": 331,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963753918031129, 45.73771465018205],
- [4.963728252376153, 45.73771370270651]
- ]
- },
- "length": 0.0020002933298367,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3844",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4719,
- "bus2": 4720,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966755152046447, 45.73918277835366],
- [4.966757041384764, 45.73918707286457]
- ]
- },
- "length": 0.0004994537193106,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4519",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5410,
- "bus2": 5411,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967179562034882, 45.73852652304286],
- [4.967184445653658, 45.73852945112759]
- ]
- },
- "length": 0.0005003748354409,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line514",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 922,
- "bus2": 1022,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962814040532729, 45.73880948751754],
- [4.962828539643373, 45.73880729390306],
- [4.962835039080114, 45.73880098470804],
- [4.962852473515341, 45.73880103581867],
- [4.962859281896754, 45.73880820381644]
- ]
- },
- "length": 0.0031783382162706,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line879",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1409,
- "bus2": 1410,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963688180820572, 45.73769912193055],
- [4.963686759093996, 45.7376973458852],
- [4.963845465167481, 45.73764717336032],
- [4.963859714633435, 45.73767153122744]
- ]
- },
- "length": 0.0167042598176257,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line878",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1409,
- "bus2": 1408,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963728252376153, 45.73771370270651],
- [4.96369901950342, 45.73771262268939],
- [4.963688180820572, 45.73769912193055]
- ]
- },
- "length": 0.0039997288262935,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line4447",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4687,
- "bus2": 5338,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964821674409172, 45.73712873182915],
- [4.964834124266964, 45.73714447216054]
- ]
- },
- "length": 0.0019998907630107,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3897",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4687,
- "bus2": 4769,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964821674409172, 45.73712873182915],
- [4.964831602864755, 45.73711213436472]
- ]
- },
- "length": 0.0020000468184538,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1743",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1022,
- "bus2": 2415,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962859281896754, 45.73880820381644],
- [4.962872412011224, 45.73881207331538],
- [4.962873076280744, 45.73882949390529],
- [4.962865287680672, 45.73883653539589],
- [4.962836266744469, 45.73883721449722]
- ]
- },
- "length": 0.0051867189317516,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line4448",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5338,
- "bus2": 5339,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964834124266964, 45.73714447216054],
- [4.964854510441288, 45.7371702704783],
- [4.965107597122434, 45.73714003876493],
- [4.96519319602257, 45.73710202739505],
- [4.965208295435371, 45.73704136284544]
- ]
- },
- "length": 0.0379922359902965,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3898",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4769,
- "bus2": 4770,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964831602864755, 45.73711213436472],
- [4.964921677602302, 45.73696166011555],
- [4.965022685148439, 45.73692328800584],
- [4.965087317927479, 45.73693077587181],
- [4.965111247117847, 45.73694731850593]
- ]
- },
- "length": 0.0347940676041285,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1744",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2415,
- "bus2": 2416,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962836266744469, 45.73883721449722],
- [4.962814051602552, 45.73883773433524]
- ]
- },
- "length": 0.0017299015909678,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2388",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2416,
- "bus2": 3161,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962814051602552, 45.73883773433524],
- [4.962814418019343, 45.7388486447235],
- [4.962867898996664, 45.73884599800154],
- [4.962877359920165, 45.73885298690654],
- [4.962883078694469, 45.73886156664981],
- [4.962892422671395, 45.7389636153791],
- [4.962888818684407, 45.73897160313579]
- ]
- },
- "length": 0.0185919906156647,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line880",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1410,
- "bus2": 1411,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963859714633435, 45.73767153122744],
- [4.963861142878668, 45.73767398223961]
- ]
- },
- "length": 0.0002942264127686,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line881",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1411,
- "bus2": 1412,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963861142878668, 45.73767398223961],
- [4.963861157007316, 45.73767400891371]
- ]
- },
- "length": 3.1620790672645624e-06,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line882",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1412,
- "bus2": 1413,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963861157007316, 45.73767400891371],
- [4.963866392190475, 45.73768295999191]
- ]
- },
- "length": 0.0010750793346875,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3388",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4238,
- "bus2": 4239,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963550347283213, 45.73761321427028],
- [4.963549619934052, 45.73761225011894]
- ]
- },
- "length": 0.000121194774666,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3389",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4239,
- "bus2": 1835,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963549619934052, 45.73761225011894],
- [4.963474814846975, 45.73751312892872]
- ]
- },
- "length": 0.0124606788020934,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3242",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4082,
- "bus2": 4083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967098205301746, 45.7390806352544],
- [4.967099842838252, 45.73908423353426]
- ]
- },
- "length": 0.0004197500645236,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3243",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4083,
- "bus2": 4084,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967099842838252, 45.73908423353426],
- [4.967227282552781, 45.73936342979869]
- ]
- },
- "length": 0.0325780757880506,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2756",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1835,
- "bus2": 3561,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963474814846975, 45.73751312892872],
- [4.963462479145761, 45.73749734977482]
- ]
- },
- "length": 0.0019993821121835,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1246",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1835,
- "bus2": 1836,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963474814846975, 45.73751312892872],
- [4.963497048017847, 45.73750411099638]
- ]
- },
- "length": 0.0019997099976804,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2389",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3161,
- "bus2": 3162,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962888818684407, 45.73897160313579],
- [4.962863535513303, 45.73897033144124]
- ]
- },
- "length": 0.001972777034415,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2757",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3561,
- "bus2": 3562,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963462479145761, 45.73749734977482],
- [4.963265346496066, 45.73724528264585]
- ]
- },
- "length": 0.0319422828269449,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1247",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1836,
- "bus2": 1837,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963497048017847, 45.73750411099638],
- [4.963510125291912, 45.73749879999892],
- [4.963301207348012, 45.73723494661714]
- ]
- },
- "length": 0.0347088808774535,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1458",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3162,
- "bus2": 2082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962863535513303, 45.73897033144124],
- [4.962863811421402, 45.73898311628438],
- [4.962886393534187, 45.73898328097514],
- [4.962888281712707, 45.73900183413399],
- [4.962866468943565, 45.73904580437819],
- [4.962861951193626, 45.73907612852811],
- [4.962847860515478, 45.7390938853876],
- [4.962825142287602, 45.73910487687795]
- ]
- },
- "length": 0.0167941126161813,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1459",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2082,
- "bus2": 2083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962825142287602, 45.73910487687795],
- [4.962799247099212, 45.73910478969897]
- ]
- },
- "length": 0.0020153568585986,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3604",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4459,
- "bus2": 4460,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965485033672116, 45.73756303312003],
- [4.96546027566689, 45.73752995597727]
- ]
- },
- "length": 0.0041507574815767,
- "params_id": "S_AL_240_bt",
- "ground": "ground"
- },
- {
- "id": "line3165",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4460,
- "bus2": 4000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96546027566689, 45.73752995597727],
- [4.965446080316029, 45.7375363465867],
- [4.965496852966263, 45.73761481266828],
- [4.965497978548156, 45.73764967660889],
- [4.965547551761585, 45.73771890809485],
- [4.965512430883249, 45.73773316122202]
- ]
- },
- "length": 0.0252178508163276,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2172",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4460,
- "bus2": 2907,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96546027566689, 45.73752995597727],
- [4.965431466504765, 45.73754366516221],
- [4.965472463724308, 45.73761905663634],
- [4.965472509552071, 45.73764477321136],
- [4.965378471563087, 45.73767863466824]
- ]
- },
- "length": 0.0200545333061928,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3244",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4084,
- "bus2": 4085,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967227282552781, 45.73936342979869],
- [4.967229191598985, 45.73936759781802]
- ]
- },
- "length": 0.0004865014431651,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line3245",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4085,
- "bus2": 4086,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.967229191598985, 45.73936759781802],
- [4.967234131662368, 45.73937842801658]
- ]
- },
- "length": 0.0012636431424746,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2826",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3562,
- "bus2": 3633,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963265346496066, 45.73724528264585],
- [4.963242634353148, 45.73725369063208]
- ]
- },
- "length": 0.0019994910941135,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2827",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3633,
- "bus2": 3634,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963242634353148, 45.73725369063208],
- [4.962982391175434, 45.73735002242246],
- [4.962946816651661, 45.73730494669624],
- [4.96288579730475, 45.73732738442268]
- ]
- },
- "length": 0.033998515467894,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line1248",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1837,
- "bus2": 1838,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963301207348012, 45.73723494661714],
- [4.963299402071233, 45.73723267545407]
- ]
- },
- "length": 0.0002888989592709,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line1249",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1838,
- "bus2": 1839,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.963299402071233, 45.73723267545407],
- [4.963298088674567, 45.73723101389017]
- ]
- },
- "length": 0.0002110792502328,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2173",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2907,
- "bus2": 2908,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965378471563087, 45.73767863466824],
- [4.965350955659803, 45.73765779229969],
- [4.965336428176132, 45.73765938380543]
- ]
- },
- "length": 0.0042991690906046,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line3166",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4000,
- "bus2": 4001,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965512430883249, 45.73773316122202],
- [4.965496973365225, 45.73772255032398]
- ]
- },
- "length": 0.0016846915662651,
- "params_id": "S_AL_150_bt",
- "ground": "ground"
- },
- {
- "id": "line2828",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3634,
- "bus2": 3259,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96288579730475, 45.73732738442268],
- [4.962834378987221, 45.73734628484756],
- [4.962682042602933, 45.73733274648558]
- ]
- },
- "length": 0.0164709967796539,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2480",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3259,
- "bus2": 3260,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962682042602933, 45.73733274648558],
- [4.96269358237546, 45.73734882339289]
- ]
- },
- "length": 0.0019999002187924,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "line2481",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3260,
- "bus2": 3261,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.96269358237546, 45.73734882339289],
- [4.962914757208745, 45.73765675998811]
- ]
- },
- "length": 0.0383109844275194,
- "params_id": "S_AL_95_bt",
- "ground": "ground"
- },
- {
- "id": "mv_line513",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 505000,
- "bus2": 873000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.934853888991207, 45.75111906308752],
- [4.934834644632761, 45.75111833830388],
- [4.934815400274816, 45.7511176135168],
- [4.934796143073234, 45.75111688902378],
- [4.934408207723045, 45.75110237305132],
- [4.934405208834641, 45.75109114554304]
- ]
- },
- "length": 0.0344979481355189,
- "params_id": "S_AL_240_SO",
- "ground": "ground"
- },
- {
- "id": "mv_line522",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 873000,
- "bus2": 740000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.934405208834641, 45.75109114554304],
- [4.934012554090829, 45.74963878116863]
- ]
- },
- "length": 0.164291047512965,
- "params_id": "S_AL_240_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line535",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 740000,
- "bus2": 1291000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.934012554090829, 45.74963878116863],
- [4.934089975267011, 45.74961898670725],
- [4.934271103007967, 45.74957267733033],
- [4.934362391718408, 45.74951109178252],
- [4.934444593253748, 45.74939484320697],
- [4.934510542332508, 45.74934830938341],
- [4.934700162559126, 45.74911618244491],
- [4.93600772006941, 45.7480804416568],
- [4.936522791471793, 45.74733488887927],
- [4.937125734895893, 45.74546568990075],
- [4.937140380788406, 45.74542028316572],
- [4.937316748689931, 45.74487348286667],
- [4.938907342243382, 45.7450139476745],
- [4.941973039404839, 45.74502744476446],
- [4.94423254711822, 45.74512080067002],
- [4.945957349084773, 45.74537956929375],
- [4.94661141421717, 45.74545347790473],
- [4.947713015293973, 45.74547556567691],
- [4.948514022793406, 45.7454218233143],
- [4.948511717973904, 45.74537326847669],
- [4.947946666883481, 45.74541439243114],
- [4.947923168242962, 45.7454139309383]
- ]
- },
- "length": 1.5369655813706598,
- "params_id": "S_AL_240_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line746",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1291000,
- "bus2": 1298000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.947923168242962, 45.7454139309383],
- [4.947925694069067, 45.74541893105686],
- [4.94794484193671, 45.74542849533407],
- [4.948542625889133, 45.74537434957136],
- [4.948544760006484, 45.74541930775377],
- [4.949076751708565, 45.74538622349836],
- [4.950342397648638, 45.74539726599526],
- [4.950783116637014, 45.74539150337244],
- [4.951100203642397, 45.74538141754201],
- [4.950552409384916, 45.74327504293316]
- ]
- },
- "length": 0.4907623183893089,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line812",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1298000,
- "bus2": 1319000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950552409384916, 45.74327504293316],
- [4.949906323306207, 45.74079051368596],
- [4.9495977722481, 45.74087151043574],
- [4.949459670739951, 45.74061638057695],
- [4.949470397586742, 45.74060376270168],
- [4.949480260064897, 45.74059216412196]
- ]
- },
- "length": 0.339788688417405,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line861",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1319000,
- "bus2": 953000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.949480260064897, 45.74059216412196],
- [4.949508035055415, 45.74058553146511],
- [4.949525960416786, 45.74059049708699],
- [4.949550034971421, 45.74059717386969],
- [4.949642047994629, 45.74074805831734],
- [4.951974042481999, 45.74017885100903],
- [4.951928161380414, 45.74010610723776],
- [4.951952004647032, 45.74009384958142],
- [4.951951711472315, 45.74009336132657]
- ]
- },
- "length": 0.2251476354568539,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line889",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 953000,
- "bus2": 954000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.951951711472315, 45.74009336132657],
- [4.95135518144123, 45.73908607705976],
- [4.950827523652318, 45.73920908836617],
- [4.950700727347117, 45.73896168111497]
- ]
- },
- "length": 0.193697358758526,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line921",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 954000,
- "bus2": 1315000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950700727347117, 45.73896168111497],
- [4.950683002753226, 45.73892710485574],
- [4.950687188982982, 45.73891022842621],
- [4.950690491372931, 45.73889693720407]
- ]
- },
- "length": 0.007486392724792,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line924",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1315000,
- "bus2": 1288000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.950690491372931, 45.73889693720407],
- [4.950711313253716, 45.73888927797029],
- [4.950728832749745, 45.738894909956],
- [4.95076690045993, 45.73890714755486],
- [4.950899600369789, 45.73912944686171],
- [4.950900983143112, 45.73913176406161],
- [4.953593777785205, 45.7384740021168],
- [4.953440535815594, 45.73822569311434],
- [4.953029680646615, 45.73755999185273],
- [4.952985755893911, 45.73755325651908],
- [4.952966927517592, 45.73755037388134]
- ]
- },
- "length": 0.369445414461516,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line994",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1288000,
- "bus2": 1287000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.952966927517592, 45.73755037388134],
- [4.952970678553071, 45.73753247231445],
- [4.953016249644159, 45.73753652280846],
- [4.953055307379572, 45.73752687170771],
- [4.953208603799049, 45.73775342303767],
- [4.953447302371143, 45.73810549028116],
- [4.953663318105447, 45.73841276308804],
- [4.953761084376749, 45.73847794111495],
- [4.953925398058722, 45.73844435905789],
- [4.953998793332333, 45.73844390760684],
- [4.954060320030075, 45.73845420174916],
- [4.954767759595066, 45.73863168464968],
- [4.955017983505683, 45.73856131467854],
- [4.955161038663632, 45.7383384463276],
- [4.955242819176544, 45.73825945760687],
- [4.955409783643996, 45.73815572513228],
- [4.955594842131863, 45.73784388552754],
- [4.955777692133985, 45.73761533480327],
- [4.955829734353092, 45.73752495050727],
- [4.95586278507185, 45.73745716233029],
- [4.955892585629407, 45.73733756484492],
- [4.955886559278371, 45.73717826937097],
- [4.955798001969372, 45.73684202052682],
- [4.955706183839841, 45.73650205808818],
- [4.955615984735573, 45.7361636781212],
- [4.955528804272737, 45.73582360739611],
- [4.955507372293894, 45.73573007698997],
- [4.955536441198181, 45.73564346050048],
- [4.955563623646242, 45.73559851135201],
- [4.955578510902217, 45.73559098066524],
- [4.955566421845806, 45.73554386044366],
- [4.955773753814144, 45.73545687330306],
- [4.955825102506913, 45.73544919373419],
- [4.955876823497322, 45.735449606879],
- [4.955910336807397, 45.73545638601512],
- [4.955986417604017, 45.73547408969552],
- [4.956017067965745, 45.73548121467279],
- [4.956043948302113, 45.73551202979766]
- ]
- },
- "length": 0.630121475715793,
- "params_id": "S_AL_240_SO",
- "ground": "ground"
- },
- {
- "id": "mv_line1076",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1287000,
- "bus2": 1286000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956043948302113, 45.73551202979766],
- [4.956031484106162, 45.7355207732151],
- [4.956016138640789, 45.73550463148617],
- [4.955974360377148, 45.73549570487705],
- [4.955888414300881, 45.73547734028486],
- [4.955812288894236, 45.73547436417319],
- [4.955759296562427, 45.73548694295187],
- [4.955591431270563, 45.73556210811316],
- [4.95560115523951, 45.73560193823433],
- [4.955575235468778, 45.73561264290327],
- [4.955533428485482, 45.73573304256136],
- [4.955623354301448, 45.73609514809851],
- [4.955702063808622, 45.73636983992795],
- [4.95579335174877, 45.73671568376572],
- [4.95587561573046, 45.73703098876224],
- [4.955900832890308, 45.73714298307286],
- [4.955918780146928, 45.73731803214995],
- [4.955880878259301, 45.7374540485829],
- [4.955818094050436, 45.73758504672529],
- [4.95571406195425, 45.73772208434256],
- [4.955612171333923, 45.73784848601255],
- [4.955488163126232, 45.73805444663595],
- [4.955430610837714, 45.73815900180517],
- [4.955424792507604, 45.73821907914153],
- [4.955448026578344, 45.738278064482],
- [4.955532854833927, 45.73834146354646],
- [4.955646676128739, 45.73837820738113],
- [4.955771405970204, 45.73837755597182],
- [4.955833239579399, 45.73836539202305],
- [4.955871376723359, 45.73835341201361],
- [4.956026723916627, 45.73843018855734],
- [4.956176351271163, 45.73874759390392],
- [4.956181431593408, 45.73878302260706],
- [4.956166703989995, 45.73883092176693],
- [4.956127443639037, 45.73891572395237],
- [4.956128112590414, 45.73894355025951],
- [4.956227263963253, 45.73907338834777],
- [4.956268709832248, 45.7391111907987],
- [4.956296113861096, 45.73912191115127],
- [4.956540133369497, 45.73917989229741]
- ]
- },
- "length": 0.5085815051709539,
- "params_id": "S_AL_240_SO",
- "ground": "ground"
- },
- {
- "id": "mv_line1119",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1286000,
- "bus2": 1285000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956540133369497, 45.73917989229741],
- [4.956686644194016, 45.73957834821236],
- [4.956784880233747, 45.73956255244881],
- [4.956790274849269, 45.73955975303269],
- [4.956805769545054, 45.73955173093524]
- ]
- },
- "length": 0.055597773628533,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1125",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1285000,
- "bus2": 1275000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956805769545054, 45.73955173093524],
- [4.956802389176359, 45.73954094492941],
- [4.956783514974541, 45.73953819900303],
- [4.956773365608019, 45.73953671664481],
- [4.956724868276837, 45.73954414996297],
- [4.956588705287621, 45.73916836158606],
- [4.956590211563276, 45.73916813738952]
- ]
- },
- "length": 0.049381536100774,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1128",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1275000,
- "bus2": 1276000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.956590211563276, 45.73916813738952],
- [4.9574004828912, 45.73904588982978],
- [4.95791271659061, 45.73897721706705],
- [4.958522714313755, 45.73893686348068],
- [4.958503536796873, 45.73884032825598],
- [4.95850242110051, 45.73883471931859],
- [4.958507278623495, 45.73882766560496]
- ]
- },
- "length": 0.1651155909781519,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1141",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1276000,
- "bus2": 929000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.958507278623495, 45.73882766560496],
- [4.95853078933913, 45.73882384877223],
- [4.958540730331404, 45.73882932354635],
- [4.958541745828243, 45.73883390864182],
- [4.958563677530362, 45.73893320602062],
- [4.958670666082522, 45.73892603465969]
- ]
- },
- "length": 0.021032388089923,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1144",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 929000,
- "bus2": 914000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.958670666082522, 45.73892603465969],
- [4.959883573875087, 45.7388447523938],
- [4.959942510917832, 45.73878666466919],
- [4.959945775117695, 45.7387863723316]
- ]
- },
- "length": 0.1030040053238849,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1150",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 914000,
- "bus2": 913000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959945775117695, 45.7387863723316],
- [4.960108931149272, 45.73877197263126],
- [4.959402413398822, 45.73805485525463],
- [4.95935517406077, 45.73798696194202]
- ]
- },
- "length": 0.118024219916963,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1157",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 913000,
- "bus2": 1282000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.95935517406077, 45.73798696194202],
- [4.959263360437473, 45.73785502868565],
- [4.959254914727904, 45.73784289385675]
- ]
- },
- "length": 0.017812660865478,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1159",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1282000,
- "bus2": 1279000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959254914727904, 45.73784289385675],
- [4.959262619023578, 45.7378381229995],
- [4.959278769029432, 45.73784548696938],
- [4.959457101250193, 45.73792677160319]
- ]
- },
- "length": 0.01806061181738,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1161",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1279000,
- "bus2": 1316000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.959457101250193, 45.73792677160319],
- [4.959539506826824, 45.73796433574488],
- [4.959767785652898, 45.73744050795777],
- [4.959828133973272, 45.73738508776525],
- [4.960704666805936, 45.73708464619889],
- [4.960720678055627, 45.73708613515478],
- [4.960739787801594, 45.73708790272099],
- [4.960749536320644, 45.73710147424123]
- ]
- },
- "length": 0.154982241719371,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1167",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1316000,
- "bus2": 1304000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960749536320644, 45.73710147424123],
- [4.960740174659695, 45.73711326920607],
- [4.96072979525635, 45.73712636619542],
- [4.959872308799626, 45.73742186194769],
- [4.959813628571298, 45.73745833980615],
- [4.959618476114199, 45.7379219828892],
- [4.959625846049425, 45.73804963341353],
- [4.960267477108633, 45.73878086860401],
- [4.960266999084436, 45.73878216700876]
- ]
- },
- "length": 0.247114507605945,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1184",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1304000,
- "bus2": 1303000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960266999084436, 45.73878216700876],
- [4.960249289102349, 45.73883080263122],
- [4.960179906024735, 45.73885852925228],
- [4.960067246898769, 45.73886836406428],
- [4.960077303420673, 45.73902537805807],
- [4.960077316709229, 45.7390256567973],
- [4.960091104079988, 45.73903468717842]
- ]
- },
- "length": 0.0396010930357249,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1186",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1303000,
- "bus2": 1283000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.960091104079988, 45.73903468717842],
- [4.96011968477193, 45.73903501825975],
- [4.960132662390182, 45.73902706352871],
- [4.960133670766166, 45.73902583374149],
- [4.960307672403199, 45.73881503520587],
- [4.960975108547744, 45.73876612412163],
- [4.962445412364442, 45.7387047284812],
- [4.962445409300398, 45.73870412544466]
- ]
- },
- "length": 0.195489447579978,
- "params_id": "S_AL_150_PU",
- "ground": "ground"
- },
- {
- "id": "mv_line1196",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1283000,
- "bus2": 1284000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962445409300398, 45.73870412544466],
- [4.962445872173599, 45.7386066001075],
- [4.962452235162686, 45.73859716156536],
- [4.962460458941739, 45.73858496099791]
- ]
- },
- "length": 0.013499202927542,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1197",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1284000,
- "bus2": 952000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962460458941739, 45.73858496099791],
- [4.962478492915574, 45.73858437702606],
- [4.962488315959219, 45.7385959933209],
- [4.962500019197009, 45.73860983403072],
- [4.962506920894191, 45.73870058887422],
- [4.962508976327063, 45.73870055878569]
- ]
- },
- "length": 0.0135495917010089,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1198",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1284000,
- "bus2": 1295000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962460458941739, 45.73858496099791],
- [4.96248306372969, 45.7385637824033],
- [4.962483662938447, 45.73856340831882],
- [4.962483200481335, 45.73855048381665],
- [4.962475676465369, 45.73834215542708]
- ]
- },
- "length": 0.0246617524093749,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1199",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 952000,
- "bus2": 923000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.962508976327063, 45.73870055878569],
- [4.964271843789176, 45.73867098248862],
- [4.964710680877293, 45.73864011135382]
- ]
- },
- "length": 0.171563703605549,
- "params_id": "S_AL_150_PU",
- "ground": "ground"
- },
- {
- "id": "mv_line1206",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 923000,
- "bus2": 922000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964710680877293, 45.73864011135382],
- [4.964923994213112, 45.7386251061686],
- [4.964922099667358, 45.73862204497594]
- ]
- },
- "length": 0.017055959863808,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1207",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 922000,
- "bus2": 1321000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964922099667358, 45.73862204497594],
- [4.964875228430449, 45.73854613373273],
- [4.965040315249011, 45.73850356051809],
- [4.965042911714355, 45.73850355371846],
- [4.965062180606872, 45.73850352551388],
- [4.965069722600271, 45.7385142048397]
- ]
- },
- "length": 0.024585707139325,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1213",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1321000,
- "bus2": 912000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965069722600271, 45.7385142048397],
- [4.965057995696578, 45.73852491237226],
- [4.965053117652362, 45.73852936540094],
- [4.964928692668426, 45.73856198475284],
- [4.964967023796365, 45.73861896752438]
- ]
- },
- "length": 0.019464487402351,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1214",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 912000,
- "bus2": 911000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.964967023796365, 45.73861896752438],
- [4.964967439090402, 45.73861958791228],
- [4.965999144972133, 45.73853954813616]
- ]
- },
- "length": 0.080862341930947,
- "params_id": "S_AL_150_PU",
- "ground": "ground"
- },
- {
- "id": "mv_line1219",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 911000,
- "bus2": 924000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.965999144972133, 45.73853954813616],
- [4.966075646839055, 45.73853361502763]
- ]
- },
- "length": 0.005990345667753,
- "params_id": "S_AL_150_S3",
- "ground": "ground"
- },
- {
- "id": "mv_line1220",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 924000,
- "bus2": 1294000,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.966075646839055, 45.73853361502763],
- [4.966446756203762, 45.73850481893744],
- [4.967412346930341, 45.73842727847661],
- [4.968632733183615, 45.73830144670887],
- [4.968602142577012, 45.73817254049829],
- [4.968622530082306, 45.73813569574117],
- [4.968629499909648, 45.7381231100194]
- ]
- },
- "length": 0.221121252329989,
- "params_id": "S_AL_150_PU",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 314,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2432.3856949832066, 279.37897303968185]
- ]
- },
- {
- "id": 47,
- "bus": 2607,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2433.179637243938, 272.3777388794874]
- ]
- },
- {
- "id": 285,
- "bus": 2607,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2381.108860594792, 569.9766431465541],
- [0.0, 0.0]
- ]
- },
- {
- "id": 175,
- "bus": 2608,
- "phases": "abcn",
- "powers": [
- [2421.252055695705, 363.44361670686527],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 10,
- "bus": 2609,
- "phases": "abcn",
- "powers": [
- [2411.4241442242223, 423.77632825362235],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 493,
- "bus": 2609,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2417.407333694204, 388.1939756579451],
- [0.0, 0.0]
- ]
- },
- {
- "id": 549,
- "bus": 929,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2363.7697401405635, 638.0794584779061],
- [0.0, 0.0]
- ]
- },
- {
- "id": 217,
- "bus": 2382,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2344.6131780238015, 705.2246629073417]
- ]
- },
- {
- "id": 422,
- "bus": 2382,
- "phases": "abcn",
- "powers": [
- [2422.2772138757127, 356.54716220180387],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 501,
- "bus": 2382,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2346.999224171061, 697.2427278043713],
- [0.0, 0.0]
- ]
- },
- {
- "id": 207,
- "bus": 2546,
- "phases": "abcn",
- "powers": [
- [2404.6433934878683, 460.69830680261157],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 223,
- "bus": 2546,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2396.4470921212837, 501.5915812681552],
- [0.0, 0.0]
- ]
- },
- {
- "id": 430,
- "bus": 2546,
- "phases": "abcn",
- "powers": [
- [2327.777886666886, 758.9485424455935],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 637,
- "bus": 2546,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2348.7344957318965, 691.3747524278559]
- ]
- },
- {
- "id": 577,
- "bus": 2596,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2439.909365920717, 203.4577740662893],
- [0.0, 0.0]
- ]
- },
- {
- "id": 672,
- "bus": 2596,
- "phases": "abcn",
- "powers": [
- [2331.524085063689, 747.3608368810686],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 216,
- "bus": 2597,
- "phases": "abcn",
- "powers": [
- [2350.3642133275666, 685.814001347839],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 5,
- "bus": 2598,
- "phases": "abcn",
- "powers": [
- [2337.4287683016405, 728.6834243013363],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 70,
- "bus": 2598,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2334.6329794111475, 737.5917781411828],
- [0.0, 0.0]
- ]
- },
- {
- "id": 345,
- "bus": 2962,
- "phases": "abcn",
- "powers": [
- [2387.448621623947, 542.8092287733876],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 136,
- "bus": 2963,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2353.1887884311063, 676.0586555453502],
- [0.0, 0.0]
- ]
- },
- {
- "id": 407,
- "bus": 2963,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2447.879014903639, 49.40757158607277],
- [0.0, 0.0]
- ]
- },
- {
- "id": 100,
- "bus": 2964,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.9950186667766, 733.2666994345574]
- ]
- },
- {
- "id": 128,
- "bus": 2964,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2351.676036404424, 681.3021352798057],
- [0.0, 0.0]
- ]
- },
- {
- "id": 299,
- "bus": 2964,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2415.8795215821624, 397.59139444357515],
- [0.0, 0.0]
- ]
- },
- {
- "id": 497,
- "bus": 3555,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2328.253019965499, 757.4897060404037],
- [0.0, 0.0]
- ]
- },
- {
- "id": 526,
- "bus": 3555,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2437.243578754593, 233.2306102447708],
- [0.0, 0.0]
- ]
- },
- {
- "id": 607,
- "bus": 3556,
- "phases": "abcn",
- "powers": [
- [2434.396168150889, 261.2816033093667],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 361,
- "bus": 3575,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2423.4216926378517, 348.68335117687093],
- [0.0, 0.0]
- ]
- },
- {
- "id": 489,
- "bus": 3575,
- "phases": "abcn",
- "powers": [
- [2374.3464039458304, 597.5214923374285],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 39,
- "bus": 3576,
- "phases": "abcn",
- "powers": [
- [2344.669365052958, 705.0378346711638],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 586,
- "bus": 3576,
- "phases": "abcn",
- "powers": [
- [2377.3532745302887, 585.4435820946015],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 611,
- "bus": 3576,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2366.592550102731, 627.5288690840432]
- ]
- },
- {
- "id": 94,
- "bus": 3577,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2384.3266178761673, 556.3626146883353]
- ]
- },
- {
- "id": 380,
- "bus": 3577,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2417.1818418777575, 389.59558908193117]
- ]
- },
- {
- "id": 119,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [2403.6070931071727, 466.0748026878647],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 214,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2353.4077282518274, 675.2961160411169],
- [0.0, 0.0]
- ]
- },
- {
- "id": 270,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2441.1626527016997, 187.82354162895567],
- [0.0, 0.0]
- ]
- },
- {
- "id": 318,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [2358.651427399194, 656.7466968043236],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 462,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2399.4602324065604, 486.9736880316005],
- [0.0, 0.0]
- ]
- },
- {
- "id": 481,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [2345.228645221082, 703.1752138479662],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 568,
- "bus": 4301,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2384.792071391344, 554.3641005373865]
- ]
- },
- {
- "id": 77,
- "bus": 4302,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2405.9539904514168, 453.804115854569]
- ]
- },
- {
- "id": 265,
- "bus": 4302,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2361.721742622243, 645.6184555610239]
- ]
- },
- {
- "id": 29,
- "bus": 5147,
- "phases": "abcn",
- "powers": [
- [2426.562854428562, 326.1065673106781],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 661,
- "bus": 5147,
- "phases": "abcn",
- "powers": [
- [2389.384184414002, 534.2246709090471],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 92,
- "bus": 5148,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2416.02682277211, 396.6953130317368]
- ]
- },
- {
- "id": 625,
- "bus": 5148,
- "phases": "abcn",
- "powers": [
- [2408.124281383738, 442.1427655697861],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 87,
- "bus": 5149,
- "phases": "abcn",
- "powers": [
- [2372.3521664824248, 605.3907646485777],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 93,
- "bus": 5150,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2364.349851343492, 635.9265367852267]
- ]
- },
- {
- "id": 529,
- "bus": 5150,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2338.6292858605343, 724.8212490339195],
- [0.0, 0.0]
- ]
- },
- {
- "id": 41,
- "bus": 5151,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2372.6761073451953, 604.1199130709851],
- [0.0, 0.0]
- ]
- },
- {
- "id": 434,
- "bus": 5151,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.8360513044254, 571.1151167188597],
- [0.0, 0.0]
- ]
- },
- {
- "id": 646,
- "bus": 5177,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2392.3307123624213, 520.870946034768]
- ]
- },
- {
- "id": 519,
- "bus": 5178,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.0933175492796, 574.2025596363261],
- [0.0, 0.0]
- ]
- },
- {
- "id": 594,
- "bus": 5178,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2392.564605713904, 519.7955244331347]
- ]
- },
- {
- "id": 19,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [2406.9098162848377, 448.70693777490595],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 58,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2419.7112944431856, 373.5639587536871]
- ]
- },
- {
- "id": 97,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2334.278394779038, 738.7131753281797]
- ]
- },
- {
- "id": 140,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2368.9456175720775, 618.5866477072499],
- [0.0, 0.0]
- ]
- },
- {
- "id": 152,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2438.678438150586, 217.71599627740528]
- ]
- },
- {
- "id": 215,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2330.8870581355213, 749.3452488352601]
- ]
- },
- {
- "id": 331,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2420.548725681698, 368.0986910277618],
- [0.0, 0.0]
- ]
- },
- {
- "id": 356,
- "bus": 5179,
- "phases": "abcn",
- "powers": [
- [2403.2247262521164, 468.04240712363236],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 106,
- "bus": 156,
- "phases": "abcn",
- "powers": [
- [2382.0615020314785, 565.9821377704243],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 171,
- "bus": 156,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2376.6941060660924, 588.1138545607836],
- [0.0, 0.0]
- ]
- },
- {
- "id": 643,
- "bus": 156,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2347.0951006057157, 696.9199153764292],
- [0.0, 0.0]
- ]
- },
- {
- "id": 124,
- "bus": 157,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2436.6166245419927, 239.69189544335896]
- ]
- },
- {
- "id": 350,
- "bus": 157,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2421.632152176491, 360.9023403646745],
- [0.0, 0.0]
- ]
- },
- {
- "id": 395,
- "bus": 157,
- "phases": "abcn",
- "powers": [
- [2418.28108248391, 382.7131900471866],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 498,
- "bus": 260,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2396.44249312855, 501.61355330918263],
- [0.0, 0.0]
- ]
- },
- {
- "id": 634,
- "bus": 260,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2342.815182816766, 711.1749425414863]
- ]
- },
- {
- "id": 582,
- "bus": 261,
- "phases": "abcn",
- "powers": [
- [2357.2886225077796, 661.6215911916864],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 57,
- "bus": 459,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2385.4531098160455, 551.5126839924912]
- ]
- },
- {
- "id": 275,
- "bus": 459,
- "phases": "abcn",
- "powers": [
- [2340.4594095332614, 718.8897913191299],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 457,
- "bus": 459,
- "phases": "abcn",
- "powers": [
- [2378.828541356629, 579.4200122214775],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 544,
- "bus": 459,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2394.38131536513, 511.36180573640195],
- [0.0, 0.0]
- ]
- },
- {
- "id": 593,
- "bus": 459,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2445.27481231421, 123.22285501216675]
- ]
- },
- {
- "id": 654,
- "bus": 671,
- "phases": "abcn",
- "powers": [
- [2363.8217250071716, 637.8868489942113],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 312,
- "bus": 809,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2356.857086472276, 663.1571862545551],
- [0.0, 0.0]
- ]
- },
- {
- "id": 524,
- "bus": 1961,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2398.685287531307, 490.7766000091022]
- ]
- },
- {
- "id": 573,
- "bus": 1961,
- "phases": "abcn",
- "powers": [
- [2425.938599168151, 330.71844944259215],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 251,
- "bus": 2042,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2353.0862850135986, 676.4153420913404],
- [0.0, 0.0]
- ]
- },
- {
- "id": 13,
- "bus": 2139,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2429.708012399468, 301.780970601978],
- [0.0, 0.0]
- ]
- },
- {
- "id": 75,
- "bus": 2139,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2378.727504630869, 579.8346647521536]
- ]
- },
- {
- "id": 448,
- "bus": 2140,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2339.9651445600243, 720.4969826306201]
- ]
- },
- {
- "id": 21,
- "bus": 2192,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2359.987918964805, 651.9277583258859],
- [0.0, 0.0]
- ]
- },
- {
- "id": 262,
- "bus": 2192,
- "phases": "abcn",
- "powers": [
- [2362.224862022134, 643.7751789096516],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 553,
- "bus": 2192,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2420.3283212243914, 369.5451220281006]
- ]
- },
- {
- "id": 3,
- "bus": 2193,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2416.630417120084, 393.0015353477039]
- ]
- },
- {
- "id": 619,
- "bus": 2193,
- "phases": "abcn",
- "powers": [
- [2366.1022892969754, 629.3748774134983],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 114,
- "bus": 2205,
- "phases": "abcn",
- "powers": [
- [2358.334323721875, 657.8844862823025],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 309,
- "bus": 2205,
- "phases": "abcn",
- "powers": [
- [2366.332896868811, 628.5072799356462],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 115,
- "bus": 2206,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2393.683720049321, 514.6173608677497]
- ]
- },
- {
- "id": 504,
- "bus": 2206,
- "phases": "abcn",
- "powers": [
- [2379.293734123972, 577.50680211929],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 441,
- "bus": 2207,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2413.1700724726534, 413.7184804404721],
- [0.0, 0.0]
- ]
- },
- {
- "id": 44,
- "bus": 2909,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2434.2735123314396, 262.42188722970695]
- ]
- },
- {
- "id": 324,
- "bus": 2909,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2441.8968165425167, 178.02448453840876],
- [0.0, 0.0]
- ]
- },
- {
- "id": 486,
- "bus": 2909,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2378.5882471563787, 580.4056600561275],
- [0.0, 0.0]
- ]
- },
- {
- "id": 143,
- "bus": 2910,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2347.818773956216, 694.4780661722697],
- [0.0, 0.0]
- ]
- },
- {
- "id": 313,
- "bus": 2910,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2431.8400862482385, 284.0890259263862],
- [0.0, 0.0]
- ]
- },
- {
- "id": 408,
- "bus": 2910,
- "phases": "abcn",
- "powers": [
- [2354.702658837464, 670.7668508501472],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 639,
- "bus": 2911,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2420.82898544707, 366.2510108586108],
- [0.0, 0.0]
- ]
- },
- {
- "id": 228,
- "bus": 2912,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2421.768043876054, 359.98933511479936]
- ]
- },
- {
- "id": 179,
- "bus": 2913,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2342.281925901524, 712.9292807359587],
- [0.0, 0.0]
- ]
- },
- {
- "id": 154,
- "bus": 3627,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2436.1414267154255, 244.47439288517413]
- ]
- },
- {
- "id": 399,
- "bus": 3627,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2371.080545228807, 610.35221616138],
- [0.0, 0.0]
- ]
- },
- {
- "id": 612,
- "bus": 3627,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2379.449800589041, 576.8634380964165],
- [0.0, 0.0]
- ]
- },
- {
- "id": 218,
- "bus": 3628,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2407.9131033974227, 443.29140102492005],
- [0.0, 0.0]
- ]
- },
- {
- "id": 266,
- "bus": 3628,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2432.2747483374987, 280.34323308294887]
- ]
- },
- {
- "id": 444,
- "bus": 3628,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2402.386949889882, 472.3237477985124],
- [0.0, 0.0]
- ]
- },
- {
- "id": 59,
- "bus": 3629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2384.1422380268355, 557.1521951783332]
- ]
- },
- {
- "id": 127,
- "bus": 3629,
- "phases": "abcn",
- "powers": [
- [2363.6953437230104, 638.3549966889924],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 659,
- "bus": 3629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2404.2815577248275, 462.5829340993052]
- ]
- },
- {
- "id": 121,
- "bus": 3630,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2445.9044692740313, 110.01866623879525]
- ]
- },
- {
- "id": 543,
- "bus": 3630,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2412.733367540999, 416.25770490156043]
- ]
- },
- {
- "id": 104,
- "bus": 3631,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2404.9801850641957, 458.936911987073]
- ]
- },
- {
- "id": 319,
- "bus": 3631,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2379.5923833200695, 576.2749942351782],
- [0.0, 0.0]
- ]
- },
- {
- "id": 388,
- "bus": 3631,
- "phases": "abcn",
- "powers": [
- [2437.314319207233, 232.49019145552435],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 601,
- "bus": 3632,
- "phases": "abcn",
- "powers": [
- [2369.0867563827105, 618.0458886423338],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 208,
- "bus": 3967,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2348.2057657826176, 693.1684220165499],
- [0.0, 0.0]
- ]
- },
- {
- "id": 605,
- "bus": 3967,
- "phases": "abcn",
- "powers": [
- [2413.6161353694456, 411.10817410981576],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 38,
- "bus": 3968,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2386.3743573684947, 547.5127452669474]
- ]
- },
- {
- "id": 552,
- "bus": 3968,
- "phases": "abcn",
- "powers": [
- [2335.405165187275, 735.1431793550424],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 579,
- "bus": 3968,
- "phases": "abcn",
- "powers": [
- [2361.0781563082614, 647.9681470100406],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 541,
- "bus": 4357,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2363.9369236235993, 637.4598033324438],
- [0.0, 0.0]
- ]
- },
- {
- "id": 590,
- "bus": 4358,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2378.505646205865, 580.7440664375864],
- [0.0, 0.0]
- ]
- },
- {
- "id": 628,
- "bus": 4358,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2408.969581674959, 437.5138104110737]
- ]
- },
- {
- "id": 363,
- "bus": 4784,
- "phases": "abcn",
- "powers": [
- [2390.9834873249956, 527.0206286995289],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 428,
- "bus": 4784,
- "phases": "abcn",
- "powers": [
- [2392.091272742834, 521.9694652019532],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 511,
- "bus": 4784,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2350.108495035974, 686.6897707810949],
- [0.0, 0.0]
- ]
- },
- {
- "id": 274,
- "bus": 4979,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2442.1495992857176, 174.52253276941764]
- ]
- },
- {
- "id": 583,
- "bus": 4979,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2441.0601088426683, 189.1515919908243]
- ]
- },
- {
- "id": 191,
- "bus": 4980,
- "phases": "abcn",
- "powers": [
- [2372.849453203246, 603.4386896518155],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 192,
- "bus": 4981,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2352.150573451028, 679.6620186163454]
- ]
- },
- {
- "id": 556,
- "bus": 4981,
- "phases": "abcn",
- "powers": [
- [2348.0976626474953, 693.5345315159251],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 632,
- "bus": 4981,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2381.037718588979, 570.2737609185908]
- ]
- },
- {
- "id": 91,
- "bus": 4982,
- "phases": "abcn",
- "powers": [
- [2362.2813414690986, 643.567901221465],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 131,
- "bus": 4982,
- "phases": "abcn",
- "powers": [
- [2431.8027622216177, 284.4083426817042],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 412,
- "bus": 4982,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2406.133506625306, 452.8513310465741],
- [0.0, 0.0]
- ]
- },
- {
- "id": 371,
- "bus": 4983,
- "phases": "abcn",
- "powers": [
- [2380.034767019346, 574.4451997491249],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 40,
- "bus": 4984,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2377.639051982852, 584.2818825034103]
- ]
- },
- {
- "id": 322,
- "bus": 4984,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2393.3917958425095, 515.9733436229154],
- [0.0, 0.0]
- ]
- },
- {
- "id": 52,
- "bus": 4985,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2442.6850723528623, 166.8604717724843]
- ]
- },
- {
- "id": 122,
- "bus": 4985,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2380.047710154057, 574.3915712526384]
- ]
- },
- {
- "id": 571,
- "bus": 4985,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.9638573613975, 570.5820621736881],
- [0.0, 0.0]
- ]
- },
- {
- "id": 222,
- "bus": 4986,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2339.192029825341, 723.0030617758442],
- [0.0, 0.0]
- ]
- },
- {
- "id": 204,
- "bus": 4987,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2438.527956512574, 219.39504334021618],
- [0.0, 0.0]
- ]
- },
- {
- "id": 294,
- "bus": 4987,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2398.803326102523, 490.1993292683268],
- [0.0, 0.0]
- ]
- },
- {
- "id": 558,
- "bus": 4987,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2379.538189714576, 576.498728034608]
- ]
- },
- {
- "id": 165,
- "bus": 106,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2336.3392766197417, 732.1690817424518]
- ]
- },
- {
- "id": 365,
- "bus": 290,
- "phases": "abcn",
- "powers": [
- [2335.6259190335977, 734.4415198462744],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 284,
- "bus": 2401,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.148059172267, 735.9594564102287]
- ]
- },
- {
- "id": 159,
- "bus": 2402,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2395.627929430475, 505.48946919624245]
- ]
- },
- {
- "id": 304,
- "bus": 2402,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2389.48967374922, 533.7526381962815],
- [0.0, 0.0]
- ]
- },
- {
- "id": 429,
- "bus": 2402,
- "phases": "abcn",
- "powers": [
- [2406.884637663093, 448.8419774453408],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 432,
- "bus": 2402,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2332.3733310950993, 744.7062670153874],
- [0.0, 0.0]
- ]
- },
- {
- "id": 494,
- "bus": 2402,
- "phases": "abcn",
- "powers": [
- [2372.503271378119, 604.7983193063359],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 132,
- "bus": 2403,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2328.9930207043503, 755.2114202301697],
- [0.0, 0.0]
- ]
- },
- {
- "id": 235,
- "bus": 2403,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2389.8303539762446, 532.2251957108213]
- ]
- },
- {
- "id": 472,
- "bus": 2405,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2411.982298153164, 420.587889901061],
- [0.0, 0.0]
- ]
- },
- {
- "id": 474,
- "bus": 2405,
- "phases": "abcn",
- "powers": [
- [2395.2870956713778, 507.10206965247124],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 618,
- "bus": 2405,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2361.9212577834915, 644.8881699690986]
- ]
- },
- {
- "id": 660,
- "bus": 2406,
- "phases": "abcn",
- "powers": [
- [2378.919347755168, 579.0470763347058],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 80,
- "bus": 2410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2380.877469719985, 570.9424260951416]
- ]
- },
- {
- "id": 247,
- "bus": 2410,
- "phases": "abcn",
- "powers": [
- [2355.505239204915, 667.9429974285529],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 139,
- "bus": 2411,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2366.1441621672707, 629.2174374390694],
- [0.0, 0.0]
- ]
- },
- {
- "id": 509,
- "bus": 2717,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2368.939938055252, 618.6083976332874],
- [0.0, 0.0]
- ]
- },
- {
- "id": 563,
- "bus": 2717,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2408.9962632454317, 437.36687506622076],
- [0.0, 0.0]
- ]
- },
- {
- "id": 51,
- "bus": 2719,
- "phases": "abcn",
- "powers": [
- [2371.732816762633, 607.8126566852908],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 169,
- "bus": 2719,
- "phases": "abcn",
- "powers": [
- [2328.9488306509243, 755.3476841464051],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 225,
- "bus": 2719,
- "phases": "abcn",
- "powers": [
- [2398.4426585305864, 491.9609674317439],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 291,
- "bus": 2719,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.0094883543757, 720.3529510921277],
- [0.0, 0.0]
- ]
- },
- {
- "id": 390,
- "bus": 3034,
- "phases": "abcn",
- "powers": [
- [2422.2427187544718, 356.7814333406223],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 650,
- "bus": 3034,
- "phases": "abcn",
- "powers": [
- [2354.939680377301, 669.9342367129025],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 424,
- "bus": 5249,
- "phases": "abcn",
- "powers": [
- [2427.5440715177315, 318.72019166466276],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 282,
- "bus": 5250,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2351.7921699267663, 680.9011449592348]
- ]
- },
- {
- "id": 674,
- "bus": 5251,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2376.9567891505153, 587.0512773573676]
- ]
- },
- {
- "id": 31,
- "bus": 54,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2433.2426445386895, 271.8142978837007]
- ]
- },
- {
- "id": 464,
- "bus": 54,
- "phases": "abcn",
- "powers": [
- [2406.3556241121187, 451.6695584601863],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 72,
- "bus": 220,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2342.156170271647, 713.342311792939]
- ]
- },
- {
- "id": 108,
- "bus": 220,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2358.4242395638394, 657.562077657592]
- ]
- },
- {
- "id": 164,
- "bus": 220,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2383.885624528723, 558.249145902567]
- ]
- },
- {
- "id": 550,
- "bus": 220,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2441.9711890934377, 177.00138805451888],
- [0.0, 0.0]
- ]
- },
- {
- "id": 415,
- "bus": 504,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.397870739917, 572.9387024041167],
- [0.0, 0.0]
- ]
- },
- {
- "id": 28,
- "bus": 522,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2365.6570309092504, 631.0464260617244]
- ]
- },
- {
- "id": 68,
- "bus": 522,
- "phases": "abcn",
- "powers": [
- [2334.649596074852, 737.5391808461262],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 176,
- "bus": 522,
- "phases": "abcn",
- "powers": [
- [2424.396929295532, 341.83667000197477],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 404,
- "bus": 851,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2333.6976613809675, 740.5457480808641]
- ]
- },
- {
- "id": 465,
- "bus": 935,
- "phases": "abcn",
- "powers": [
- [2368.8192647792903, 619.0703276253414],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 66,
- "bus": 3513,
- "phases": "abcn",
- "powers": [
- [2367.346757608022, 624.6776040314155],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 292,
- "bus": 3513,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2344.1978175357704, 706.6041126374621]
- ]
- },
- {
- "id": 396,
- "bus": 3513,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2414.6165001508375, 405.191235017447]
- ]
- },
- {
- "id": 663,
- "bus": 3513,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2441.948525597641, 177.31378419951207],
- [0.0, 0.0]
- ]
- },
- {
- "id": 138,
- "bus": 3514,
- "phases": "abcn",
- "powers": [
- [2328.8556756345433, 755.6348468674661],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 301,
- "bus": 3515,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2428.2958185165385, 312.9412045588424]
- ]
- },
- {
- "id": 257,
- "bus": 13,
- "phases": "abcn",
- "powers": [
- [2414.257521386525, 407.32468641642384],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 287,
- "bus": 13,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2412.5034423008256, 417.5882189697304],
- [0.0, 0.0]
- ]
- },
- {
- "id": 6,
- "bus": 1017,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2399.6571600459415, 486.0023600517711]
- ]
- },
- {
- "id": 289,
- "bus": 1017,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2422.4037259759275, 355.6866150329365],
- [0.0, 0.0]
- ]
- },
- {
- "id": 402,
- "bus": 1017,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2329.0221916233895, 755.1214542452282],
- [0.0, 0.0]
- ]
- },
- {
- "id": 426,
- "bus": 1017,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2420.756035335988, 366.7328688841953],
- [0.0, 0.0]
- ]
- },
- {
- "id": 98,
- "bus": 3073,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.635086958129, 718.3175964962559],
- [0.0, 0.0]
- ]
- },
- {
- "id": 168,
- "bus": 3073,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2363.9599049210588, 637.3745740624291]
- ]
- },
- {
- "id": 416,
- "bus": 3073,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2338.121583838213, 726.4573207873459],
- [0.0, 0.0]
- ]
- },
- {
- "id": 630,
- "bus": 3073,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2370.804223108987, 611.4246604645873]
- ]
- },
- {
- "id": 71,
- "bus": 3074,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2407.854211797332, 443.61117486543617],
- [0.0, 0.0]
- ]
- },
- {
- "id": 85,
- "bus": 3074,
- "phases": "abcn",
- "powers": [
- [2375.711455472058, 592.0708235291456],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 431,
- "bus": 3074,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2365.594441508625, 631.2810135265755]
- ]
- },
- {
- "id": 560,
- "bus": 3074,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2400.707109198293, 480.78909677780644],
- [0.0, 0.0]
- ]
- },
- {
- "id": 340,
- "bus": 3075,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2372.8415641020015, 603.4697104292908]
- ]
- },
- {
- "id": 56,
- "bus": 3076,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2441.8831916810227, 178.21127327233032]
- ]
- },
- {
- "id": 249,
- "bus": 3076,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2384.2414870134007, 556.727322250105]
- ]
- },
- {
- "id": 174,
- "bus": 4580,
- "phases": "abcn",
- "powers": [
- [2406.2725883809408, 452.111723075316],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 328,
- "bus": 4580,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2393.4439548393493, 515.731339728951],
- [0.0, 0.0]
- ]
- },
- {
- "id": 423,
- "bus": 4580,
- "phases": "abcn",
- "powers": [
- [2422.299678905655, 356.39450796723037],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 26,
- "bus": 4581,
- "phases": "abcn",
- "powers": [
- [2382.548079031921, 563.9303421850499],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 170,
- "bus": 4581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2400.7901766431214, 480.3741328064345],
- [0.0, 0.0]
- ]
- },
- {
- "id": 239,
- "bus": 4581,
- "phases": "abcn",
- "powers": [
- [2360.1047856681043, 651.5045513288104],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 186,
- "bus": 4582,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2359.9068470646775, 652.2211687095851]
- ]
- },
- {
- "id": 82,
- "bus": 33,
- "phases": "abcn",
- "powers": [
- [2380.206271149612, 573.7341601436195],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 129,
- "bus": 33,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2338.542582004068, 725.1009391039229]
- ]
- },
- {
- "id": 134,
- "bus": 33,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2345.4475235507384, 702.4447978349281],
- [0.0, 0.0]
- ]
- },
- {
- "id": 665,
- "bus": 338,
- "phases": "abcn",
- "powers": [
- [2403.701679329178, 465.58674436213505],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 369,
- "bus": 421,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2327.109125089608, 760.9966489153044]
- ]
- },
- {
- "id": 455,
- "bus": 421,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2442.696429148064, 166.6941353585708],
- [0.0, 0.0]
- ]
- },
- {
- "id": 492,
- "bus": 421,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2366.1270730720366, 629.2816967076051],
- [0.0, 0.0]
- ]
- },
- {
- "id": 220,
- "bus": 422,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2346.4992609137576, 698.9234566580483],
- [0.0, 0.0]
- ]
- },
- {
- "id": 209,
- "bus": 453,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2366.032848607911, 629.6358781422618],
- [0.0, 0.0]
- ]
- },
- {
- "id": 48,
- "bus": 613,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2419.237260355931, 376.62163751060984]
- ]
- },
- {
- "id": 34,
- "bus": 614,
- "phases": "abcn",
- "powers": [
- [2356.1505651011807, 665.6630486282312],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 118,
- "bus": 614,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2385.764223788198, 550.1652917332593]
- ]
- },
- {
- "id": 144,
- "bus": 614,
- "phases": "abcn",
- "powers": [
- [2339.229220381742, 722.8827250999102],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 351,
- "bus": 614,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2402.2574192379434, 472.9821047903389],
- [0.0, 0.0]
- ]
- },
- {
- "id": 45,
- "bus": 848,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2367.6026021557177, 623.7072213796454]
- ]
- },
- {
- "id": 293,
- "bus": 848,
- "phases": "abcn",
- "powers": [
- [2334.7006142463606, 737.3776654966646],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 27,
- "bus": 872,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2410.202717625317, 430.6688283207658]
- ]
- },
- {
- "id": 116,
- "bus": 926,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2400.0012915095995, 484.3000934213193],
- [0.0, 0.0]
- ]
- },
- {
- "id": 392,
- "bus": 926,
- "phases": "abcn",
- "powers": [
- [2357.4166917680686, 661.165123935722],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 483,
- "bus": 926,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2406.992494842309, 448.26321453855735],
- [0.0, 0.0]
- ]
- },
- {
- "id": 485,
- "bus": 926,
- "phases": "abcn",
- "powers": [
- [2418.377995463827, 382.1003150901686],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 2,
- "bus": 979,
- "phases": "abcn",
- "powers": [
- [2353.283910422348, 675.7274721978863],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 188,
- "bus": 979,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2335.4441273905204, 735.0193926508156],
- [0.0, 0.0]
- ]
- },
- {
- "id": 624,
- "bus": 979,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2445.9325430282083, 109.39275429024899]
- ]
- },
- {
- "id": 120,
- "bus": 1470,
- "phases": "abcn",
- "powers": [
- [2326.3927613485043, 763.1837915475708],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 419,
- "bus": 1470,
- "phases": "abcn",
- "powers": [
- [2444.4855025113866, 137.99785414019254],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 467,
- "bus": 1757,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2353.6448448808424, 674.4692164224244]
- ]
- },
- {
- "id": 636,
- "bus": 1757,
- "phases": "abcn",
- "powers": [
- [2443.544490174033, 153.7631434244524],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 414,
- "bus": 1829,
- "phases": "abcn",
- "powers": [
- [2410.4620871549378, 429.21475524998635],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 334,
- "bus": 1830,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2362.5075745295817, 642.736913539277]
- ]
- },
- {
- "id": 534,
- "bus": 1830,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2375.9997934683297, 590.9126510526731],
- [0.0, 0.0]
- ]
- },
- {
- "id": 565,
- "bus": 1830,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2387.5239755065913, 542.4776918149219],
- [0.0, 0.0]
- ]
- },
- {
- "id": 487,
- "bus": 1865,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2409.018228827568, 437.24587237861084]
- ]
- },
- {
- "id": 189,
- "bus": 1866,
- "phases": "abcn",
- "powers": [
- [2359.2217608964916, 654.694938615003],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 381,
- "bus": 1866,
- "phases": "abcn",
- "powers": [
- [2400.2749186543274, 482.9421234626425],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 357,
- "bus": 1867,
- "phases": "abcn",
- "powers": [
- [2417.377003597711, 388.382803703508],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 585,
- "bus": 1867,
- "phases": "abcn",
- "powers": [
- [2362.825293732531, 641.5679317371013],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 20,
- "bus": 2035,
- "phases": "abcn",
- "powers": [
- [2430.6657387083437, 293.96742405420565],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 326,
- "bus": 2036,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2412.314403073519, 418.6788751056074]
- ]
- },
- {
- "id": 46,
- "bus": 2915,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2345.320197065793, 702.8697980215932],
- [0.0, 0.0]
- ]
- },
- {
- "id": 362,
- "bus": 2915,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2371.846328099338, 607.369554404345],
- [0.0, 0.0]
- ]
- },
- {
- "id": 620,
- "bus": 2916,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.547209936978, 572.317884568457],
- [0.0, 0.0]
- ]
- },
- {
- "id": 50,
- "bus": 3049,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2388.106223014961, 539.9087398189263]
- ]
- },
- {
- "id": 279,
- "bus": 3049,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2447.1572192016874, 77.29375294748867]
- ]
- },
- {
- "id": 647,
- "bus": 3050,
- "phases": "abcn",
- "powers": [
- [2413.097574679349, 414.14112910007924],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 227,
- "bus": 3051,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2399.460418923006, 486.9727690102158]
- ]
- },
- {
- "id": 374,
- "bus": 3051,
- "phases": "abcn",
- "powers": [
- [2448.300893711674, 19.378172934073667],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 491,
- "bus": 3051,
- "phases": "abcn",
- "powers": [
- [2419.896771042204, 372.36057422229965],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 677,
- "bus": 3051,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2355.9363813921273, 666.420697884312],
- [0.0, 0.0]
- ]
- },
- {
- "id": 161,
- "bus": 3052,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2351.68903074522, 681.2572806277019],
- [0.0, 0.0]
- ]
- },
- {
- "id": 520,
- "bus": 3052,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2398.35964574775, 492.3655038529503],
- [0.0, 0.0]
- ]
- },
- {
- "id": 662,
- "bus": 3052,
- "phases": "abcn",
- "powers": [
- [2345.786515697846, 701.3119152743692],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 667,
- "bus": 3052,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2391.2664844701703, 525.7350853664955]
- ]
- },
- {
- "id": 280,
- "bus": 3565,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2401.984170573729, 474.36781514862423]
- ]
- },
- {
- "id": 473,
- "bus": 3567,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2368.9305957539373, 618.6441725552262],
- [0.0, 0.0]
- ]
- },
- {
- "id": 506,
- "bus": 3567,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2367.5215373677324, 624.0148634732781]
- ]
- },
- {
- "id": 562,
- "bus": 3567,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2436.6222272351165, 239.63493376264017],
- [0.0, 0.0]
- ]
- },
- {
- "id": 63,
- "bus": 4159,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2447.78377080067, 53.92022941806716],
- [0.0, 0.0]
- ]
- },
- {
- "id": 479,
- "bus": 4159,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2365.6692920980963, 631.0004597143613]
- ]
- },
- {
- "id": 103,
- "bus": 4160,
- "phases": "abcn",
- "powers": [
- [2358.474932950003, 657.3802327284579],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 146,
- "bus": 4160,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2400.1701103604864, 483.46274010287],
- [0.0, 0.0]
- ]
- },
- {
- "id": 454,
- "bus": 4160,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2364.217487322677, 636.4184569709561],
- [0.0, 0.0]
- ]
- },
- {
- "id": 30,
- "bus": 4161,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2358.7352399793263, 656.4456164948574],
- [0.0, 0.0]
- ]
- },
- {
- "id": 32,
- "bus": 4161,
- "phases": "abcn",
- "powers": [
- [2406.196768760288, 452.51507128845486],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 102,
- "bus": 4161,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2350.9638842952118, 683.7555078207522],
- [0.0, 0.0]
- ]
- },
- {
- "id": 258,
- "bus": 4161,
- "phases": "abcn",
- "powers": [
- [2416.9013691475598, 391.3317665974679],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 608,
- "bus": 4161,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2389.0513833453147, 535.7109924870712],
- [0.0, 0.0]
- ]
- },
- {
- "id": 657,
- "bus": 4162,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.037900649735, 736.3088905241622]
- ]
- },
- {
- "id": 190,
- "bus": 4574,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.8229285923103, 733.8147082186945]
- ]
- },
- {
- "id": 645,
- "bus": 4574,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2368.490117202509, 620.328416606632]
- ]
- },
- {
- "id": 339,
- "bus": 4575,
- "phases": "abcn",
- "powers": [
- [2446.0240330392407, 107.32758047254688],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 443,
- "bus": 4575,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2344.1175627283337, 706.8703076549622]
- ]
- },
- {
- "id": 243,
- "bus": 4577,
- "phases": "abcn",
- "powers": [
- [2385.6440182720967, 550.6862971040849],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 156,
- "bus": 4578,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2411.3101745990193, 424.424341444847],
- [0.0, 0.0]
- ]
- },
- {
- "id": 389,
- "bus": 4578,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2376.8241250055435, 587.5881708537677]
- ]
- },
- {
- "id": 353,
- "bus": 4854,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2431.1584089763514, 289.8647446641631]
- ]
- },
- {
- "id": 537,
- "bus": 4854,
- "phases": "abcn",
- "powers": [
- [2394.2639330836687, 511.9111236048368],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 133,
- "bus": 5080,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2424.1674285129534, 343.4604173300593],
- [0.0, 0.0]
- ]
- },
- {
- "id": 507,
- "bus": 5080,
- "phases": "abcn",
- "powers": [
- [2335.3089798381425, 735.4486715080652],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 540,
- "bus": 5080,
- "phases": "abcn",
- "powers": [
- [2397.2970202222314, 497.5135943562295],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 167,
- "bus": 5081,
- "phases": "abcn",
- "powers": [
- [2426.1491851866417, 329.17003349915944],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 12,
- "bus": 5082,
- "phases": "abcn",
- "powers": [
- [2337.312544248602, 729.0561365448965],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 242,
- "bus": 5082,
- "phases": "abcn",
- "powers": [
- [2386.471150147672, 547.090695633268],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 671,
- "bus": 5082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2331.001662525528, 748.9886708347926]
- ]
- },
- {
- "id": 79,
- "bus": 5083,
- "phases": "abcn",
- "powers": [
- [2356.398931733604, 664.7833137649997],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 394,
- "bus": 5083,
- "phases": "abcn",
- "powers": [
- [2383.2913057150054, 560.7810016743691],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 535,
- "bus": 5083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2399.1512191412803, 488.49381513848545]
- ]
- },
- {
- "id": 602,
- "bus": 5083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2347.3929167334686, 695.9161402102865]
- ]
- },
- {
- "id": 11,
- "bus": 5216,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2344.9923281480496, 703.9628972200408],
- [0.0, 0.0]
- ]
- },
- {
- "id": 231,
- "bus": 5216,
- "phases": "abcn",
- "powers": [
- [2429.9627979955235, 299.72250515003196],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 117,
- "bus": 5353,
- "phases": "abcn",
- "powers": [
- [2410.1213299270066, 431.1240596006233],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 530,
- "bus": 5353,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2336.282179879113, 732.3512515964893]
- ]
- },
- {
- "id": 372,
- "bus": 5354,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2362.5808299074824, 642.4675882013946]
- ]
- },
- {
- "id": 229,
- "bus": 5355,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2378.4002582573507, 581.1755253423977]
- ]
- },
- {
- "id": 109,
- "bus": 5356,
- "phases": "abcn",
- "powers": [
- [2433.597979537193, 268.6143215246247],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 574,
- "bus": 5356,
- "phases": "abcn",
- "powers": [
- [2376.749916199082, 587.8882679415385],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 622,
- "bus": 5357,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2331.1437736232456, 748.5462486935709],
- [0.0, 0.0]
- ]
- },
- {
- "id": 198,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2418.1982822712816, 383.2360204311011],
- [0.0, 0.0]
- ]
- },
- {
- "id": 382,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [2403.892749077417, 464.59921509690685],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 463,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [2396.7068392719143, 500.34898453267084],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 521,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.041039030063, 736.2989377834574]
- ]
- },
- {
- "id": 623,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2448.151179373397, 33.295385089980485]
- ]
- },
- {
- "id": 23,
- "bus": 295,
- "phases": "abcn",
- "powers": [
- [2408.0007956834047, 442.81480070536634],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 244,
- "bus": 295,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2367.6226017443, 623.6312976793221],
- [0.0, 0.0]
- ]
- },
- {
- "id": 598,
- "bus": 296,
- "phases": "abcn",
- "powers": [
- [2368.169036773689, 621.5530492259048],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 263,
- "bus": 532,
- "phases": "abcn",
- "powers": [
- [2362.9619614583717, 641.0643871222675],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 18,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2349.4984557393846, 688.7741184262749]
- ]
- },
- {
- "id": 55,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2355.272185483863, 668.7643172461532],
- [0.0, 0.0]
- ]
- },
- {
- "id": 233,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2435.104315971716, 254.59723107599748]
- ]
- },
- {
- "id": 435,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2398.634630505968, 491.0241226998352]
- ]
- },
- {
- "id": 503,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [2379.4204685902105, 576.9844134719641],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 649,
- "bus": 1502,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2353.410109241024, 675.2878182358951]
- ]
- },
- {
- "id": 391,
- "bus": 1504,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2387.387854377554, 543.0764333923756]
- ]
- },
- {
- "id": 635,
- "bus": 1504,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2364.4454153822053, 635.5711269509619],
- [0.0, 0.0]
- ]
- },
- {
- "id": 523,
- "bus": 1510,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2335.3520252173994, 735.3119732798016],
- [0.0, 0.0]
- ]
- },
- {
- "id": 110,
- "bus": 1511,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2345.269892456711, 703.037631476246],
- [0.0, 0.0]
- ]
- },
- {
- "id": 230,
- "bus": 1511,
- "phases": "abcn",
- "powers": [
- [2387.8978547834768, 540.8295617439131],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 410,
- "bus": 1511,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2442.180831531251, 174.08493857014594]
- ]
- },
- {
- "id": 633,
- "bus": 1511,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.3052522147123, 573.3233694998828],
- [0.0, 0.0]
- ]
- },
- {
- "id": 458,
- "bus": 1512,
- "phases": "abcn",
- "powers": [
- [2394.0689838585163, 512.8220746636168],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 569,
- "bus": 1512,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2440.333871654561, 198.30122185983737]
- ]
- },
- {
- "id": 597,
- "bus": 1531,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2417.4443615039813, 387.963321421306],
- [0.0, 0.0]
- ]
- },
- {
- "id": 224,
- "bus": 1532,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2441.2124774025497, 187.17483781147263],
- [0.0, 0.0]
- ]
- },
- {
- "id": 16,
- "bus": 1840,
- "phases": "abcn",
- "powers": [
- [2393.5388973387576, 515.2905264625074],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 211,
- "bus": 1841,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2418.018901703609, 384.3661935442762],
- [0.0, 0.0]
- ]
- },
- {
- "id": 278,
- "bus": 1841,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2437.1767895911144, 233.92750161961007],
- [0.0, 0.0]
- ]
- },
- {
- "id": 354,
- "bus": 1841,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2402.6907549523053, 470.7758657815478],
- [0.0, 0.0]
- ]
- },
- {
- "id": 343,
- "bus": 1842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2446.9592362256153, 83.32632228652766],
- [0.0, 0.0]
- ]
- },
- {
- "id": 366,
- "bus": 1842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2409.5872715883556, 434.09902134769675]
- ]
- },
- {
- "id": 446,
- "bus": 1842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2390.908875378761, 527.3590137379978]
- ]
- },
- {
- "id": 329,
- "bus": 1843,
- "phases": "abcn",
- "powers": [
- [2438.8127676169906, 216.20606893424576],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 525,
- "bus": 1843,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2397.0019776034346, 498.93316095531986],
- [0.0, 0.0]
- ]
- },
- {
- "id": 631,
- "bus": 1843,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2329.923277124354, 752.3365619519984]
- ]
- },
- {
- "id": 538,
- "bus": 2900,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2356.8077435873015, 663.3325255877143],
- [0.0, 0.0]
- ]
- },
- {
- "id": 576,
- "bus": 2900,
- "phases": "abcn",
- "powers": [
- [2371.8550912886058, 607.3353321386495],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 614,
- "bus": 2900,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2445.160851767213, 125.46389409180834],
- [0.0, 0.0]
- ]
- },
- {
- "id": 88,
- "bus": 2902,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2439.3820060551984, 209.68597537689348],
- [0.0, 0.0]
- ]
- },
- {
- "id": 206,
- "bus": 4647,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2395.050935975009, 508.21628645772194]
- ]
- },
- {
- "id": 33,
- "bus": 4648,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2382.1308315114366, 565.6902697574671]
- ]
- },
- {
- "id": 398,
- "bus": 4648,
- "phases": "abcn",
- "powers": [
- [2358.3334247835564, 657.8877087195859],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 575,
- "bus": 4648,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2371.738648196694, 607.789901516768]
- ]
- },
- {
- "id": 352,
- "bus": 4649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.79081358126, 733.9169264467472]
- ]
- },
- {
- "id": 397,
- "bus": 4649,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2370.7364735997967, 611.6872995896233]
- ]
- },
- {
- "id": 37,
- "bus": 4650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2352.8077035546526, 677.3837094509474],
- [0.0, 0.0]
- ]
- },
- {
- "id": 453,
- "bus": 4650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2415.2770473947844, 401.2350483987869],
- [0.0, 0.0]
- ]
- },
- {
- "id": 613,
- "bus": 4650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2379.790767843293, 575.45519462724]
- ]
- },
- {
- "id": 272,
- "bus": 4651,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2335.0277583056313, 736.3410539130776],
- [0.0, 0.0]
- ]
- },
- {
- "id": 311,
- "bus": 4651,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2330.451123622475, 750.6999001880773]
- ]
- },
- {
- "id": 475,
- "bus": 4651,
- "phases": "abcn",
- "powers": [
- [2343.326838192559, 709.4872156297865],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 505,
- "bus": 4651,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2335.586590355571, 734.5665787979206]
- ]
- },
- {
- "id": 297,
- "bus": 5116,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2387.2259449864127, 543.7877042738037],
- [0.0, 0.0]
- ]
- },
- {
- "id": 160,
- "bus": 5117,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2428.0224027319127, 315.0555372749299]
- ]
- },
- {
- "id": 626,
- "bus": 5117,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2388.7701174270765, 536.9637844613695],
- [0.0, 0.0]
- ]
- },
- {
- "id": 248,
- "bus": 5118,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2393.9227515653306, 513.5042738610064],
- [0.0, 0.0]
- ]
- },
- {
- "id": 308,
- "bus": 5119,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2365.2622938707896, 632.5243559964584],
- [0.0, 0.0]
- ]
- },
- {
- "id": 349,
- "bus": 5119,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2444.6997255242063, 134.149289068244]
- ]
- },
- {
- "id": 406,
- "bus": 5119,
- "phases": "abcn",
- "powers": [
- [2343.0700472538338, 710.3348037352259],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 656,
- "bus": 5119,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2334.9871816690747, 736.4697150438408]
- ]
- },
- {
- "id": 341,
- "bus": 5120,
- "phases": "abcn",
- "powers": [
- [2364.9094913870285, 633.8421548644344],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 559,
- "bus": 5120,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2408.7582928342895, 438.6755822218561],
- [0.0, 0.0]
- ]
- },
- {
- "id": 452,
- "bus": 5121,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2427.2504360718935, 320.94875030828103],
- [0.0, 0.0]
- ]
- },
- {
- "id": 193,
- "bus": 5122,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2366.4648310562848, 628.0103367854663],
- [0.0, 0.0]
- ]
- },
- {
- "id": 327,
- "bus": 5122,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2445.9591511889084, 108.7961876670207],
- [0.0, 0.0]
- ]
- },
- {
- "id": 332,
- "bus": 5122,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2440.3283431794234, 198.3692446192546],
- [0.0, 0.0]
- ]
- },
- {
- "id": 276,
- "bus": 5123,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2398.9358822552094, 489.55021454807263]
- ]
- },
- {
- "id": 500,
- "bus": 5123,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.058097243503, 720.1950300167025],
- [0.0, 0.0]
- ]
- },
- {
- "id": 592,
- "bus": 5123,
- "phases": "abcn",
- "powers": [
- [2407.2902921011605, 446.66120190940495],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 199,
- "bus": 5124,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2417.468732338021, 387.81143343595016]
- ]
- },
- {
- "id": 566,
- "bus": 5124,
- "phases": "abcn",
- "powers": [
- [2425.961611925137, 330.54959870076203],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 195,
- "bus": 5125,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2436.7280143100807, 238.55683602046759],
- [0.0, 0.0]
- ]
- },
- {
- "id": 212,
- "bus": 5125,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2428.1675603800973, 313.934831538985],
- [0.0, 0.0]
- ]
- },
- {
- "id": 433,
- "bus": 5125,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2339.8715228072024, 720.8009687088021]
- ]
- },
- {
- "id": 76,
- "bus": 5126,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2383.131338417469, 561.4604203220449],
- [0.0, 0.0]
- ]
- },
- {
- "id": 81,
- "bus": 5126,
- "phases": "abcn",
- "powers": [
- [2360.057886441528, 651.6744220704013],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 373,
- "bus": 5127,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2356.575446350795, 664.1573197610595]
- ]
- },
- {
- "id": 617,
- "bus": 5127,
- "phases": "abcn",
- "powers": [
- [2378.6731469266756, 580.057617677408],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 123,
- "bus": 64,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2327.1424558517583, 760.8947167038891]
- ]
- },
- {
- "id": 621,
- "bus": 64,
- "phases": "abcn",
- "powers": [
- [2410.3989367271024, 429.5692558371683],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 468,
- "bus": 146,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2445.2616046850058, 123.48467268837554]
- ]
- },
- {
- "id": 451,
- "bus": 147,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2434.6778094764672, 258.64404841116095],
- [0.0, 0.0]
- ]
- },
- {
- "id": 145,
- "bus": 199,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2415.1463717318206, 402.02087364497123],
- [0.0, 0.0]
- ]
- },
- {
- "id": 358,
- "bus": 199,
- "phases": "abcn",
- "powers": [
- [2419.0423075494455, 377.87179574757647],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 149,
- "bus": 306,
- "phases": "abcn",
- "powers": [
- [2389.6067683348474, 533.2281617318537],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 532,
- "bus": 307,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2390.114586892514, 530.9473055391385],
- [0.0, 0.0]
- ]
- },
- {
- "id": 629,
- "bus": 307,
- "phases": "abcn",
- "powers": [
- [2341.411640143196, 715.7823070861647],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 269,
- "bus": 330,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2348.528295932709, 692.0748680157736],
- [0.0, 0.0]
- ]
- },
- {
- "id": 347,
- "bus": 330,
- "phases": "abcn",
- "powers": [
- [2390.345044550188, 529.9088107684225],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 387,
- "bus": 330,
- "phases": "abcn",
- "powers": [
- [2396.9094776483444, 499.3773479996726],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 182,
- "bus": 331,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2425.7308851158255, 332.23854793030597]
- ]
- },
- {
- "id": 305,
- "bus": 331,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2348.1764000287894, 693.2678948887493],
- [0.0, 0.0]
- ]
- },
- {
- "id": 442,
- "bus": 345,
- "phases": "abcn",
- "powers": [
- [2436.0459314236778, 245.42412214326365],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 644,
- "bus": 345,
- "phases": "abcn",
- "powers": [
- [2425.1808217163475, 336.2302212991374],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 9,
- "bus": 398,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2360.014496730302, 651.8315387877931]
- ]
- },
- {
- "id": 561,
- "bus": 398,
- "phases": "abcn",
- "powers": [
- [2391.3317484143886, 525.4381493201905],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 240,
- "bus": 441,
- "phases": "abcn",
- "powers": [
- [2417.8311672443087, 385.54536236047153],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 436,
- "bus": 455,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2353.080574900763, 676.4352058847452]
- ]
- },
- {
- "id": 89,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2377.742804332129, 583.8595175060752],
- [0.0, 0.0]
- ]
- },
- {
- "id": 210,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2367.2751408409013, 624.9489477488021],
- [0.0, 0.0]
- ]
- },
- {
- "id": 256,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2363.4951449586324, 639.0958296629832],
- [0.0, 0.0]
- ]
- },
- {
- "id": 420,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [2407.094108051835, 447.71724862661415],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 447,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2400.0743712351486, 483.93779794086095]
- ]
- },
- {
- "id": 478,
- "bus": 461,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2345.2285691668762, 703.1754675037587],
- [0.0, 0.0]
- ]
- },
- {
- "id": 348,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [2414.399465617055, 406.48247214821464],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 105,
- "bus": 512,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2439.688084854805, 206.09422202754436],
- [0.0, 0.0]
- ]
- },
- {
- "id": 606,
- "bus": 512,
- "phases": "abcn",
- "powers": [
- [2361.8816126954684, 645.0333536699463],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 15,
- "bus": 570,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2341.239780998254, 716.3442382031784]
- ]
- },
- {
- "id": 137,
- "bus": 570,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2363.319825942631, 639.7438393936571],
- [0.0, 0.0]
- ]
- },
- {
- "id": 234,
- "bus": 570,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2344.6877070424634, 704.9768337893089]
- ]
- },
- {
- "id": 315,
- "bus": 588,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2332.594305436974, 744.0138345344428],
- [0.0, 0.0]
- ]
- },
- {
- "id": 368,
- "bus": 588,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2357.0503232615397, 662.4700395854255]
- ]
- },
- {
- "id": 522,
- "bus": 588,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2330.562538912095, 750.3539377888629],
- [0.0, 0.0]
- ]
- },
- {
- "id": 180,
- "bus": 621,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2390.979272162262, 527.039751656422]
- ]
- },
- {
- "id": 405,
- "bus": 621,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2362.9524844925186, 641.0993181764252]
- ]
- },
- {
- "id": 163,
- "bus": 650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2380.087409059438, 574.2270500180002],
- [0.0, 0.0]
- ]
- },
- {
- "id": 194,
- "bus": 650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2333.5812005581674, 740.9126535139934],
- [0.0, 0.0]
- ]
- },
- {
- "id": 370,
- "bus": 650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2408.9110671283534, 437.83587153427925],
- [0.0, 0.0]
- ]
- },
- {
- "id": 658,
- "bus": 650,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2389.2933347803073, 534.6308447050571]
- ]
- },
- {
- "id": 42,
- "bus": 651,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2356.7365368119326, 663.5854698464557]
- ]
- },
- {
- "id": 296,
- "bus": 651,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2363.1852047422058, 640.2409451317396]
- ]
- },
- {
- "id": 213,
- "bus": 741,
- "phases": "abcn",
- "powers": [
- [2417.6534124924433, 386.65844979683027],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 581,
- "bus": 741,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2401.2889459359503, 477.87464659830675],
- [0.0, 0.0]
- ]
- },
- {
- "id": 596,
- "bus": 741,
- "phases": "abcn",
- "powers": [
- [2403.7768078051567, 465.19870807397484],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 580,
- "bus": 750,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2427.70231612444, 317.5125887577884]
- ]
- },
- {
- "id": 74,
- "bus": 751,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2349.2684703422356, 689.5581440252134],
- [0.0, 0.0]
- ]
- },
- {
- "id": 342,
- "bus": 751,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2437.7797993053523, 227.55753082330713]
- ]
- },
- {
- "id": 185,
- "bus": 762,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2357.6886408887854, 660.1947079155032],
- [0.0, 0.0]
- ]
- },
- {
- "id": 271,
- "bus": 837,
- "phases": "abcn",
- "powers": [
- [2426.601177816892, 325.8212754767834],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 440,
- "bus": 873,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2378.1426407083177, 582.228786801644],
- [0.0, 0.0]
- ]
- },
- {
- "id": 604,
- "bus": 873,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2348.272970307303, 692.940716555003]
- ]
- },
- {
- "id": 655,
- "bus": 873,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2376.24778025842, 589.9146264948653]
- ]
- },
- {
- "id": 86,
- "bus": 921,
- "phases": "abcn",
- "powers": [
- [2431.808234077445, 284.36155226890713],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 393,
- "bus": 921,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2417.351660928488, 388.54050901022634],
- [0.0, 0.0]
- ]
- },
- {
- "id": 260,
- "bus": 922,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2414.661585679533, 404.9224695904741],
- [0.0, 0.0]
- ]
- },
- {
- "id": 337,
- "bus": 922,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2366.6556287964486, 627.2909328387669],
- [0.0, 0.0]
- ]
- },
- {
- "id": 375,
- "bus": 922,
- "phases": "abcn",
- "powers": [
- [2354.9971582005733, 669.7321588537234],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 202,
- "bus": 940,
- "phases": "abcn",
- "powers": [
- [2373.562164999157, 600.629193945947],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 484,
- "bus": 940,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2380.0732558936807, 574.2857096561762]
- ]
- },
- {
- "id": 551,
- "bus": 940,
- "phases": "abcn",
- "powers": [
- [2353.691847879517, 674.3051719816101],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 201,
- "bus": 1020,
- "phases": "abcn",
- "powers": [
- [2359.371136985767, 654.1564168409055],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 355,
- "bus": 1020,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2330.3534296261473, 751.0031110223825]
- ]
- },
- {
- "id": 488,
- "bus": 1020,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2407.6283220871933, 444.8355228837411]
- ]
- },
- {
- "id": 54,
- "bus": 1022,
- "phases": "abcn",
- "powers": [
- [2339.6534236012303, 721.5085842640304],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 232,
- "bus": 1022,
- "phases": "abcn",
- "powers": [
- [2379.030150899772, 578.5916702178259],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 336,
- "bus": 1022,
- "phases": "abcn",
- "powers": [
- [2380.6245333666448, 571.9961633337148],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 413,
- "bus": 1022,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2375.919791316975, 591.2342386600641]
- ]
- },
- {
- "id": 250,
- "bus": 1118,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2423.0286549483517, 351.4042074802555],
- [0.0, 0.0]
- ]
- },
- {
- "id": 267,
- "bus": 1118,
- "phases": "abcn",
- "powers": [
- [2432.7960737535077, 275.7826014547713],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 307,
- "bus": 1118,
- "phases": "abcn",
- "powers": [
- [2383.496847760633, 559.9067390653295],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 642,
- "bus": 1118,
- "phases": "abcn",
- "powers": [
- [2340.9718377847043, 717.2193767840831],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 298,
- "bus": 1119,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2335.8063034036013, 733.8676261531415],
- [0.0, 0.0]
- ]
- },
- {
- "id": 651,
- "bus": 1119,
- "phases": "abcn",
- "powers": [
- [2370.1392500426014, 613.9973250293034],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 367,
- "bus": 1409,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2343.479012936086, 708.9844114391749]
- ]
- },
- {
- "id": 615,
- "bus": 1409,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2386.8649580781284, 545.3700135085708]
- ]
- },
- {
- "id": 317,
- "bus": 1410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2380.0728603612797, 574.2873489006353]
- ]
- },
- {
- "id": 588,
- "bus": 1410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2391.581805454376, 524.298815138115]
- ]
- },
- {
- "id": 668,
- "bus": 1412,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2346.6029201254564, 698.5753466837521]
- ]
- },
- {
- "id": 183,
- "bus": 1413,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2427.636048800704, 318.0188584014307],
- [0.0, 0.0]
- ]
- },
- {
- "id": 49,
- "bus": 1583,
- "phases": "abcn",
- "powers": [
- [2432.526609581787, 278.14937248209134],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 155,
- "bus": 1583,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2407.598983835952, 444.9942839719805],
- [0.0, 0.0]
- ]
- },
- {
- "id": 333,
- "bus": 1583,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2426.4094487823054, 327.2460337354661],
- [0.0, 0.0]
- ]
- },
- {
- "id": 595,
- "bus": 1583,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2328.448005047076, 756.8901290992872]
- ]
- },
- {
- "id": 96,
- "bus": 1584,
- "phases": "abcn",
- "powers": [
- [2430.179102158646, 297.9636071184551],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 141,
- "bus": 1584,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2409.1445484128344, 436.54933809177106],
- [0.0, 0.0]
- ]
- },
- {
- "id": 330,
- "bus": 1584,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2433.60483654448, 268.55219098521314]
- ]
- },
- {
- "id": 147,
- "bus": 1585,
- "phases": "abcn",
- "powers": [
- [2373.1138952324663, 602.3978917544737],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 572,
- "bus": 1833,
- "phases": "abcn",
- "powers": [
- [2427.6945098037895, 317.5722702066126],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 166,
- "bus": 1834,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2403.4426121365204, 466.9222525239327]
- ]
- },
- {
- "id": 65,
- "bus": 1835,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.771900084168, 717.8716399970104],
- [0.0, 0.0]
- ]
- },
- {
- "id": 570,
- "bus": 1835,
- "phases": "abcn",
- "powers": [
- [2360.8557967063775, 648.7778409390528],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 316,
- "bus": 1836,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2402.180842811124, 473.37086746744615],
- [0.0, 0.0]
- ]
- },
- {
- "id": 616,
- "bus": 1836,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2424.034352882518, 344.39836785483817],
- [0.0, 0.0]
- ]
- },
- {
- "id": 638,
- "bus": 1836,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2437.7935515965996, 227.41015705038822],
- [0.0, 0.0]
- ]
- },
- {
- "id": 664,
- "bus": 1836,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2429.5169581282253, 303.31523190077274],
- [0.0, 0.0]
- ]
- },
- {
- "id": 187,
- "bus": 1837,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2402.684543170336, 470.8075676388379],
- [0.0, 0.0]
- ]
- },
- {
- "id": 261,
- "bus": 1839,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2360.6030860941314, 649.6967366845142]
- ]
- },
- {
- "id": 554,
- "bus": 1850,
- "phases": "abcn",
- "powers": [
- [2406.99133731833, 448.2694299304406],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 53,
- "bus": 1900,
- "phases": "abcn",
- "powers": [
- [2399.280826711208, 487.8568379264831],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 95,
- "bus": 1900,
- "phases": "abcn",
- "powers": [
- [2332.9218364564613, 742.9861941653137],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 254,
- "bus": 1900,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2378.048401850343, 582.613575359065],
- [0.0, 0.0]
- ]
- },
- {
- "id": 477,
- "bus": 1900,
- "phases": "abcn",
- "powers": [
- [2372.0119995182736, 606.7222213475998],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 264,
- "bus": 2082,
- "phases": "abcn",
- "powers": [
- [2359.5395872020813, 653.5485568508866],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 142,
- "bus": 2083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2440.939059951256, 190.7073290147105],
- [0.0, 0.0]
- ]
- },
- {
- "id": 150,
- "bus": 2182,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2414.030516119502, 408.6678932574173]
- ]
- },
- {
- "id": 237,
- "bus": 2182,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2382.86802809095, 562.576875135827],
- [0.0, 0.0]
- ]
- },
- {
- "id": 409,
- "bus": 2182,
- "phases": "abcn",
- "powers": [
- [2373.5362890641027, 600.7314410212371],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 62,
- "bus": 2183,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2410.411524283582, 429.4986185502165]
- ]
- },
- {
- "id": 84,
- "bus": 2183,
- "phases": "abcn",
- "powers": [
- [2444.5821376912013, 136.27527955121343],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 111,
- "bus": 2243,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2362.99251160361, 640.9517687321767]
- ]
- },
- {
- "id": 338,
- "bus": 2243,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2381.701479645899, 567.4952348594471],
- [0.0, 0.0]
- ]
- },
- {
- "id": 609,
- "bus": 2243,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2356.9690892504677, 662.7589999792264],
- [0.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 2244,
- "phases": "abcn",
- "powers": [
- [2398.246133529897, 492.91810957251585],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 125,
- "bus": 2244,
- "phases": "abcn",
- "powers": [
- [2428.1288888651025, 314.2337963911075],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 200,
- "bus": 2244,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2435.8677608173057, 247.18622847264498]
- ]
- },
- {
- "id": 184,
- "bus": 2318,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2435.793912342715, 247.91288052421723],
- [0.0, 0.0]
- ]
- },
- {
- "id": 60,
- "bus": 2319,
- "phases": "abcn",
- "powers": [
- [2358.4066374661134, 657.6252063990742],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 83,
- "bus": 2319,
- "phases": "abcn",
- "powers": [
- [2332.1516686586506, 745.4001436197316],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 255,
- "bus": 2319,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2369.0269524955397, 618.2750828598386],
- [0.0, 0.0]
- ]
- },
- {
- "id": 323,
- "bus": 2415,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2337.36926800349, 728.8742585168397],
- [0.0, 0.0]
- ]
- },
- {
- "id": 450,
- "bus": 2415,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2431.9113011847962, 283.47875212318127]
- ]
- },
- {
- "id": 653,
- "bus": 2415,
- "phases": "abcn",
- "powers": [
- [2400.8727346570845, 479.9613439808012],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 666,
- "bus": 2415,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2341.2819092854465, 716.2065351477454],
- [0.0, 0.0]
- ]
- },
- {
- "id": 43,
- "bus": 2416,
- "phases": "abcn",
- "powers": [
- [2409.2382345889246, 436.0320042502448],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 113,
- "bus": 2416,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2440.0232319663633, 202.08762258007516],
- [0.0, 0.0]
- ]
- },
- {
- "id": 157,
- "bus": 2416,
- "phases": "abcn",
- "powers": [
- [2349.4435512067585, 688.9613773127057],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 425,
- "bus": 2416,
- "phases": "abcn",
- "powers": [
- [2397.74306185438, 495.35945440137436],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 90,
- "bus": 2493,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2413.905437831261, 409.40605386866446]
- ]
- },
- {
- "id": 246,
- "bus": 2493,
- "phases": "abcn",
- "powers": [
- [2389.2036311096454, 535.0315774121476],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 466,
- "bus": 2493,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.0228333672794, 720.3095994469418],
- [0.0, 0.0]
- ]
- },
- {
- "id": 178,
- "bus": 2571,
- "phases": "abcn",
- "powers": [
- [2438.2743528020674, 222.19576999417544],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 470,
- "bus": 2571,
- "phases": "abcn",
- "powers": [
- [2400.511176977735, 481.7664049522489],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 130,
- "bus": 2572,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2445.174738759432, 125.19295774278942],
- [0.0, 0.0]
- ]
- },
- {
- "id": 181,
- "bus": 2572,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2364.801962344578, 634.2432172494069]
- ]
- },
- {
- "id": 7,
- "bus": 2573,
- "phases": "abcn",
- "powers": [
- [2413.613020461002, 411.12646131909554],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 35,
- "bus": 2573,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2358.123235261657, 658.6407116590494]
- ]
- },
- {
- "id": 403,
- "bus": 2573,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2438.003304462658, 225.15032126293772],
- [0.0, 0.0]
- ]
- },
- {
- "id": 107,
- "bus": 2574,
- "phases": "abcn",
- "powers": [
- [2334.9271974207513, 736.659868922232],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 219,
- "bus": 2574,
- "phases": "abcn",
- "powers": [
- [2382.887641040005, 562.4937954452879],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 515,
- "bus": 2574,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2380.913180428599, 570.7934889231112]
- ]
- },
- {
- "id": 364,
- "bus": 2734,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2422.978047687491, 351.75298173598634]
- ]
- },
- {
- "id": 379,
- "bus": 2734,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2421.2387376237702, 363.53233028947324]
- ]
- },
- {
- "id": 516,
- "bus": 2734,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2403.7312101504854, 465.4342586060108]
- ]
- },
- {
- "id": 480,
- "bus": 2735,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2336.359047666823, 732.1059896770556]
- ]
- },
- {
- "id": 99,
- "bus": 2841,
- "phases": "abcn",
- "powers": [
- [2396.8293241491124, 499.76191394958516],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 241,
- "bus": 2841,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2407.757585615009, 444.1353269545538]
- ]
- },
- {
- "id": 295,
- "bus": 2841,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2379.7193749851326, 575.7503591453618],
- [0.0, 0.0]
- ]
- },
- {
- "id": 73,
- "bus": 2842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2383.822559268258, 558.518384352187]
- ]
- },
- {
- "id": 376,
- "bus": 2842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2396.326534225409, 502.16722424196837],
- [0.0, 0.0]
- ]
- },
- {
- "id": 527,
- "bus": 2842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2349.002766372781, 690.4627312959524]
- ]
- },
- {
- "id": 564,
- "bus": 2842,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2382.477047508263, 564.230358835783],
- [0.0, 0.0]
- ]
- },
- {
- "id": 268,
- "bus": 2843,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2383.4217498956227, 560.2263309236109],
- [0.0, 0.0]
- ]
- },
- {
- "id": 499,
- "bus": 2843,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2412.814769631595, 415.785602424226],
- [0.0, 0.0]
- ]
- },
- {
- "id": 652,
- "bus": 2843,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2383.178000975234, 561.2623231638929],
- [0.0, 0.0]
- ]
- },
- {
- "id": 197,
- "bus": 2907,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2384.3500262570215, 556.2622870766864],
- [0.0, 0.0]
- ]
- },
- {
- "id": 302,
- "bus": 2907,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2442.3528924158218, 171.6540959130125]
- ]
- },
- {
- "id": 148,
- "bus": 2908,
- "phases": "abcn",
- "powers": [
- [2357.141545736729, 662.1453866769054],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 162,
- "bus": 3107,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2406.107030630317, 452.9919832480526]
- ]
- },
- {
- "id": 253,
- "bus": 3108,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2383.894720600355, 558.2103016152607],
- [0.0, 0.0]
- ]
- },
- {
- "id": 600,
- "bus": 3108,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2418.5904880452545, 380.75297880996607]
- ]
+ "id": 505000,
+ "phase": "n"
},
{
- "id": 669,
- "bus": 3108,
- "phases": "abcn",
- "powers": [
- [2346.9168904330836, 697.5198127190012],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
+ "id": 9,
+ "phase": "n"
},
{
- "id": 126,
- "bus": 3161,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2344.0881772892344, 706.9677480822436]
- ]
+ "id": 31,
+ "phase": "n"
},
{
- "id": 36,
- "bus": 3162,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2435.86917306638, 247.1723112335915],
- [0.0, 0.0]
- ]
+ "id": 116,
+ "phase": "n"
},
{
- "id": 196,
- "bus": 3162,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2328.3497823145003, 757.1922285203831]
- ]
+ "id": 106,
+ "phase": "n"
},
{
- "id": 306,
- "bus": 3162,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2403.668335862373, 465.7588548897952],
- [0.0, 0.0]
- ]
+ "id": 54,
+ "phase": "n"
},
{
- "id": 445,
- "bus": 3162,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2413.139649120035, 413.8958970326718]
- ]
- },
- {
- "id": 335,
- "bus": 3259,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2448.243205985302, 25.651200409580643]
- ]
- },
- {
- "id": 459,
- "bus": 3259,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2394.7193520210726, 509.77642628059715]
- ]
- },
- {
- "id": 67,
- "bus": 3260,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2354.1290896836517, 672.7770870361636]
- ]
- },
- {
- "id": 346,
- "bus": 3261,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2432.426439541392, 279.0240060561653],
- [0.0, 0.0]
- ]
- },
- {
- "id": 238,
- "bus": 3482,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2365.4148678280717, 631.9535448065379],
- [0.0, 0.0]
- ]
- },
- {
- "id": 286,
- "bus": 3483,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2361.614337742736, 646.0112224285131],
- [0.0, 0.0]
- ]
- },
- {
- "id": 245,
- "bus": 3484,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2433.700456720035, 267.6842668076244]
- ]
- },
- {
- "id": 427,
- "bus": 3484,
- "phases": "abcn",
- "powers": [
- [2359.902377899678, 652.2373391021782],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 490,
- "bus": 3485,
- "phases": "abcn",
- "powers": [
- [2326.899746503968, 761.6366256000391],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 512,
- "bus": 3516,
- "phases": "abcn",
- "powers": [
- [2419.023406387009, 377.99277650166346],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 14,
- "bus": 3517,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2424.766440533589, 339.20567300343396],
- [0.0, 0.0]
- ]
- },
- {
- "id": 300,
- "bus": 3517,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2329.125053197982, 754.8041244595457],
- [0.0, 0.0]
- ]
- },
- {
- "id": 528,
- "bus": 3517,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2387.335525155523, 543.3064237297838],
- [0.0, 0.0]
- ]
- },
- {
- "id": 567,
- "bus": 3517,
- "phases": "abcn",
- "powers": [
- [2432.830618532339, 275.4776964968323],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 61,
- "bus": 3561,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2444.0149280215614, 146.0952132802628],
- [0.0, 0.0]
- ]
- },
- {
- "id": 221,
- "bus": 3561,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2413.8991887514285, 409.4428974604868]
- ]
- },
- {
- "id": 25,
- "bus": 3562,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2346.909303540475, 697.5453395233943]
- ]
- },
- {
- "id": 584,
- "bus": 3562,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2377.773075210447, 583.7362268524183]
- ]
- },
- {
- "id": 281,
- "bus": 3633,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2338.1067650535506, 726.5050137104802]
- ]
- },
- {
- "id": 533,
- "bus": 3633,
- "phases": "abcn",
- "powers": [
- [2370.506682380404, 612.57721841862],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 641,
- "bus": 3634,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2410.9150342277076, 426.66318972985596],
- [0.0, 0.0]
- ]
- },
- {
- "id": 437,
- "bus": 3961,
- "phases": "abcn",
- "powers": [
- [2414.986974579041, 402.97728515291533],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 591,
- "bus": 3961,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2355.408306520565, 668.2847367025287],
- [0.0, 0.0]
- ]
- },
- {
- "id": 277,
- "bus": 4001,
- "phases": "abcn",
- "powers": [
- [2420.91823568577, 365.6606020064821],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 482,
- "bus": 4001,
- "phases": "abcn",
- "powers": [
- [2408.465196137003, 440.28193096286606],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 502,
- "bus": 4001,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2427.814381688719, 316.65455594553845],
- [0.0, 0.0]
- ]
- },
- {
- "id": 555,
- "bus": 4001,
- "phases": "abcn",
- "powers": [
- [2399.072941901099, 488.8781025712351],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 383,
- "bus": 4018,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2408.929867353597, 437.7324227281154],
- [0.0, 0.0]
- ]
- },
- {
- "id": 205,
- "bus": 4019,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2329.259904879242, 754.3878811709448]
- ]
- },
- {
- "id": 469,
- "bus": 4019,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2408.5885944503602, 439.60637213225516]
- ]
- },
- {
- "id": 587,
- "bus": 4019,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2333.647483088375, 740.7038574294975],
- [0.0, 0.0]
- ]
- },
- {
- "id": 153,
- "bus": 4080,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2407.1698532891446, 447.3098223285084],
- [0.0, 0.0]
- ]
- },
- {
- "id": 517,
- "bus": 4080,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2431.7588357094505, 284.7836805097204],
- [0.0, 0.0]
- ]
- },
- {
- "id": 670,
- "bus": 4080,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2436.380640378068, 242.07881965714665]
- ]
- },
- {
- "id": 290,
- "bus": 4081,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2406.8999890218724, 448.75964901287057]
- ]
- },
- {
- "id": 17,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2434.3547125055384, 261.66756283063245]
- ]
- },
- {
- "id": 226,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [2338.433345651941, 725.4531464393232],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 385,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [2436.5523708525902, 240.3441778538946],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 514,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2382.7553166468742, 563.0540655449518],
- [0.0, 0.0]
- ]
- },
- {
- "id": 518,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2344.438737928651, 705.8043523775968],
- [0.0, 0.0]
- ]
- },
- {
- "id": 676,
- "bus": 4082,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2361.4199815848574, 646.7213080666329]
- ]
- },
- {
- "id": 172,
- "bus": 4083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2349.761245795569, 687.8770729519192]
- ]
- },
- {
- "id": 273,
- "bus": 4083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2332.521464847021, 744.242162043748]
- ]
- },
- {
- "id": 321,
- "bus": 4083,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2423.809793306462, 345.9752384309193]
- ]
- },
- {
- "id": 69,
- "bus": 4084,
- "phases": "abcn",
- "powers": [
- [2353.98549860815, 673.2793269351022],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 536,
- "bus": 4084,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2366.9261000332963, 626.2696038582864]
- ]
- },
- {
- "id": 589,
- "bus": 4084,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2396.355367219827, 502.02961439777056]
- ]
- },
- {
- "id": 476,
- "bus": 4085,
- "phases": "abcn",
- "powers": [
- [2337.191574769202, 729.4438446950545],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 508,
- "bus": 4085,
- "phases": "abcn",
- "powers": [
- [2390.9147494456192, 527.3323815384719],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 22,
- "bus": 4086,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2345.8706343126178, 701.0304892123878],
- [0.0, 0.0]
- ]
- },
- {
- "id": 401,
- "bus": 4127,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2339.222310446218, 722.9050850881464],
- [0.0, 0.0]
- ]
- },
- {
- "id": 1,
- "bus": 4128,
- "phases": "abcn",
- "powers": [
- [2329.0204906836007, 755.1267004361349],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 675,
- "bus": 4128,
- "phases": "abcn",
- "powers": [
- [2386.9279631140084, 545.0941924475585],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 421,
- "bus": 4238,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2399.060641062127, 488.9384626333057]
- ]
- },
- {
- "id": 673,
- "bus": 4238,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2358.35758163738, 657.8011073790722]
- ]
- },
- {
- "id": 439,
- "bus": 4239,
- "phases": "abcn",
- "powers": [
- [2333.4048802685015, 741.4677636113286],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 545,
- "bus": 4239,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2425.5078717649385, 333.86276183779677],
- [0.0, 0.0]
- ]
- },
- {
- "id": 78,
- "bus": 4444,
- "phases": "abcn",
- "powers": [
- [2333.3788376819944, 741.5497148495641],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 386,
- "bus": 4444,
- "phases": "abcn",
- "powers": [
- [2363.77791942193, 638.0491575019705],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 418,
- "bus": 4444,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2333.3711761074164, 741.5738225198729],
- [0.0, 0.0]
- ]
- },
- {
- "id": 510,
- "bus": 4444,
- "phases": "abcn",
- "powers": [
- [2354.882469708817, 670.1353099141597],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 531,
- "bus": 4444,
- "phases": "abcn",
- "powers": [
- [2330.7504372782532, 749.7700840010059],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 325,
- "bus": 4445,
- "phases": "abcn",
- "powers": [
- [2386.9692727001434, 544.9132691731716],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 610,
- "bus": 4445,
- "phases": "abcn",
- "powers": [
- [2360.984077184039, 648.3108567801996],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 64,
- "bus": 4459,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2379.5904232520707, 576.2830878159413],
- [0.0, 0.0]
- ]
- },
- {
- "id": 578,
- "bus": 4459,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2422.838632612125, 352.7119788975892],
- [0.0, 0.0]
- ]
- },
- {
- "id": 236,
- "bus": 4460,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2401.3580020449035, 477.5275130822856],
- [0.0, 0.0]
- ]
- },
- {
- "id": 344,
- "bus": 4460,
- "phases": "abcn",
- "powers": [
- [2386.596280115285, 546.5445777569557],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 112,
- "bus": 4679,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2326.916398073199, 761.5857509917666]
- ]
- },
- {
- "id": 449,
- "bus": 4686,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2433.406512808746, 270.3433430947068]
- ]
- },
- {
- "id": 513,
- "bus": 4686,
- "phases": "abcn",
- "powers": [
- [2347.6447325997347, 695.0661761532966],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 542,
- "bus": 4686,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2407.016545759767, 448.1340515675693]
- ]
- },
- {
- "id": 101,
- "bus": 4687,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2395.153148494188, 507.7343547506141]
- ]
- },
- {
- "id": 471,
- "bus": 4687,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2358.6993527843524, 656.5745524388838]
- ]
- },
- {
- "id": 539,
- "bus": 4687,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2432.8646193967916, 275.1772581863344]
- ]
- },
- {
- "id": 599,
- "bus": 4687,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2338.649116522823, 724.7572624835589]
- ]
- },
- {
- "id": 378,
- "bus": 4711,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2359.560282529193, 653.4738348598199],
- [0.0, 0.0]
- ]
- },
- {
- "id": 384,
- "bus": 4711,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2428.5869921945264, 310.6734637512321]
- ]
- },
- {
- "id": 438,
- "bus": 4711,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2362.8839488338217, 641.3518722816118]
- ]
- },
- {
- "id": 283,
- "bus": 4712,
- "phases": "abcn",
- "powers": [
- [2345.1854553843846, 703.3192444325559],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 158,
- "bus": 4720,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2408.8752056897297, 438.03313019554435],
- [0.0, 0.0]
- ]
- },
- {
- "id": 461,
- "bus": 4720,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2432.229569846803, 280.73492710825997],
- [0.0, 0.0]
- ]
- },
- {
- "id": 203,
- "bus": 4770,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2423.666390747604, 346.9783942785563]
- ]
- },
- {
- "id": 496,
- "bus": 4770,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2334.782103565117, 737.119602647829],
- [0.0, 0.0]
- ]
- },
- {
- "id": 151,
- "bus": 4776,
- "phases": "abcn",
- "powers": [
- [2370.546286368503, 612.4239413348765],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 460,
- "bus": 4776,
- "phases": "abcn",
- "powers": [
- [2376.2494344137745, 589.9079633161949],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 546,
- "bus": 4776,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2427.4389303100893, 319.5199827094614]
- ]
- },
- {
- "id": 548,
- "bus": 4776,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2388.207292585683, 539.461497584588],
- [0.0, 0.0]
- ]
- },
- {
- "id": 303,
- "bus": 4886,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2396.502211979392, 501.3281636947251],
- [0.0, 0.0]
- ]
- },
- {
- "id": 400,
- "bus": 4886,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2397.519893225855, 496.43845673147547],
- [0.0, 0.0]
- ]
- },
- {
- "id": 627,
- "bus": 5003,
- "phases": "abcn",
- "powers": [
- [2442.598111933934, 168.12865107537374],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 547,
- "bus": 5006,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2337.3991092927427, 728.7785559503906]
- ]
- },
- {
- "id": 603,
- "bus": 5006,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2446.0294873458324, 107.203203171955],
- [0.0, 0.0]
- ]
- },
- {
- "id": 678,
- "bus": 5006,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2362.3702231986263, 643.2415629296024],
- [0.0, 0.0]
- ]
- },
- {
- "id": 417,
- "bus": 5163,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2392.611602511826, 519.5791559150889],
- [0.0, 0.0]
- ]
- },
- {
- "id": 456,
- "bus": 5163,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2334.1770863943093, 739.0332259698592],
- [0.0, 0.0]
- ]
- },
- {
- "id": 259,
- "bus": 5197,
- "phases": "abcn",
- "powers": [
- [2349.406933274152, 689.0862367069802],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 252,
- "bus": 5198,
- "phases": "abcn",
- "powers": [
- [2363.4441010336245, 639.2845696753576],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 557,
- "bus": 5198,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2425.000927330475, 337.52523191900934]
- ]
- },
- {
- "id": 310,
- "bus": 5213,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2361.242001497051, 647.3708288931804],
- [0.0, 0.0]
- ]
- },
- {
- "id": 360,
- "bus": 5213,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2436.554863053378, 240.3189111713415],
- [0.0, 0.0]
- ]
- },
- {
- "id": 173,
- "bus": 5338,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2386.479800926056, 547.0529585950286],
- [0.0, 0.0]
- ]
- },
- {
- "id": 177,
- "bus": 5338,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2382.8283782000926, 562.7447909842974]
- ]
- },
- {
- "id": 411,
- "bus": 5338,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2377.2677294003274, 585.7908521711967]
- ]
- },
- {
- "id": 320,
- "bus": 5339,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2340.8235470783147, 717.7032124627434],
- [0.0, 0.0]
- ]
- },
- {
- "id": 377,
- "bus": 5409,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2328.6445230418053, 756.285306642307],
- [0.0, 0.0]
- ]
- },
- {
- "id": 648,
- "bus": 5409,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2347.270728332068, 696.3281608918943]
- ]
- },
- {
- "id": 8,
- "bus": 5410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2377.3158482888166, 585.5955406340356]
- ]
- },
- {
- "id": 24,
- "bus": 5410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [2405.290467515438, 457.3079341264571]
- ]
- },
- {
- "id": 135,
- "bus": 5410,
- "phases": "abcn",
- "powers": [
- [2372.7890309373824, 603.6762330909518],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 288,
- "bus": 5410,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2334.6724485143636, 737.4668384975622],
- [0.0, 0.0]
- ]
- },
- {
- "id": 359,
- "bus": 5411,
- "phases": "abcn",
- "powers": [
- [2380.2733330205333, 573.4558743678248],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 495,
- "bus": 5411,
- "phases": "abcn",
- "powers": [
- [2387.200257764256, 543.9004587844308],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 640,
- "bus": 5411,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [2352.2261730238474, 679.4003316728873],
- [0.0, 0.0]
- ]
- },
- {
- "id": 679,
- "bus": 1276000,
- "phases": "abcn",
- "powers": [
- [30243.243418351154, 14016.32400629604],
- [30243.243418351154, 14016.32400629604],
- [30243.243418351154, 14016.32400629604]
- ]
- },
- {
- "id": 680,
- "bus": 1315000,
- "phases": "abcn",
- "powers": [
- [30199.71010978223, 14109.876696705329],
- [30199.71010978223, 14109.876696705329],
- [30199.71010978223, 14109.876696705329]
- ]
- }
- ],
- "sources": [
- {
- "id": 505000,
- "bus": 505000,
- "phases": "abcn",
- "voltages": [
- [12008.885599144214, 0.0],
- [-6004.442799572109, -10400.000000186876],
- [-6004.442799572109, 10400.000000186876]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_PU",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001410575101461,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001410575101461,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001410575101461
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_S3",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 6.44026493985908e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 6.44026493985908e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 6.44026493985908e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.2
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 6.53451271946559e-05,
- 3.267256359732205e-05,
- 3.267256359732205e-05,
- 3.267256359733384e-05
- ],
- [
- 3.267256359732205e-05,
- 6.53451271946559e-05,
- 3.267256359732205e-05,
- 3.267256359733384e-05
- ],
- [
- 3.267256359732205e-05,
- 3.267256359732205e-05,
- 6.53451271946559e-05,
- 3.267256359733384e-05
- ],
- [
- 3.267256359733384e-05,
- 3.267256359733384e-05,
- 3.267256359733384e-05,
- 6.534512719466767e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240_S3",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 7.85398163397448e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 7.85398163397448e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 7.85398163397448e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240_SO",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001156106096521,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001156106096521,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001156106096521
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 8.570264758990977e-05,
- 4.2851323794945114e-05,
- 4.2851323794945114e-05,
- 4.285132379496466e-05
- ],
- [
- 4.2851323794945114e-05,
- 8.570264758990977e-05,
- 4.2851323794945114e-05,
- 4.285132379496466e-05
- ],
- [
- 4.2851323794945114e-05,
- 4.2851323794945114e-05,
- 8.570264758990977e-05,
- 4.285132379496466e-05
- ],
- [
- 4.285132379496466e-05,
- 4.285132379496466e-05,
- 4.285132379496466e-05,
- 8.570264758992933e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_25_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.2,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.2,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.2,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.2
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 3.707079331235956e-05,
- 1.853539665617978e-05,
- 1.853539665617978e-05,
- 1.853539665617978e-05
- ],
- [
- 1.853539665617978e-05,
- 3.707079331235956e-05,
- 1.853539665617978e-05,
- 1.853539665617978e-05
- ],
- [
- 1.853539665617978e-05,
- 1.853539665617978e-05,
- 3.707079331235956e-05,
- 1.853539665617978e-05
- ],
- [
- 1.853539665617978e-05,
- 1.853539665617978e-05,
- 1.853539665617978e-05,
- 3.707079331235956e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_35_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.8571428571428571
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 3.933274002294421e-05,
- 1.9666370011472106e-05,
- 1.9666370011472106e-05,
- 1.9666370011472102e-05
- ],
- [
- 1.9666370011472106e-05,
- 3.933274002294421e-05,
- 1.9666370011472106e-05,
- 1.9666370011472102e-05
- ],
- [
- 1.9666370011472106e-05,
- 1.9666370011472106e-05,
- 3.933274002294421e-05,
- 1.9666370011472102e-05
- ],
- [
- 1.9666370011472102e-05,
- 1.9666370011472102e-05,
- 1.9666370011472102e-05,
- 3.933274002294421e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.31578947368421
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 5.290442028645071e-05,
- 2.6452210143224647e-05,
- 2.6452210143224647e-05,
- 2.6452210143226063e-05
- ],
- [
- 2.6452210143224647e-05,
- 5.290442028645071e-05,
- 2.6452210143224647e-05,
- 2.6452210143226063e-05
- ],
- [
- 2.6452210143224647e-05,
- 2.6452210143224647e-05,
- 5.290442028645071e-05,
- 2.6452210143226063e-05
- ],
- [
- 2.6452210143226063e-05,
- 2.6452210143226063e-05,
- 2.6452210143226063e-05,
- 5.2904420286452125e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_70_bt",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.42857142857142855,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.42857142857142855,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.42857142857142855,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4285714285714285
- ]
- ],
- [
- [
- 0.06666666666666664,
- 0.03333333333333333,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.06666666666666664,
- 0.03333333333333333,
- 0.0333333333333333
- ],
- [
- 0.03333333333333333,
- 0.03333333333333333,
- 0.06666666666666664,
- 0.0333333333333333
- ],
- [
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0333333333333333,
- 0.0666666666666666
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 4.39822971502571e-05,
- 2.199114857512855e-05,
- 2.199114857512855e-05,
- 2.199114857512855e-05
- ],
- [
- 2.199114857512855e-05,
- 4.39822971502571e-05,
- 2.199114857512855e-05,
- 2.199114857512855e-05
- ],
- [
- 2.199114857512855e-05,
- 2.199114857512855e-05,
- 4.39822971502571e-05,
- 2.199114857512855e-05
- ],
- [
- 2.199114857512855e-05,
- 2.199114857512855e-05,
- 2.199114857512855e-05,
- 4.39822971502571e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "100kVA",
- "sn": 100000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.025,
- "p0": 210.0,
- "psc": 2150.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 13,
+ "phase": "n"
},
{
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 33,
+ "phase": "n"
},
{
- "id": "400kVA",
- "sn": 400000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.019,
- "p0": 930.0,
- "psc": 4600.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 17,
+ "phase": "n"
},
{
- "id": "630kVA",
- "sn": 630000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.018000000000000002,
- "p0": 1300.0,
- "psc": 6500.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 64,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95294809914324, 45.73754749124046]
+ }
+ },
+ {
+ "id": 2607,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.952945371546177, 45.73752959668326]
+ }
+ },
+ {
+ "id": 2608,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.952137678945869, 45.73757489683429]
+ }
+ },
+ {
+ "id": 2609,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.952013669787013, 45.73755036805922]
+ }
+ },
+ {
+ "id": 3997,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.952958860905261, 45.73762811051713]
+ }
+ },
+ {
+ "id": 3998,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95299984255245, 45.73763540056071]
+ }
+ },
+ {
+ "id": 31,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962468682717135, 45.7385727604298]
+ }
+ },
+ {
+ "id": 725,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96228365590198, 45.73894135774701]
+ }
+ },
+ {
+ "id": 928,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96348113017075, 45.73866878906255]
+ }
+ },
+ {
+ "id": 929,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963847991183937, 45.73859809048848]
+ }
+ },
+ {
+ "id": 2382,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963315264239038, 45.73827681599819]
+ }
+ },
+ {
+ "id": 2383,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963320276703058, 45.73827490736029]
+ }
+ },
+ {
+ "id": 2384,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963320908022739, 45.73827466754383]
+ }
+ },
+ {
+ "id": 2546,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963379363543611, 45.73866953268058]
+ }
+ },
+ {
+ "id": 2596,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962023378725025, 45.73799627314051]
+ }
+ },
+ {
+ "id": 2597,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962011674654462, 45.73798025401729]
+ }
+ },
+ {
+ "id": 2598,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961721983117246, 45.73756662819431]
+ }
+ },
+ {
+ "id": 2599,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961749094610482, 45.73755530911566]
+ }
+ },
+ {
+ "id": 2962,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96204604983626, 45.73798780336082]
+ }
+ },
+ {
+ "id": 2963,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962386088267413, 45.73786072075063]
+ }
+ },
+ {
+ "id": 2964,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962395965099435, 45.73785703304483]
+ }
+ },
+ {
+ "id": 3555,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962044899263728, 45.73745010990579]
+ }
+ },
+ {
+ "id": 3556,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962070618646461, 45.73745057041838]
+ }
+ },
+ {
+ "id": 3575,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962306221292184, 45.73889078983816]
+ }
+ },
+ {
+ "id": 3576,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962305021429685, 45.73889016079168]
+ }
+ },
+ {
+ "id": 3577,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962272135033172, 45.73886128786016]
+ }
+ },
+ {
+ "id": 4301,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962204444303315, 45.73868466650154]
+ }
+ },
+ {
+ "id": 4302,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962205665041238, 45.73870028274997]
+ }
+ },
+ {
+ "id": 5147,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962443400091122, 45.73858604424576]
+ }
+ },
+ {
+ "id": 5148,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962426037335454, 45.73863679651681]
+ }
+ },
+ {
+ "id": 5149,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962426101871827, 45.73866266565135]
+ }
+ },
+ {
+ "id": 5150,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962391466086718, 45.73869842928318]
+ }
+ },
+ {
+ "id": 5151,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962291199755762, 45.7386883168697]
+ }
+ },
+ {
+ "id": 5177,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962488351451723, 45.73858434439914]
+ }
+ },
+ {
+ "id": 5178,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962534067334214, 45.7384817455323]
+ }
+ },
+ {
+ "id": 5179,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962059173865351, 45.73804193810163]
+ }
+ },
+ {
+ "id": 116,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949490109697274, 45.74058056584027]
+ }
+ },
+ {
+ "id": 156,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950202564891636, 45.7416954746224]
+ }
+ },
+ {
+ "id": 157,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950195488412604, 45.74181716061058]
+ }
+ },
+ {
+ "id": 260,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949352369787704, 45.74090298593372]
+ }
+ },
+ {
+ "id": 261,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949359604960197, 45.74092865200017]
+ }
+ },
+ {
+ "id": 355,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949577399652404, 45.74084858066003]
+ }
+ },
+ {
+ "id": 458,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950181282916888, 45.74176168166396]
+ }
+ },
+ {
+ "id": 459,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95011990117204, 45.74174150721939]
+ }
+ },
+ {
+ "id": 671,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950162413477225, 45.74168920833736]
+ }
+ },
+ {
+ "id": 809,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948901699557921, 45.74238903979888]
+ }
+ },
+ {
+ "id": 1961,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949419516477821, 45.740886750247]
+ }
+ },
+ {
+ "id": 2042,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948747655385304, 45.74202231858337]
+ }
+ },
+ {
+ "id": 2043,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948754290464784, 45.74203724178536]
+ }
+ },
+ {
+ "id": 2139,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949406732822898, 45.74115551056487]
+ }
+ },
+ {
+ "id": 2140,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949420405824933, 45.74114510150768]
+ }
+ },
+ {
+ "id": 2192,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949444471734358, 45.74048336720885]
+ }
+ },
+ {
+ "id": 2193,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949356695302401, 45.74050535808706]
+ }
+ },
+ {
+ "id": 2205,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950206721460432, 45.74186500342928]
+ }
+ },
+ {
+ "id": 2206,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950214698930297, 45.74189897862477]
+ }
+ },
+ {
+ "id": 2207,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950243322914806, 45.74202091347151]
+ }
+ },
+ {
+ "id": 2208,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950171682347555, 45.74205055859117]
+ }
+ },
+ {
+ "id": 2531,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95014676376539, 45.74146121192071]
+ }
+ },
+ {
+ "id": 2909,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949103736628304, 45.74096308905356]
+ }
+ },
+ {
+ "id": 2910,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948824395771884, 45.74103062148168]
+ }
+ },
+ {
+ "id": 2911,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948666498708469, 45.74106879030815]
+ }
+ },
+ {
+ "id": 2912,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948362867574832, 45.7411421887841]
+ }
+ },
+ {
+ "id": 2913,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948333087920872, 45.74114938988678]
+ }
+ },
+ {
+ "id": 3627,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950284047815058, 45.74232480334145]
+ }
+ },
+ {
+ "id": 3628,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950291314624964, 45.74234083694983]
+ }
+ },
+ {
+ "id": 3629,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95040077529106, 45.74267759317598]
+ }
+ },
+ {
+ "id": 3630,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950450977745136, 45.74286052423763]
+ }
+ },
+ {
+ "id": 3631,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950449800250516, 45.74308527593394]
+ }
+ },
+ {
+ "id": 3632,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950443458289948, 45.743086008727]
+ }
+ },
+ {
+ "id": 3967,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950061390994315, 45.74126666860317]
+ }
+ },
+ {
+ "id": 3968,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950063509303619, 45.74127553983312]
+ }
+ },
+ {
+ "id": 3969,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950142006222518, 45.7416038445639]
+ }
+ },
+ {
+ "id": 4357,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949968838151226, 45.74069976250984]
+ }
+ },
+ {
+ "id": 4358,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950058223808567, 45.74093010166632]
+ }
+ },
+ {
+ "id": 4784,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95030933222711, 45.74201102286589]
+ }
+ },
+ {
+ "id": 4785,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950345628579671, 45.74199512699472]
+ }
+ },
+ {
+ "id": 4979,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950120320168629, 45.74174599824795]
+ }
+ },
+ {
+ "id": 4980,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950121576731756, 45.74175946234211]
+ }
+ },
+ {
+ "id": 4981,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949469231184263, 45.74181897439431]
+ }
+ },
+ {
+ "id": 4982,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949462402830679, 45.7418113560017]
+ }
+ },
+ {
+ "id": 4983,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949398247419865, 45.74185297848733]
+ }
+ },
+ {
+ "id": 4984,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949335012650569, 45.74186092264297]
+ }
+ },
+ {
+ "id": 4985,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948959201377501, 45.74190962828636]
+ }
+ },
+ {
+ "id": 4986,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948848153785544, 45.74193515786838]
+ }
+ },
+ {
+ "id": 4987,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948737285115905, 45.74195687551208]
+ }
+ },
+ {
+ "id": 4988,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.948687881229532, 45.74193417113748]
+ }
+ },
+ {
+ "id": 106,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956821263808188, 45.7395436998441]
+ }
+ },
+ {
+ "id": 290,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956768992915554, 45.73946458993685]
+ }
+ },
+ {
+ "id": 2401,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956728606339034, 45.73964182901081]
+ }
+ },
+ {
+ "id": 2402,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956729477860355, 45.73964447313664]
+ }
+ },
+ {
+ "id": 2403,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956763170616643, 45.73974703386555]
+ }
+ },
+ {
+ "id": 2404,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956763290472624, 45.73974739113116]
+ }
+ },
+ {
+ "id": 2405,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956788668742579, 45.73982463544426]
+ }
+ },
+ {
+ "id": 2406,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956789104077987, 45.73982594851545]
+ }
+ },
+ {
+ "id": 2407,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956794862323364, 45.73984347521288]
+ }
+ },
+ {
+ "id": 2408,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956823655746058, 45.73993115365443]
+ }
+ },
+ {
+ "id": 2409,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956824392437657, 45.73993339585589]
+ }
+ },
+ {
+ "id": 2410,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956869496855397, 45.73995486482325]
+ }
+ },
+ {
+ "id": 2411,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956873061652036, 45.73995656391332]
+ }
+ },
+ {
+ "id": 2717,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956740752516652, 45.73943765934415]
+ }
+ },
+ {
+ "id": 2718,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95674016308763, 45.73943607982265]
+ }
+ },
+ {
+ "id": 2719,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956754846985068, 45.73942155950624]
+ }
+ },
+ {
+ "id": 3034,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956709810858944, 45.73936857433193]
+ }
+ },
+ {
+ "id": 3035,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956708697918765, 45.73936490966044]
+ }
+ },
+ {
+ "id": 3036,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956719399624836, 45.73933803310992]
+ }
+ },
+ {
+ "id": 5249,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956793992755852, 45.73964107665473]
+ }
+ },
+ {
+ "id": 5250,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956795272180759, 45.73964094776769]
+ }
+ },
+ {
+ "id": 5251,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956810392422511, 45.73963937055225]
+ }
+ },
+ {
+ "id": 54,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956052315026593, 45.7355287394871]
+ }
+ },
+ {
+ "id": 220,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95615091490285, 45.73559635332465]
+ }
+ },
+ {
+ "id": 221,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956204677642744, 45.73560887080555]
+ }
+ },
+ {
+ "id": 504,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956033322551094, 45.73549107007767]
+ }
+ },
+ {
+ "id": 522,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956249667952791, 45.73536985465486]
+ }
+ },
+ {
+ "id": 851,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956701860310014, 45.73551415251796]
+ }
+ },
+ {
+ "id": 935,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956421946673418, 45.73544764843857]
+ }
+ },
+ {
+ "id": 3513,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956125443948416, 45.73586872377459]
+ }
+ },
+ {
+ "id": 3514,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956126641959938, 45.73587012706333]
+ }
+ },
+ {
+ "id": 3515,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956271120290809, 45.73596229744482]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959246469022067, 45.7378307590273]
+ }
+ },
+ {
+ "id": 1017,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959200448814673, 45.73770131122335]
+ }
+ },
+ {
+ "id": 3073,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959101179036857, 45.73775440898316]
+ }
+ },
+ {
+ "id": 3074,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959096975421994, 45.73775575843332]
+ }
+ },
+ {
+ "id": 3075,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959083641643665, 45.73776001270964]
+ }
+ },
+ {
+ "id": 3076,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95908115996522, 45.73776080883098]
+ }
+ },
+ {
+ "id": 4580,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959088866017715, 45.7377317966323]
+ }
+ },
+ {
+ "id": 4581,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959086005541451, 45.73773273662928]
+ }
+ },
+ {
+ "id": 4582,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959071057271706, 45.7377376407394]
+ }
+ },
+ {
+ "id": 33,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960105183392078, 45.73904390876906]
+ }
+ },
+ {
+ "id": 338,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960199756304963, 45.73870863853983]
+ }
+ },
+ {
+ "id": 339,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960001290873768, 45.73884393616881]
+ }
+ },
+ {
+ "id": 421,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961968644340571, 45.73876996402976]
+ }
+ },
+ {
+ "id": 422,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962163012139682, 45.73868603185797]
+ }
+ },
+ {
+ "id": 452,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96095747863722, 45.73882774732266]
+ }
+ },
+ {
+ "id": 453,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961544572899767, 45.73879241358706]
+ }
+ },
+ {
+ "id": 613,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961479027499966, 45.73865802224827]
+ }
+ },
+ {
+ "id": 614,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961398418773967, 45.73855818930203]
+ }
+ },
+ {
+ "id": 848,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960760924727571, 45.7388394635442]
+ }
+ },
+ {
+ "id": 849,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96089024310949, 45.73883175894161]
+ }
+ },
+ {
+ "id": 872,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961665400590003, 45.73828009622697]
+ }
+ },
+ {
+ "id": 926,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960916340919087, 45.73874417513907]
+ }
+ },
+ {
+ "id": 979,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960818791783983, 45.73931617700526]
+ }
+ },
+ {
+ "id": 1470,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96093602356783, 45.73876144806627]
+ }
+ },
+ {
+ "id": 1757,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960475547969224, 45.73885647863783]
+ }
+ },
+ {
+ "id": 1829,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960804607699028, 45.73933118128229]
+ }
+ },
+ {
+ "id": 1830,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960248469013997, 45.73991911622788]
+ }
+ },
+ {
+ "id": 1865,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960736612800587, 45.73866337541409]
+ }
+ },
+ {
+ "id": 1866,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960616899657214, 45.73850504564253]
+ }
+ },
+ {
+ "id": 1867,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960621839886369, 45.73849218385909]
+ }
+ },
+ {
+ "id": 2035,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960834371764742, 45.73930186921763]
+ }
+ },
+ {
+ "id": 2036,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961738822421614, 45.73928025843389]
+ }
+ },
+ {
+ "id": 2915,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960757004187017, 45.73868580772434]
+ }
+ },
+ {
+ "id": 2916,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960783074661972, 45.73867016545922]
+ }
+ },
+ {
+ "id": 3049,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959799155586835, 45.73737046237839]
+ }
+ },
+ {
+ "id": 3050,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959726093502897, 45.7372753938573]
+ }
+ },
+ {
+ "id": 3051,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959283390068452, 45.73736170490385]
+ }
+ },
+ {
+ "id": 3052,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959279701686487, 45.73736820023878]
+ }
+ },
+ {
+ "id": 3565,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959932834842134, 45.73939269895975]
+ }
+ },
+ {
+ "id": 3566,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960120329088985, 45.73944599859148]
+ }
+ },
+ {
+ "id": 3567,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960208458261459, 45.73948437369319]
+ }
+ },
+ {
+ "id": 4159,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961172370845995, 45.73823961583732]
+ }
+ },
+ {
+ "id": 4160,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961232766999241, 45.73804208532634]
+ }
+ },
+ {
+ "id": 4161,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961235967630083, 45.73803992210173]
+ }
+ },
+ {
+ "id": 4162,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961237387326696, 45.73803896173435]
+ }
+ },
+ {
+ "id": 4574,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960740549922936, 45.73708555348455]
+ }
+ },
+ {
+ "id": 4575,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960650120456335, 45.73707758610233]
+ }
+ },
+ {
+ "id": 4576,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960523291499956, 45.73712123874899]
+ }
+ },
+ {
+ "id": 4577,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960235029230575, 45.73722045155628]
+ }
+ },
+ {
+ "id": 4578,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960165846935249, 45.73724425782031]
+ }
+ },
+ {
+ "id": 4854,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.9599160787222, 45.73940634098333]
+ }
+ },
+ {
+ "id": 4855,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959672536121384, 45.73929886508697]
+ }
+ },
+ {
+ "id": 5080,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961963947167957, 45.73872566894523]
+ }
+ },
+ {
+ "id": 5081,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961963881619567, 45.73872510337682]
+ }
+ },
+ {
+ "id": 5082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961962149366898, 45.73870873395592]
+ }
+ },
+ {
+ "id": 5083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961961425705299, 45.738701918659]
+ }
+ },
+ {
+ "id": 5216,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96008019839414, 45.73903972195923]
+ }
+ },
+ {
+ "id": 5353,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959682440255655, 45.73761823205071]
+ }
+ },
+ {
+ "id": 5354,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959654271490656, 45.73767803996336]
+ }
+ },
+ {
+ "id": 5355,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959638274812121, 45.73806334042222]
+ }
+ },
+ {
+ "id": 5356,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959885624432446, 45.73834760879387]
+ }
+ },
+ {
+ "id": 5357,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960126272587628, 45.73862419295075]
+ }
+ },
+ {
+ "id": 17,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96075889797756, 45.73708967927565]
+ }
+ },
+ {
+ "id": 295,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961045955673573, 45.73736741760803]
+ }
+ },
+ {
+ "id": 296,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961254260680495, 45.73766500030121]
+ }
+ },
+ {
+ "id": 531,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961984072040853, 45.73663344835436]
+ }
+ },
+ {
+ "id": 532,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96266036706634, 45.73644749479478]
+ }
+ },
+ {
+ "id": 1502,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961982656484691, 45.7366037761511]
+ }
+ },
+ {
+ "id": 1503,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96213440083194, 45.73684960686295]
+ }
+ },
+ {
+ "id": 1504,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962126926139021, 45.73685244620967]
+ }
+ },
+ {
+ "id": 1510,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96219385396506, 45.73657448591048]
+ }
+ },
+ {
+ "id": 1511,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962286628397499, 45.73654351020274]
+ }
+ },
+ {
+ "id": 1512,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962440113013225, 45.73649225556941]
+ }
+ },
+ {
+ "id": 1531,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960935668151952, 45.73720722054048]
+ }
+ },
+ {
+ "id": 1532,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960941248158703, 45.73721532652868]
+ }
+ },
+ {
+ "id": 1840,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961317252966468, 45.73726479178624]
+ }
+ },
+ {
+ "id": 1841,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961334514238821, 45.73725825799199]
+ }
+ },
+ {
+ "id": 1842,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961339855392209, 45.73725623373556]
+ }
+ },
+ {
+ "id": 1843,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961340171264948, 45.73725611832876]
+ }
+ },
+ {
+ "id": 2900,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962478496234752, 45.73659513708291]
+ }
+ },
+ {
+ "id": 2901,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962546991911733, 45.73678516075339]
+ }
+ },
+ {
+ "id": 2902,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962546801938095, 45.73678575930509]
+ }
+ },
+ {
+ "id": 2903,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962545568380995, 45.73678954184167]
+ }
+ },
+ {
+ "id": 4647,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960793268398773, 45.7376150105743]
+ }
+ },
+ {
+ "id": 4648,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960622693085613, 45.7376778244415]
+ }
+ },
+ {
+ "id": 4649,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960513124055958, 45.7377181749721]
+ }
+ },
+ {
+ "id": 4650,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960508980416538, 45.73771970310602]
+ }
+ },
+ {
+ "id": 4651,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96050743912461, 45.7377202702363]
+ }
+ },
+ {
+ "id": 5116,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960849440960156, 45.73704179794322]
+ }
+ },
+ {
+ "id": 5117,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96086667443794, 45.73703575995913]
+ }
+ },
+ {
+ "id": 5118,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961136695199635, 45.73694116682628]
+ }
+ },
+ {
+ "id": 5119,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961153928614241, 45.73693512879809]
+ }
+ },
+ {
+ "id": 5120,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961360232170545, 45.73682367990691]
+ }
+ },
+ {
+ "id": 5121,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961366461715031, 45.73681090495221]
+ }
+ },
+ {
+ "id": 5122,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961430098987583, 45.73678945101164]
+ }
+ },
+ {
+ "id": 5123,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961447470592804, 45.73678361674145]
+ }
+ },
+ {
+ "id": 5124,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961661760315602, 45.73671160557122]
+ }
+ },
+ {
+ "id": 5125,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961679131871559, 45.73670577126523]
+ }
+ },
+ {
+ "id": 5126,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961965980931708, 45.73660937818495]
+ }
+ },
+ {
+ "id": 5127,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.961968713751984, 45.73660845910157]
+ }
+ },
+ {
+ "id": 64,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965081449499382, 45.73850349730601]
+ }
+ },
+ {
+ "id": 146,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96395197494093, 45.7380834639623]
+ }
+ },
+ {
+ "id": 147,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964252163804259, 45.73847286744663]
+ }
+ },
+ {
+ "id": 198,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964264272577165, 45.73854392180715]
+ }
+ },
+ {
+ "id": 199,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963785020541142, 45.73792534316028]
+ }
+ },
+ {
+ "id": 306,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966923846400905, 45.73856641666062]
+ }
+ },
+ {
+ "id": 307,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966934739302341, 45.73848824321975]
+ }
+ },
+ {
+ "id": 330,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963677814127196, 45.73778302565311]
+ }
+ },
+ {
+ "id": 331,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963753918031129, 45.73771465018205]
+ }
+ },
+ {
+ "id": 345,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966427240851997, 45.7385284734373]
+ }
+ },
+ {
+ "id": 346,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966473521113746, 45.73852687587556]
+ }
+ },
+ {
+ "id": 398,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965466467843086, 45.73860035649596]
+ }
+ },
+ {
+ "id": 441,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964510719345298, 45.73801997295966]
+ }
+ },
+ {
+ "id": 455,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96495930499504, 45.73861077678116]
+ }
+ },
+ {
+ "id": 461,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964394554729672, 45.73869937201268]
+ }
+ },
+ {
+ "id": 511,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964320979401388, 45.73865002848635]
+ }
+ },
+ {
+ "id": 512,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963846545798926, 45.73866394418235]
+ }
+ },
+ {
+ "id": 570,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966135101225179, 45.73852254528428]
+ }
+ },
+ {
+ "id": 588,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965467951236606, 45.73867850089131]
+ }
+ },
+ {
+ "id": 621,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965922818643806, 45.73851659985056]
+ }
+ },
+ {
+ "id": 650,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965804784154678, 45.7385702243004]
+ }
+ },
+ {
+ "id": 651,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965905552164909, 45.73849504039023]
+ }
+ },
+ {
+ "id": 741,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966932457213522, 45.73858627049101]
+ }
+ },
+ {
+ "id": 750,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964070768491324, 45.73870671870665]
+ }
+ },
+ {
+ "id": 751,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964094282222768, 45.73878724583392]
+ }
+ },
+ {
+ "id": 762,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963640385938517, 45.73773252953077]
+ }
+ },
+ {
+ "id": 837,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964457257085702, 45.73890894695324]
+ }
+ },
+ {
+ "id": 873,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964289723841232, 45.73870082731759]
+ }
+ },
+ {
+ "id": 921,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963416931799182, 45.73872430139771]
+ }
+ },
+ {
+ "id": 922,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962814040532729, 45.73880948751754]
+ }
+ },
+ {
+ "id": 940,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966861332364058, 45.73858555198233]
+ }
+ },
+ {
+ "id": 1020,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963808763795043, 45.73871376144375]
+ }
+ },
+ {
+ "id": 1022,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962859281896754, 45.73880820381644]
+ }
+ },
+ {
+ "id": 1118,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963939739555462, 45.73806763749647]
+ }
+ },
+ {
+ "id": 1119,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963684793044012, 45.73773775517096]
+ }
+ },
+ {
+ "id": 1408,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963728252376153, 45.73771370270651]
+ }
+ },
+ {
+ "id": 1409,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963688180820572, 45.73769912193055]
+ }
+ },
+ {
+ "id": 1410,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963859714633435, 45.73767153122744]
+ }
+ },
+ {
+ "id": 1411,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963861142878668, 45.73767398223961]
+ }
+ },
+ {
+ "id": 1412,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963861157007316, 45.73767400891371]
+ }
+ },
+ {
+ "id": 1413,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963866392190475, 45.73768295999191]
+ }
+ },
+ {
+ "id": 1583,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96614781966638, 45.7385212931198]
+ }
+ },
+ {
+ "id": 1584,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966152771529289, 45.73852080803084]
+ }
+ },
+ {
+ "id": 1585,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966173960655363, 45.73851872728084]
+ }
+ },
+ {
+ "id": 1833,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96449895162743, 45.73800398257293]
+ }
+ },
+ {
+ "id": 1834,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964629859448765, 45.73758060440638]
+ }
+ },
+ {
+ "id": 1835,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963474814846975, 45.73751312892872]
+ }
+ },
+ {
+ "id": 1836,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963497048017847, 45.73750411099638]
+ }
+ },
+ {
+ "id": 1837,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963301207348012, 45.73723494661714]
+ }
+ },
+ {
+ "id": 1838,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963299402071233, 45.73723267545407]
+ }
+ },
+ {
+ "id": 1839,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963298088674567, 45.73723101389017]
+ }
+ },
+ {
+ "id": 1850,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964264235958905, 45.7385364243123]
+ }
+ },
+ {
+ "id": 1851,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964295208166546, 45.7384861542162]
+ }
+ },
+ {
+ "id": 1900,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965698522526376, 45.73857859169032]
+ }
+ },
+ {
+ "id": 1901,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965725056144439, 45.73857643983605]
+ }
+ },
+ {
+ "id": 2082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962825142287602, 45.73910487687795]
+ }
+ },
+ {
+ "id": 2083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962799247099212, 45.73910478969897]
+ }
+ },
+ {
+ "id": 2182,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964668772496811, 45.73761479951217]
+ }
+ },
+ {
+ "id": 2183,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964694464150002, 45.73761521506726]
+ }
+ },
+ {
+ "id": 2184,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964989303413325, 45.73802766903388]
+ }
+ },
+ {
+ "id": 2243,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965084930423785, 45.73848567357514]
+ }
+ },
+ {
+ "id": 2244,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964547700386225, 45.73801370604721]
+ }
+ },
+ {
+ "id": 2318,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965749812771702, 45.73787625327925]
+ }
+ },
+ {
+ "id": 2319,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965774230664155, 45.73786884000859]
+ }
+ },
+ {
+ "id": 2415,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962836266744469, 45.73883721449722]
+ }
+ },
+ {
+ "id": 2416,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962814051602552, 45.73883773433524]
+ }
+ },
+ {
+ "id": 2493,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963718891198381, 45.73871618029157]
+ }
+ },
+ {
+ "id": 2571,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967039911883393, 45.73853347790435]
+ }
+ },
+ {
+ "id": 2572,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967092347593016, 45.73853774890823]
+ }
+ },
+ {
+ "id": 2573,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967093600205398, 45.73854082511308]
+ }
+ },
+ {
+ "id": 2574,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967096686551868, 45.73854837715886]
+ }
+ },
+ {
+ "id": 2734,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964669006017743, 45.73759680879945]
+ }
+ },
+ {
+ "id": 2735,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964714550721385, 45.73720055297952]
+ }
+ },
+ {
+ "id": 2841,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964387501263031, 45.7388655631196]
+ }
+ },
+ {
+ "id": 2842,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964387947426963, 45.73886656085501]
+ }
+ },
+ {
+ "id": 2843,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964393383784293, 45.73887702847927]
+ }
+ },
+ {
+ "id": 2907,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965378471563087, 45.73767863466824]
+ }
+ },
+ {
+ "id": 2908,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965336428176132, 45.73765938380543]
+ }
+ },
+ {
+ "id": 3107,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964315333159959, 45.73863247249453]
+ }
+ },
+ {
+ "id": 3108,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964299275431529, 45.7385891005713]
+ }
+ },
+ {
+ "id": 3161,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962888818684407, 45.73897160313579]
+ }
+ },
+ {
+ "id": 3162,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962863535513303, 45.73897033144124]
+ }
+ },
+ {
+ "id": 3259,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962682042602933, 45.73733274648558]
+ }
+ },
+ {
+ "id": 3260,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96269358237546, 45.73734882339289]
+ }
+ },
+ {
+ "id": 3261,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962914757208745, 45.73765675998811]
+ }
+ },
+ {
+ "id": 3482,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96479321244731, 45.73862099457246]
+ }
+ },
+ {
+ "id": 3483,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964792917532347, 45.73862101048032]
+ }
+ },
+ {
+ "id": 3484,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96465439581094, 45.73862952922292]
+ }
+ },
+ {
+ "id": 3485,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964652127236736, 45.7386296723614]
+ }
+ },
+ {
+ "id": 3486,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96437914655397, 45.73864645216977]
+ }
+ },
+ {
+ "id": 3516,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963398996550705, 45.73873718842353]
+ }
+ },
+ {
+ "id": 3517,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963291659341217, 45.73917011309167]
+ }
+ },
+ {
+ "id": 3561,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963462479145761, 45.73749734977482]
+ }
+ },
+ {
+ "id": 3562,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963265346496066, 45.73724528264585]
+ }
+ },
+ {
+ "id": 3633,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963242634353148, 45.73725369063208]
+ }
+ },
+ {
+ "id": 3634,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96288579730475, 45.73732738442268]
+ }
+ },
+ {
+ "id": 3961,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965635709880166, 45.73858368177106]
+ }
+ },
+ {
+ "id": 4000,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965512430883249, 45.73773316122202]
+ }
+ },
+ {
+ "id": 4001,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965496973365225, 45.73772255032398]
+ }
+ },
+ {
+ "id": 4018,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96641420877874, 45.73851643757229]
+ }
+ },
+ {
+ "id": 4019,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966421794051887, 45.73849815754939]
+ }
+ },
+ {
+ "id": 4080,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966976101032848, 45.73868684905409]
+ }
+ },
+ {
+ "id": 4081,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966984130069958, 45.73870394401352]
+ }
+ },
+ {
+ "id": 4082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967098205301746, 45.7390806352544]
+ }
+ },
+ {
+ "id": 4083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967099842838252, 45.73908423353426]
+ }
+ },
+ {
+ "id": 4084,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967227282552781, 45.73936342979869]
+ }
+ },
+ {
+ "id": 4085,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967229191598985, 45.73936759781802]
+ }
+ },
+ {
+ "id": 4086,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967234131662368, 45.73937842801658]
+ }
+ },
+ {
+ "id": 4127,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965699320512575, 45.73855439462086]
+ }
+ },
+ {
+ "id": 4128,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965699252348427, 45.73855377510523]
+ }
+ },
+ {
+ "id": 4238,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963550347283213, 45.73761321427028]
+ }
+ },
+ {
+ "id": 4239,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963549619934052, 45.73761225011894]
+ }
+ },
+ {
+ "id": 4444,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966880551612587, 45.73849680452578]
+ }
+ },
+ {
+ "id": 4445,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966916631945729, 45.73849186318009]
+ }
+ },
+ {
+ "id": 4459,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965485033672116, 45.73756303312003]
+ }
+ },
+ {
+ "id": 4460,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96546027566689, 45.73752995597727]
+ }
+ },
+ {
+ "id": 4679,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963773037764453, 45.73790942074913]
+ }
+ },
+ {
+ "id": 4686,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964618117042615, 45.73756460444032]
+ }
+ },
+ {
+ "id": 4687,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964821674409172, 45.73712873182915]
+ }
+ },
+ {
+ "id": 4711,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965147952614935, 45.73855656162601]
+ }
+ },
+ {
+ "id": 4712,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965194158703693, 45.73854856617363]
+ }
+ },
+ {
+ "id": 4719,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966755152046447, 45.73918277835366]
+ }
+ },
+ {
+ "id": 4720,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966757041384764, 45.73918707286457]
+ }
+ },
+ {
+ "id": 4769,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964831602864755, 45.73711213436472]
+ }
+ },
+ {
+ "id": 4770,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965111247117847, 45.73694731850593]
+ }
+ },
+ {
+ "id": 4776,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966974236946941, 45.73868254495371]
+ }
+ },
+ {
+ "id": 4886,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964444177119184, 45.73786241837054]
+ }
+ },
+ {
+ "id": 5001,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965878812489984, 45.73856444829248]
+ }
+ },
+ {
+ "id": 5002,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966068033230046, 45.73854969028852]
+ }
+ },
+ {
+ "id": 5003,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966131857231558, 45.73854451325678]
+ }
+ },
+ {
+ "id": 5004,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966144611671658, 45.73854347628841]
+ }
+ },
+ {
+ "id": 5005,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966221190525608, 45.73853727122765]
+ }
+ },
+ {
+ "id": 5006,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96638249761217, 45.73853210533971]
+ }
+ },
+ {
+ "id": 5163,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965879600063498, 45.73799438364752]
+ }
+ },
+ {
+ "id": 5164,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965906059884657, 45.73798800270665]
+ }
+ },
+ {
+ "id": 5197,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963807861265371, 45.73869027933681]
+ }
+ },
+ {
+ "id": 5198,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.963806843225488, 45.73866410844905]
+ }
+ },
+ {
+ "id": 5213,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.96436059502179, 45.73869892492372]
+ }
+ },
+ {
+ "id": 5338,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964834124266964, 45.73714447216054]
+ }
+ },
+ {
+ "id": 5339,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965208295435371, 45.73704136284544]
+ }
+ },
+ {
+ "id": 5409,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966859127692572, 45.73855744654087]
+ }
+ },
+ {
+ "id": 5410,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967179562034882, 45.73852652304286]
+ }
+ },
+ {
+ "id": 5411,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.967184445653658, 45.73852945112759]
+ }
+ },
+ {
+ "id": 505000,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.934853888991207, 45.75111906308752]
+ }
+ },
+ {
+ "id": 740000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.934012554090829, 45.74963878116863]
+ }
+ },
+ {
+ "id": 873000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.934405208834641, 45.75109114554304]
+ }
+ },
+ {
+ "id": 911000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965999144972133, 45.73853954813616]
+ }
+ },
+ {
+ "id": 912000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964967023796365, 45.73861896752438]
+ }
+ },
+ {
+ "id": 913000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.95935517406077, 45.73798696194202]
+ }
+ },
+ {
+ "id": 914000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959945775117695, 45.7387863723316]
+ }
+ },
+ {
+ "id": 922000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964922099667358, 45.73862204497594]
+ }
+ },
+ {
+ "id": 923000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.964710680877293, 45.73864011135382]
+ }
+ },
+ {
+ "id": 924000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.966075646839055, 45.73853361502763]
+ }
+ },
+ {
+ "id": 929000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.958670666082522, 45.73892603465969]
+ }
+ },
+ {
+ "id": 952000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962508976327063, 45.73870055878569]
+ }
+ },
+ {
+ "id": 953000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.951951711472315, 45.74009336132657]
+ }
+ },
+ {
+ "id": 954000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950700727347117, 45.73896168111497]
+ }
+ },
+ {
+ "id": 1275000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956590211563276, 45.73916813738952]
+ }
+ },
+ {
+ "id": 1276000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.958507278623495, 45.73882766560496]
+ }
+ },
+ {
+ "id": 1279000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959457101250193, 45.73792677160319]
+ }
+ },
+ {
+ "id": 1282000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.959254914727904, 45.73784289385675]
+ }
+ },
+ {
+ "id": 1283000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962445409300398, 45.73870412544466]
+ }
+ },
+ {
+ "id": 1284000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962460458941739, 45.73858496099791]
+ }
+ },
+ {
+ "id": 1285000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956805769545054, 45.73955173093524]
+ }
+ },
+ {
+ "id": 1286000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956540133369497, 45.73917989229741]
+ }
+ },
+ {
+ "id": 1287000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.956043948302113, 45.73551202979766]
+ }
+ },
+ {
+ "id": 1288000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.952966927517592, 45.73755037388134]
+ }
+ },
+ {
+ "id": 1291000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.947923168242962, 45.7454139309383]
+ }
+ },
+ {
+ "id": 1294000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.968629499909648, 45.7381231100194]
+ }
+ },
+ {
+ "id": 1295000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.962475676465369, 45.73834215542708]
+ }
+ },
+ {
+ "id": 1298000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950552409384916, 45.74327504293316]
+ }
+ },
+ {
+ "id": 1303000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960091104079988, 45.73903468717842]
+ }
+ },
+ {
+ "id": 1304000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960266999084436, 45.73878216700876]
+ }
+ },
+ {
+ "id": 1315000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.950690491372931, 45.73889693720407]
+ }
+ },
+ {
+ "id": 1316000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.960749536320644, 45.73710147424123]
+ }
+ },
+ {
+ "id": 1319000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.949480260064897, 45.74059216412196]
+ }
+ },
+ {
+ "id": 1321000,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.965069722600271, 45.7385142048397]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1288000,
+ "bus2": 9,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line1904",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 9,
+ "bus2": 2607,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95294809914324, 45.73754749124046],
+ [4.952946059972593, 45.73753407242081],
+ [4.952945371546177, 45.73752959668326]
+ ]
+ },
+ "length": 0.0005003382576709,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3163",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 9,
+ "bus2": 3997,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95294809914324, 45.73754749124046],
+ [4.952949894765706, 45.73756092473948],
+ [4.952958860905261, 45.73762811051713]
+ ]
+ },
+ "length": 0.0074999777410105,
+ "params_id": "S_AL_25_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1905",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2607,
+ "bus2": 2608,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.952945371546177, 45.73752959668326],
+ [4.952925679418836, 45.7374003880531],
+ [4.952221303417048, 45.73759143713276],
+ [4.952137678945869, 45.73757489683429]
+ ]
+ },
+ "length": 0.0799951954264822,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3164",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3997,
+ "bus2": 3998,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.952958860905261, 45.73762811051713],
+ [4.952960078525964, 45.7376372277327],
+ [4.95299984255245, 45.73763540056071]
+ ]
+ },
+ "length": 0.0041192001404145,
+ "params_id": "S_AL_25_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1906",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2608,
+ "bus2": 2609,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.952137678945869, 45.73757489683429],
+ [4.952013669787013, 45.73755036805922]
+ ]
+ },
+ "length": 0.0100291338052338,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo2",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1284000,
+ "bus2": 31,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line4292",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 31,
+ "bus2": 5177,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962468682717135, 45.7385727604298],
+ [4.962483430842504, 45.73858144398642],
+ [4.962488351451723, 45.73858434439914]
+ ]
+ },
+ "length": 0.0005005785930769,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1851",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 31,
+ "bus2": 2546,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962468682717135, 45.7385727604298],
+ [4.962469326294041, 45.73858624779614],
+ [4.962473616814869, 45.73867616357228],
+ [4.963379363543611, 45.73866953268058]
+ ]
+ },
+ "length": 0.0804949278393397,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4264",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 31,
+ "bus2": 5147,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962468682717135, 45.7385727604298],
+ [4.962450190964499, 45.73858287882064],
+ [4.962443400091122, 45.73858604424576]
+ ]
+ },
+ "length": 0.0006349088237527,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4293",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5177,
+ "bus2": 5178,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962488351451723, 45.73858434439914],
+ [4.962508364359765, 45.73859613635118],
+ [4.962510809991794, 45.7386473883427],
+ [4.962672865036608, 45.73864899752117],
+ [4.962557577118273, 45.73849596710668],
+ [4.962534067334214, 45.7384817455323]
+ ]
+ },
+ "length": 0.0419970317072572,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4265",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5147,
+ "bus2": 5148,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962443400091122, 45.73858604424576],
+ [4.9624259328287, 45.73859419431346],
+ [4.962426037335454, 45.73863679651681]
+ ]
+ },
+ "length": 0.0063686689669366,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4266",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5148,
+ "bus2": 5149,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962426037335454, 45.73863679651681],
+ [4.962426101871827, 45.73866266565135]
+ ]
+ },
+ "length": 0.0028752607062334,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4267",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5149,
+ "bus2": 5150,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962426101871827, 45.73866266565135],
+ [4.962426186774521, 45.73869839107908],
+ [4.962391466086718, 45.73869842928318]
+ ]
+ },
+ "length": 0.0066729663005973,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4268",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5150,
+ "bus2": 5151,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962391466086718, 45.73869842928318],
+ [4.962295133258132, 45.73869854969649],
+ [4.962291619517926, 45.73869873091996],
+ [4.962291199755762, 45.7386883168697]
+ ]
+ },
+ "length": 0.0089294677782444,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2771",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3577,
+ "bus2": 3576,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962305021429685, 45.73889016079168],
+ [4.96227148094557, 45.73887263619685],
+ [4.962272135033172, 45.73886128786016]
+ ]
+ },
+ "length": 0.0045193175970921,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3451",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4302,
+ "bus2": 4301,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962204444303315, 45.73868466650154],
+ [4.962205665041238, 45.73870028274997]
+ ]
+ },
+ "length": 0.0017382851226349,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3452",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4302,
+ "bus2": 5151,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962205665041238, 45.73870028274997],
+ [4.962206267273864, 45.738708055058],
+ [4.962254965338331, 45.73870620464304],
+ [4.962257595391107, 45.73868831091244],
+ [4.962291199755762, 45.7386883168697]
+ ]
+ },
+ "length": 0.0066600652974873,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4294",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5178,
+ "bus2": 5179,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962534067334214, 45.7384817455323],
+ [4.962366959917578, 45.7383807055064],
+ [4.962243760192935, 45.73827736879885],
+ [4.962059173865351, 45.73804193810163]
+ ]
+ },
+ "length": 0.0619962769193219,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2770",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3576,
+ "bus2": 3575,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962306221292184, 45.73889078983816],
+ [4.962305021429685, 45.73889016079168]
+ ]
+ },
+ "length": 0.0001166549485426,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line321",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3576,
+ "bus2": 725,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962305021429685, 45.73889016079168],
+ [4.962281073740844, 45.73890798615641],
+ [4.962240808534379, 45.73889232018421],
+ [4.962232259109893, 45.73891413307611],
+ [4.962246258682557, 45.73894673346743],
+ [4.96228365590198, 45.73894135774701]
+ ]
+ },
+ "length": 0.0128539123750615,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2772",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5151,
+ "bus2": 3577,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962272135033172, 45.73886128786016],
+ [4.962280436136135, 45.73871787794917],
+ [4.962277607964204, 45.7386893189779],
+ [4.962291199755762, 45.7386883168697]
+ ]
+ },
+ "length": 0.0191343998901612,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1852",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2546,
+ "bus2": 928,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963379363543611, 45.73866953268058],
+ [4.96348113017075, 45.73866878906255]
+ ]
+ },
+ "length": 0.0079206398602404,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1715",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 928,
+ "bus2": 2382,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96348113017075, 45.73866878906255],
+ [4.963477174286758, 45.73853205702689],
+ [4.963288079391093, 45.73828713799261],
+ [4.963315264239038, 45.73827681599819]
+ ]
+ },
+ "length": 0.0485524283856353,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line453",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 928,
+ "bus2": 929,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96348113017075, 45.73866878906255],
+ [4.963847991183937, 45.73859809048848]
+ ]
+ },
+ "length": 0.029613341361079,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4295",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5179,
+ "bus2": 2596,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962059173865351, 45.73804193810163],
+ [4.962023378725025, 45.73799627314051]
+ ]
+ },
+ "length": 0.0057897859314363,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2221",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2596,
+ "bus2": 2962,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962023378725025, 45.73799627314051],
+ [4.96204604983626, 45.73798780336082]
+ ]
+ },
+ "length": 0.0019998716132067,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1895",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2596,
+ "bus2": 2597,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962023378725025, 45.73799627314051],
+ [4.962011674654462, 45.73798025401729]
+ ]
+ },
+ "length": 0.0019999509303946,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2222",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2962,
+ "bus2": 2963,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96204604983626, 45.73798780336082],
+ [4.962386088267413, 45.73786072075063]
+ ]
+ },
+ "length": 0.0299980427743589,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1896",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2597,
+ "bus2": 2598,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962011674654462, 45.73798025401729],
+ [4.961712542478319, 45.73757056668453],
+ [4.961721983117246, 45.73756662819431]
+ ]
+ },
+ "length": 0.051996812717244,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1716",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2382,
+ "bus2": 2383,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963315264239038, 45.73827681599819],
+ [4.963320276703058, 45.73827490736029]
+ ]
+ },
+ "length": 0.0004440576697726,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1717",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2383,
+ "bus2": 2384,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963320276703058, 45.73827490736029],
+ [4.963320908022739, 45.73827466754383]
+ ]
+ },
+ "length": 5.589847208640475e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2223",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2963,
+ "bus2": 2964,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962386088267413, 45.73786072075063],
+ [4.962395965099435, 45.73785703304483]
+ ]
+ },
+ "length": 0.0008711441750244,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1897",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2598,
+ "bus2": 2599,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961721983117246, 45.73756662819431],
+ [4.961749094610482, 45.73755530911566]
+ ]
+ },
+ "length": 0.0024566375573587,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2751",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2599,
+ "bus2": 3555,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961749094610482, 45.73755530911566],
+ [4.962026874124092, 45.73744979344909],
+ [4.962044899263728, 45.73745010990579]
+ ]
+ },
+ "length": 0.0259986378904056,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2752",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3555,
+ "bus2": 3556,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962044899263728, 45.73745010990579],
+ [4.962070618646461, 45.73745057041838]
+ ]
+ },
+ "length": 0.0020023646205635,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo3",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1319000,
+ "bus2": 116,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "400kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line115",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 116,
+ "bus2": 355,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949490109697274, 45.74058056584027],
+ [4.949480745023916, 45.74059235986793],
+ [4.949464636609704, 45.74061266434407],
+ [4.949577399652404, 45.74084858066003]
+ ]
+ },
+ "length": 0.030232355152662,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1839",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 116,
+ "bus2": 2531,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949490109697274, 45.74058056584027],
+ [4.949495990831826, 45.74059341818484],
+ [4.949597693424425, 45.74081570255527],
+ [4.949972721763631, 45.74072685681764],
+ [4.950017902158366, 45.74092023868075],
+ [4.95014676376539, 45.74146121192071]
+ ]
+ },
+ "length": 0.1394916214647838,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3500",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 116,
+ "bus2": 4357,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949490109697274, 45.74058056584027],
+ [4.94950753285216, 45.74058632629289],
+ [4.949538434830522, 45.74059654377515],
+ [4.94962432260402, 45.74078087663503],
+ [4.949968838151226, 45.74069976250984]
+ ]
+ },
+ "length": 0.0524971216028656,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1549",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 116,
+ "bus2": 2192,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949490109697274, 45.74058056584027],
+ [4.949507899758947, 45.74057537184645],
+ [4.949537025899295, 45.74056687140702],
+ [4.949491364509629, 45.74047161767668],
+ [4.949444471734358, 45.74048336720885]
+ ]
+ },
+ "length": 0.0174993450141986,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1550",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2192,
+ "bus2": 2193,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949444471734358, 45.74048336720885],
+ [4.949356695302401, 45.74050535808706]
+ ]
+ },
+ "length": 0.0072552737885666,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1354",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 355,
+ "bus2": 1961,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949577399652404, 45.74084858066003],
+ [4.949419516477821, 45.740886750247]
+ ]
+ },
+ "length": 0.0129988959249751,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3134",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 355,
+ "bus2": 3967,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949577399652404, 45.74084858066003],
+ [4.949942197636729, 45.7407608733611],
+ [4.949977922141468, 45.74091756898132],
+ [4.950061390994315, 45.74126666860317]
+ ]
+ },
+ "length": 0.0869948949795668,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1355",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1961,
+ "bus2": 260,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949419516477821, 45.740886750247],
+ [4.949352369787704, 45.74090298593372]
+ ]
+ },
+ "length": 0.0055284311183522,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line65",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 260,
+ "bus2": 261,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949352369787704, 45.74090298593372],
+ [4.949354557231781, 45.74091250367673],
+ [4.949359604960197, 45.74092865200017]
+ ]
+ },
+ "length": 0.0029087843100057,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2174",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 260,
+ "bus2": 2909,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949352369787704, 45.74090298593372],
+ [4.949103736628304, 45.74096308905356]
+ ]
+ },
+ "length": 0.0204703168245886,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1507",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2140,
+ "bus2": 2139,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949406732822898, 45.74115551056487],
+ [4.949420155304052, 45.74115282168234],
+ [4.949420405824933, 45.74114510150768]
+ ]
+ },
+ "length": 0.0019447888185644,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3501",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4357,
+ "bus2": 4358,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949968838151226, 45.74069976250984],
+ [4.950001918987462, 45.74069197100517],
+ [4.950058223808567, 45.74093010166632]
+ ]
+ },
+ "length": 0.0295438488161324,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2175",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2909,
+ "bus2": 2910,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949103736628304, 45.74096308905356],
+ [4.948824395771884, 45.74103062148168]
+ ]
+ },
+ "length": 0.022998726468752,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1508",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 261,
+ "bus2": 2140,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949420405824933, 45.74114510150768],
+ [4.949421195125904, 45.74112138200793],
+ [4.949387418600921, 45.74098050165401],
+ [4.949374659918358, 45.74094355918756],
+ [4.949391331715796, 45.74093403448928],
+ [4.949383442055609, 45.74091841140541],
+ [4.949359604960197, 45.74092865200017]
+ ]
+ },
+ "length": 0.0262552058736826,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2176",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2910,
+ "bus2": 2911,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948824395771884, 45.74103062148168],
+ [4.948666498708469, 45.74106879030815]
+ ]
+ },
+ "length": 0.0129998523408677,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2177",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2911,
+ "bus2": 2912,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948666498708469, 45.74106879030815],
+ [4.948362867574832, 45.7411421887841]
+ ]
+ },
+ "length": 0.0249983255219346,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3135",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3967,
+ "bus2": 3968,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950061390994315, 45.74126666860317],
+ [4.950063509303619, 45.74127553983312]
+ ]
+ },
+ "length": 0.0009996904364898,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3136",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3968,
+ "bus2": 3969,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950063509303619, 45.74127553983312],
+ [4.950142006222518, 45.7416038445639]
+ ]
+ },
+ "length": 0.0369976668118124,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2178",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2912,
+ "bus2": 2913,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948362867574832, 45.7411421887841],
+ [4.948333087920872, 45.74114938988678]
+ ]
+ },
+ "length": 0.0024518774106525,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1840",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2531,
+ "bus2": 156,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95014676376539, 45.74146121192071],
+ [4.950202564891636, 45.7416954746224]
+ ]
+ },
+ "length": 0.0263970803789386,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3137",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3969,
+ "bus2": 671,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950142006222518, 45.7416038445639],
+ [4.950162413477225, 45.74168920833736]
+ ]
+ },
+ "length": 0.0096198658184063,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line289",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 671,
+ "bus2": 458,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950162413477225, 45.74168920833736],
+ [4.950176789760147, 45.74174828393607],
+ [4.950181282916888, 45.74176168166396]
+ ]
+ },
+ "length": 0.0081902799410984,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line13",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 156,
+ "bus2": 157,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950202564891636, 45.7416954746224],
+ [4.950220150198784, 45.74176797784662],
+ [4.950195488412604, 45.74181716061058]
+ ]
+ },
+ "length": 0.0139674557311314,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line170",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 458,
+ "bus2": 459,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950181282916888, 45.74176168166396],
+ [4.950153116202084, 45.7417641378672],
+ [4.95011990117204, 45.74174150721939]
+ ]
+ },
+ "length": 0.0058156718278381,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4103",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 459,
+ "bus2": 4979,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95011990117204, 45.74174150721939],
+ [4.950120320168629, 45.74174599824795]
+ ]
+ },
+ "length": 0.0005002249885874,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4104",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4979,
+ "bus2": 4980,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950120320168629, 45.74174599824795],
+ [4.950121576731756, 45.74175946234211]
+ ]
+ },
+ "length": 0.0014996755561289,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1561",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 157,
+ "bus2": 2205,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950195488412604, 45.74181716061058],
+ [4.950206721460432, 45.74186500342928]
+ ]
+ },
+ "length": 0.0053889286439807,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4105",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4980,
+ "bus2": 4981,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950121576731756, 45.74175946234211],
+ [4.950122509225502, 45.74176935135737],
+ [4.949738747301098, 45.74180979230424],
+ [4.949489568591248, 45.74184169798374],
+ [4.949469231184263, 45.74181897439431]
+ ]
+ },
+ "length": 0.0539972561494892,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1562",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2205,
+ "bus2": 2206,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950206721460432, 45.74186500342928],
+ [4.950214698930297, 45.74189897862477]
+ ]
+ },
+ "length": 0.0038269097623782,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1563",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2206,
+ "bus2": 2207,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950214698930297, 45.74189897862477],
+ [4.950243322914806, 45.74202091347151]
+ ]
+ },
+ "length": 0.0137344549052552,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1564",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2207,
+ "bus2": 2208,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950243322914806, 45.74202091347151],
+ [4.950247948545511, 45.74204061821467],
+ [4.950171682347555, 45.74205055859117]
+ ]
+ },
+ "length": 0.0082566766241566,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3914",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2208,
+ "bus2": 4784,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950171682347555, 45.74205055859117],
+ [4.950174797281904, 45.74205902854793],
+ [4.950314951164724, 45.74204487294905],
+ [4.95030933222711, 45.74201102286589]
+ ]
+ },
+ "length": 0.0148076510091801,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2820",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2208,
+ "bus2": 3627,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950171682347555, 45.74205055859117],
+ [4.950175624912356, 45.74206508533622],
+ [4.950251540963354, 45.74205914080723],
+ [4.950315548545417, 45.74231485217745],
+ [4.950284047815058, 45.74232480334145]
+ ]
+ },
+ "length": 0.0374887933481141,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3915",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4784,
+ "bus2": 4785,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95030933222711, 45.74201102286589],
+ [4.950307440570665, 45.74199961691831],
+ [4.950345628579671, 45.74199512699472]
+ ]
+ },
+ "length": 0.0042897434917417,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4106",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4981,
+ "bus2": 4982,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949469231184263, 45.74181897439431],
+ [4.949462402830679, 45.7418113560017]
+ ]
+ },
+ "length": 0.0009996915998455,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4107",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4982,
+ "bus2": 4983,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949462402830679, 45.7418113560017],
+ [4.949455627981273, 45.74180378137108],
+ [4.949452497864194, 45.74184616160709],
+ [4.949398247419865, 45.74185297848733]
+ ]
+ },
+ "length": 0.0099994250049299,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4108",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4983,
+ "bus2": 4984,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949398247419865, 45.74185297848733],
+ [4.949335012650569, 45.74186092264297]
+ ]
+ },
+ "length": 0.0049996879919236,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2821",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3627,
+ "bus2": 3628,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950284047815058, 45.74232480334145],
+ [4.950250951188242, 45.74233525974066],
+ [4.950291314624964, 45.74234083694983]
+ ]
+ },
+ "length": 0.0060274595104198,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4109",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4984,
+ "bus2": 4985,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949335012650569, 45.74186092264297],
+ [4.949021817462513, 45.74190029450114],
+ [4.948961972701536, 45.74191248929228],
+ [4.948959201377501, 45.74190962828636]
+ ]
+ },
+ "length": 0.0299981489511425,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2822",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3628,
+ "bus2": 3629,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950291314624964, 45.74234083694983],
+ [4.950323421657008, 45.74234527417999],
+ [4.95040077529106, 45.74267759317598]
+ ]
+ },
+ "length": 0.039970201546093,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4110",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4985,
+ "bus2": 4986,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948959201377501, 45.74190962828636],
+ [4.948929530032742, 45.74187903844593],
+ [4.948927598325311, 45.74191959045178],
+ [4.948848153785544, 45.74193515786838]
+ ]
+ },
+ "length": 0.0150397858917662,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2823",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3629,
+ "bus2": 3630,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95040077529106, 45.74267759317598],
+ [4.950400951576777, 45.74267832719964],
+ [4.950347740868912, 45.74269486901222],
+ [4.950408696655409, 45.74270605171005],
+ [4.950450977745136, 45.74286052423763]
+ ]
+ },
+ "length": 0.0269987834223425,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4111",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4986,
+ "bus2": 4987,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948848153785544, 45.74193515786838],
+ [4.948737285115905, 45.74195687551208]
+ ]
+ },
+ "length": 0.0089593827594157,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4112",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4987,
+ "bus2": 4988,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948737285115905, 45.74195687551208],
+ [4.948703415860845, 45.74196351476765],
+ [4.948687881229532, 45.74193417113748]
+ ]
+ },
+ "length": 0.0062154329987107,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1426",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4988,
+ "bus2": 2042,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948687881229532, 45.74193417113748],
+ [4.948668417395697, 45.74193905288156],
+ [4.948685728057248, 45.74197764479616],
+ [4.94872571793278, 45.74197292445942],
+ [4.948747655385304, 45.74202231858337]
+ ]
+ },
+ "length": 0.0134012523708699,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2824",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3630,
+ "bus2": 3631,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950450977745136, 45.74286052423763],
+ [4.950456921333884, 45.7428822596457],
+ [4.950401227438782, 45.7429006596228],
+ [4.950460856538577, 45.7429109730364],
+ [4.950502276058836, 45.74307923802846],
+ [4.950449800250516, 45.74308527593394]
+ ]
+ },
+ "length": 0.035148289614464,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1427",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2042,
+ "bus2": 2043,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948747655385304, 45.74202231858337],
+ [4.948754290464784, 45.74203724178536]
+ ]
+ },
+ "length": 0.001737174038491,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line375",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2043,
+ "bus2": 809,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.948754290464784, 45.74203724178536],
+ [4.948773476276781, 45.74203408579645],
+ [4.948901699557921, 45.74238903979888]
+ ]
+ },
+ "length": 0.0406942114996201,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2825",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3631,
+ "bus2": 3632,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950449800250516, 45.74308527593394],
+ [4.950443458289948, 45.743086008727]
+ ]
+ },
+ "length": 0.0005002132965161,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo4",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1285000,
+ "bus2": 106,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "100kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line80",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 106,
+ "bus2": 290,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956821263808188, 45.7395436998441],
+ [4.95680609641228, 45.73953537640867],
+ [4.956757901902865, 45.73951568986967],
+ [4.956743343370634, 45.73947695382841],
+ [4.956768992915554, 45.73946458993685]
+ ]
+ },
+ "length": 0.0112177985437179,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1730",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 106,
+ "bus2": 2401,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956821263808188, 45.7395436998441],
+ [4.956802470560173, 45.73954670404984],
+ [4.956702610127227, 45.73956267277521],
+ [4.956728606339034, 45.73964182901081]
+ ]
+ },
+ "length": 0.0169993694393854,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4365",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 106,
+ "bus2": 5249,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956821263808188, 45.7395436998441],
+ [4.956815487479819, 45.73955657195612],
+ [4.956806154177184, 45.73957735849662],
+ [4.956748667883184, 45.73958500168168],
+ [4.956765618971497, 45.73964401646928],
+ [4.956793992755852, 45.73964107665473]
+ ]
+ },
+ "length": 0.0158985806026337,
+ "params_id": "S_AL_35_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2282",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 290,
+ "bus2": 3034,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956768992915554, 45.73946458993685],
+ [4.956768624302769, 45.73945711821771],
+ [4.956738192164534, 45.73946164535425],
+ [4.956709810858944, 45.73936857433193]
+ ]
+ },
+ "length": 0.012998956469388,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2002",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 290,
+ "bus2": 2717,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956768992915554, 45.73946458993685],
+ [4.956764772282777, 45.7394507360002],
+ [4.956744790341858, 45.73944848401223],
+ [4.956740752516652, 45.73943765934415]
+ ]
+ },
+ "length": 0.0028186145322106,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2003",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2717,
+ "bus2": 2718,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956740752516652, 45.73943765934415],
+ [4.95674016308763, 45.73943607982265]
+ ]
+ },
+ "length": 0.0001814521700402,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2004",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2718,
+ "bus2": 2719,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95674016308763, 45.73943607982265],
+ [4.956737583640353, 45.73942915480448],
+ [4.956754846985068, 45.73942155950624]
+ ]
+ },
+ "length": 0.0023821808616207,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4366",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5249,
+ "bus2": 5250,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956793992755852, 45.73964107665473],
+ [4.956795272180759, 45.73964094776769]
+ ]
+ },
+ "length": 0.0001005974948599,
+ "params_id": "S_AL_35_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4367",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5250,
+ "bus2": 5251,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956795272180759, 45.73964094776769],
+ [4.956810392422511, 45.73963937055225]
+ ]
+ },
+ "length": 0.001189731053329,
+ "params_id": "S_AL_35_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1731",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2401,
+ "bus2": 2402,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956728606339034, 45.73964182901081],
+ [4.956729477860355, 45.73964447313664]
+ ]
+ },
+ "length": 0.0003016101018866,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1732",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2402,
+ "bus2": 2403,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956729477860355, 45.73964447313664],
+ [4.956763170616643, 45.73974703386555]
+ ]
+ },
+ "length": 0.01169693911365,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2283",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3034,
+ "bus2": 3035,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956709810858944, 45.73936857433193],
+ [4.956708697918765, 45.73936490966044]
+ ]
+ },
+ "length": 0.0004164220714956,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2284",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3035,
+ "bus2": 3036,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956708697918765, 45.73936490966044],
+ [4.956701324266537, 45.73934072348808],
+ [4.956719399624836, 45.73933803310992]
+ ]
+ },
+ "length": 0.0041869395569844,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1733",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2403,
+ "bus2": 2404,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956763170616643, 45.73974703386555],
+ [4.956763290472624, 45.73974739113116]
+ ]
+ },
+ "length": 4.078960848303534e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1734",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2404,
+ "bus2": 2405,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956763290472624, 45.73974739113116],
+ [4.956788668742579, 45.73982463544426]
+ ]
+ },
+ "length": 0.008809669797575,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1735",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2405,
+ "bus2": 2406,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956788668742579, 45.73982463544426],
+ [4.956789104077987, 45.73982594851545]
+ ]
+ },
+ "length": 0.0001498239148669,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1736",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2406,
+ "bus2": 2407,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956789104077987, 45.73982594851545],
+ [4.956794862323364, 45.73984347521288]
+ ]
+ },
+ "length": 0.0019989085093089,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1737",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2407,
+ "bus2": 2408,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956794862323364, 45.73984347521288],
+ [4.956823655746058, 45.73993115365443]
+ ]
+ },
+ "length": 0.0099994498409093,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1738",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2408,
+ "bus2": 2409,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956823655746058, 45.73993115365443],
+ [4.956824392437657, 45.73993339585589]
+ ]
+ },
+ "length": 0.0002557222298103,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1739",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2409,
+ "bus2": 2410,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956824392437657, 45.73993339585589],
+ [4.956869496855397, 45.73995486482325]
+ ]
+ },
+ "length": 0.0042445161037907,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1740",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2410,
+ "bus2": 2411,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956869496855397, 45.73995486482325],
+ [4.956873061652036, 45.73995656391332]
+ ]
+ },
+ "length": 0.0003356064585007,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo5",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1287000,
+ "bus2": 54,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "400kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line194",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 54,
+ "bus2": 504,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956052315026593, 45.7355287394871],
+ [4.956033604501489, 45.7355161689203],
+ [4.956033322551094, 45.73549107007767]
+ ]
+ },
+ "length": 0.0027897260577011,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line128",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 504,
+ "bus2": 220,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956033322551094, 45.73549107007767],
+ [4.956034563370537, 45.73548851166989],
+ [4.956178737154027, 45.73553866083661],
+ [4.95615091490285, 45.73559635332465]
+ ]
+ },
+ "length": 0.0192974364705181,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line204",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 504,
+ "bus2": 522,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956033322551094, 45.73549107007767],
+ [4.956037862495945, 45.73548733647123],
+ [4.956182125310585, 45.7355347650762],
+ [4.956210637034254, 45.73546968418562],
+ [4.956249667952791, 45.73536985465486]
+ ]
+ },
+ "length": 0.0314743261836909,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line45",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 220,
+ "bus2": 221,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95615091490285, 45.73559635332465],
+ [4.956204677642744, 45.73560887080555]
+ ]
+ },
+ "length": 0.0044096591919014,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2707",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 220,
+ "bus2": 3513,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95615091490285, 45.73559635332465],
+ [4.956088156578513, 45.7357264868948],
+ [4.95606026307445, 45.7357872775662],
+ [4.95606030542764, 45.73579248849629],
+ [4.956125443948416, 45.73586872377459]
+ ]
+ },
+ "length": 0.0328165699103589,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line456",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 522,
+ "bus2": 935,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956249667952791, 45.73536985465486],
+ [4.956256600027722, 45.73537154716573],
+ [4.956233058051791, 45.73544489253887],
+ [4.956382576042555, 45.73548281856218],
+ [4.95640308545411, 45.7354448751772],
+ [4.956421946673418, 45.73544764843857]
+ ]
+ },
+ "length": 0.0267418691062935,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2708",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3513,
+ "bus2": 3514,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956125443948416, 45.73586872377459],
+ [4.956126641959938, 45.73587012706333]
+ ]
+ },
+ "length": 0.0001817164085017,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2709",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3514,
+ "bus2": 3515,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956126641959938, 45.73587012706333],
+ [4.956214651246689, 45.73597313926646],
+ [4.956259165800845, 45.73595366492601],
+ [4.956271120290809, 45.73596229744482]
+ ]
+ },
+ "length": 0.0187637017295666,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line400",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 935,
+ "bus2": 851,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956421946673418, 45.73544764843857],
+ [4.956420010356635, 45.73545152831737],
+ [4.956409039547999, 45.73545167640629],
+ [4.956392814960897, 45.73548484794242],
+ [4.956667948706969, 45.73555193177604],
+ [4.95669179900583, 45.73551288415374],
+ [4.956701860310014, 45.73551415251796]
+ ]
+ },
+ "length": 0.032942199881977,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo6",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1282000,
+ "bus2": 13,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "630kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line510",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13,
+ "bus2": 1017,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959246469022067, 45.7378307590273],
+ [4.959255831126285, 45.73781896418637],
+ [4.959268297090128, 45.73780324412505],
+ [4.959200448814673, 45.73770131122335]
+ ]
+ },
+ "length": 0.014498142279017,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2316",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13,
+ "bus2": 3073,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959246469022067, 45.7378307590273],
+ [4.9592273911606, 45.73782885543228],
+ [4.959202552832604, 45.73782638432161],
+ [4.959141939241144, 45.73774138536665],
+ [4.959101179036857, 45.73775440898316]
+ ]
+ },
+ "length": 0.0159991368150779,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3709",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13,
+ "bus2": 4580,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959246469022067, 45.7378307590273],
+ [4.959237884212604, 45.73781867245589],
+ [4.959159657960649, 45.73770856555179],
+ [4.959088866017715, 45.7377317966323]
+ ]
+ },
+ "length": 0.0197533840312648,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2317",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3073,
+ "bus2": 3074,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959101179036857, 45.73775440898316],
+ [4.959096975421994, 45.73775575843332]
+ ]
+ },
+ "length": 0.000359902842447,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2318",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3074,
+ "bus2": 3075,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959096975421994, 45.73775575843332],
+ [4.959083641643665, 45.73776001270964]
+ ]
+ },
+ "length": 0.0011403959888861,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2319",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3075,
+ "bus2": 3076,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959083641643665, 45.73776001270964],
+ [4.95908115996522, 45.73776080883098]
+ ]
+ },
+ "length": 0.000212449508454,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3710",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4580,
+ "bus2": 4581,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959088866017715, 45.7377317966323],
+ [4.959086005541451, 45.73773273662928]
+ ]
+ },
+ "length": 0.0002459227906416,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3711",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4581,
+ "bus2": 4582,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959086005541451, 45.73773273662928],
+ [4.959071057271706, 45.7377376407394]
+ ]
+ },
+ "length": 0.0012847593141744,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo7",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1303000,
+ "bus2": 33,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "400kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line1176",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 33,
+ "bus2": 1757,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960105183392078, 45.73904390876906],
+ [4.960111400639391, 45.73903113418077],
+ [4.960121574971325, 45.73901021965473],
+ [4.960112705305831, 45.73887810336793],
+ [4.960475547969224, 45.73885647863783]
+ ]
+ },
+ "length": 0.0454971945072443,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4331",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 33,
+ "bus2": 5216,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960105183392078, 45.73904390876906],
+ [4.960086444428941, 45.73904076416639],
+ [4.96008019839414, 45.73903972195923]
+ ]
+ },
+ "length": 0.000499719203563,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line487",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 33,
+ "bus2": 979,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960105183392078, 45.73904390876906],
+ [4.960123153890179, 45.73903902389544],
+ [4.960155947987132, 45.73903011984349],
+ [4.96015328829069, 45.73894736723048],
+ [4.960312304348342, 45.7389391491087],
+ [4.960327297000351, 45.73909182594988],
+ [4.960818791783983, 45.73931617700526]
+ ]
+ },
+ "length": 0.0870175633918751,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line472",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 33,
+ "bus2": 339,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960105183392078, 45.73904390876906],
+ [4.960097345116976, 45.73903157976098],
+ [4.960084335555435, 45.73901109015626],
+ [4.960071097374336, 45.73884126923696],
+ [4.960001290873768, 45.73884393616881]
+ ]
+ },
+ "length": 0.0268362299978696,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4332",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5216,
+ "bus2": 3565,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96008019839414, 45.73903972195923],
+ [4.96005334712315, 45.7390352187045],
+ [4.96004401165916, 45.73897422599731],
+ [4.960017045202498, 45.73897485634307],
+ [4.960030281400803, 45.73911767249419],
+ [4.959909243692164, 45.73930233415155],
+ [4.959932834842134, 45.73939269895975]
+ ]
+ },
+ "length": 0.0597665823576085,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4465",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5357,
+ "bus2": 5356,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959885624432446, 45.73834760879387],
+ [4.960126272587628, 45.73862419295075]
+ ]
+ },
+ "length": 0.0359972603310922,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1177",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1757,
+ "bus2": 848,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960475547969224, 45.73885647863783],
+ [4.960760924727571, 45.7388394635442]
+ ]
+ },
+ "length": 0.0222903648041503,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line106",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 339,
+ "bus2": 338,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960199756304963, 45.73870863853983],
+ [4.96012073094316, 45.73878515420129],
+ [4.960051938939426, 45.73882474004503],
+ [4.960001290873768, 45.73884393616881]
+ ]
+ },
+ "length": 0.0219072952150191,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4464",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5356,
+ "bus2": 5355,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959638274812121, 45.73806334042222],
+ [4.959885624432446, 45.73834760879387]
+ ]
+ },
+ "length": 0.036998038532957,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2760",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3565,
+ "bus2": 3566,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959932834842134, 45.73939269895975],
+ [4.960029915934189, 45.7394066326256],
+ [4.960120329088985, 45.73944599859148]
+ ]
+ },
+ "length": 0.0159984466404242,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3982",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3565,
+ "bus2": 4854,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959932834842134, 45.73939269895975],
+ [4.9599160787222, 45.73940634098333]
+ ]
+ },
+ "length": 0.0019999066660844,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3983",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4854,
+ "bus2": 4855,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.9599160787222, 45.73940634098333],
+ [4.959818981404895, 45.73948537619096],
+ [4.959659490567712, 45.73945669808589],
+ [4.959622544267035, 45.73935584343205],
+ [4.959672536121384, 45.73929886508697]
+ ]
+ },
+ "length": 0.0434079011695349,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line399",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 848,
+ "bus2": 849,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960760924727571, 45.7388394635442],
+ [4.96089024310949, 45.73883175894161]
+ ]
+ },
+ "length": 0.0101008190175309,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2761",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3566,
+ "bus2": 3567,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960120329088985, 45.73944599859148],
+ [4.960208458261459, 45.73948437369319]
+ ]
+ },
+ "length": 0.0080768028699387,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line451",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 849,
+ "bus2": 926,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96089024310949, 45.73883175894161],
+ [4.960916340919087, 45.73874417513907]
+ ]
+ },
+ "length": 0.0099442456338206,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1240",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 979,
+ "bus2": 1829,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960818791783983, 45.73931617700526],
+ [4.960804607699028, 45.73933118128229]
+ ]
+ },
+ "length": 0.0019999254240497,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1421",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 979,
+ "bus2": 2035,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960818791783983, 45.73931617700526],
+ [4.960834371764742, 45.73930186921763]
+ ]
+ },
+ "length": 0.0019997874322937,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line928",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1470,
+ "bus2": 452,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96095747863722, 45.73882774732266],
+ [4.96093602356783, 45.73876144806627]
+ ]
+ },
+ "length": 0.0075557284635259,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1422",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2035,
+ "bus2": 2036,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960834371764742, 45.73930186921763],
+ [4.960928404891914, 45.73921549641435],
+ [4.96151156517715, 45.73917845461823],
+ [4.961626527672252, 45.73908214900259],
+ [4.961790299750718, 45.73911972578223],
+ [4.961807218664164, 45.7392318502114],
+ [4.961738822421614, 45.73928025843389]
+ ]
+ },
+ "length": 0.1051066453823083,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1241",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1829,
+ "bus2": 1830,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960804607699028, 45.73933118128229],
+ [4.960248469013997, 45.73991911622788]
+ ]
+ },
+ "length": 0.0783806505567235,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line167",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 452,
+ "bus2": 453,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96095747863722, 45.73882774732266],
+ [4.961544572899767, 45.73879241358706]
+ ]
+ },
+ "length": 0.0458602317411214,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4463",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5355,
+ "bus2": 5354,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959654271490656, 45.73767803996336],
+ [4.959542328938872, 45.73791566113006],
+ [4.95966723044202, 45.73794694804518],
+ [4.959621736614228, 45.73804432849675],
+ [4.959638274812121, 45.73806334042222]
+ ]
+ },
+ "length": 0.0519968520062209,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2179",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 926,
+ "bus2": 2915,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960916340919087, 45.73874417513907],
+ [4.960905544140147, 45.73874475165952],
+ [4.960889052594204, 45.7387588107271],
+ [4.96079953543904, 45.73872420430275],
+ [4.960767503232685, 45.73870325039978],
+ [4.960757004187017, 45.73868580772434]
+ ]
+ },
+ "length": 0.0154957070661534,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line929",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 926,
+ "bus2": 1470,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96093602356783, 45.73876144806627],
+ [4.960930430213592, 45.73874416974355],
+ [4.960916340919087, 45.73874417513907]
+ ]
+ },
+ "length": 0.0019691399428032,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2180",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2915,
+ "bus2": 2916,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960757004187017, 45.73868580772434],
+ [4.960783074661972, 45.73867016545922]
+ ]
+ },
+ "length": 0.0026719767370282,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1272",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2916,
+ "bus2": 1865,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960783074661972, 45.73867016545922],
+ [4.960770753031895, 45.73865790531985],
+ [4.960736612800587, 45.73866337541409]
+ ]
+ },
+ "length": 0.0027257092541228,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1273",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1865,
+ "bus2": 1866,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960736612800587, 45.73866337541409],
+ [4.960613525714848, 45.7385138200812],
+ [4.960616899657214, 45.73850504564253]
+ ]
+ },
+ "length": 0.0201952650554332,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1274",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1866,
+ "bus2": 1867,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960616899657214, 45.73850504564253],
+ [4.960621839886369, 45.73849218385909]
+ ]
+ },
+ "length": 0.0014803408852694,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4462",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5354,
+ "bus2": 5353,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959682440255655, 45.73761823205071],
+ [4.959654271490656, 45.73767803996336]
+ ]
+ },
+ "length": 0.00699961071024,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line292",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 453,
+ "bus2": 421,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961544572899767, 45.73879241358706],
+ [4.961968644340571, 45.73876996402976]
+ ]
+ },
+ "length": 0.0330984002559041,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line468",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 453,
+ "bus2": 613,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961544572899767, 45.73879241358706],
+ [4.961479027499966, 45.73865802224827]
+ ]
+ },
+ "length": 0.0157841355046023,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line256",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 613,
+ "bus2": 614,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961479027499966, 45.73865802224827],
+ [4.961465535419309, 45.73856382087653],
+ [4.961398418773967, 45.73855818930203]
+ ]
+ },
+ "length": 0.015783526014468,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line413",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 614,
+ "bus2": 872,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961398418773967, 45.73855818930203],
+ [4.961465103978998, 45.73852782451912],
+ [4.961362963415412, 45.73840779143752],
+ [4.961665400590003, 45.73828009622697]
+ ]
+ },
+ "length": 0.0492066014196515,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3313",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 614,
+ "bus2": 4159,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961398418773967, 45.73855818930203],
+ [4.961417291850237, 45.73852264161904],
+ [4.961172370845995, 45.73823961583732]
+ ]
+ },
+ "length": 0.0409970179470728,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line151",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 421,
+ "bus2": 422,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961968644340571, 45.73876996402976],
+ [4.962167516981007, 45.73875943365877],
+ [4.962163012139682, 45.73868603185797]
+ ]
+ },
+ "length": 0.0236877203591259,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4203",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 421,
+ "bus2": 5080,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961968644340571, 45.73876996402976],
+ [4.961963947167957, 45.73872566894523]
+ ]
+ },
+ "length": 0.0049367846142944,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4204",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5080,
+ "bus2": 5081,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961963947167957, 45.73872566894523],
+ [4.961963881619567, 45.73872510337682]
+ ]
+ },
+ "length": 6.306745004955883e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4205",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5081,
+ "bus2": 5082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961963881619567, 45.73872510337682],
+ [4.961962149366898, 45.73870873395592]
+ ]
+ },
+ "length": 0.0018243872061862,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4206",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5082,
+ "bus2": 5083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961962149366898, 45.73870873395592],
+ [4.961961425705299, 45.738701918659]
+ ]
+ },
+ "length": 0.000759585304389,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4461",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5353,
+ "bus2": 3049,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959799155586835, 45.73737046237839],
+ [4.959682440255655, 45.73761823205071]
+ ]
+ },
+ "length": 0.028998158624463,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2295",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3049,
+ "bus2": 3050,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959799155586835, 45.73737046237839],
+ [4.959726093502897, 45.7372753938573]
+ ]
+ },
+ "length": 0.0119993997887356,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3708",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3049,
+ "bus2": 4578,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960165846935249, 45.73724425782031],
+ [4.959799155586835, 45.73737046237839]
+ ]
+ },
+ "length": 0.0318001496995585,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4159,
+ "bus2": 4160,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961172370845995, 45.73823961583732],
+ [4.961086686034492, 45.73814060353558],
+ [4.961232766999241, 45.73804208532634]
+ ]
+ },
+ "length": 0.0286524746049958,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3707",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4578,
+ "bus2": 4577,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960235029230575, 45.73722045155628],
+ [4.960165846935249, 45.73724425782031]
+ ]
+ },
+ "length": 0.0059994127493386,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2296",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3050,
+ "bus2": 3051,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959726093502897, 45.7372753938573],
+ [4.95971692485665, 45.73726346499498],
+ [4.959460499797927, 45.73735857402437],
+ [4.959308162719201, 45.73731802631416],
+ [4.959283390068452, 45.73736170490385]
+ ]
+ },
+ "length": 0.041997209573858,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3315",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4160,
+ "bus2": 4161,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961232766999241, 45.73804208532634],
+ [4.961235967630083, 45.73803992210173]
+ ]
+ },
+ "length": 0.0003462063427907,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3316",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4161,
+ "bus2": 4162,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961235967630083, 45.73803992210173],
+ [4.961237387326696, 45.73803896173435]
+ ]
+ },
+ "length": 0.0001536301071027,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3706",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4577,
+ "bus2": 4576,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960523291499956, 45.73712123874899],
+ [4.960235029230575, 45.73722045155628]
+ ]
+ },
+ "length": 0.0249987466101525,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3705",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4576,
+ "bus2": 4575,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960650120456335, 45.73707758610233],
+ [4.960523291499956, 45.73712123874899]
+ ]
+ },
+ "length": 0.0109989613390624,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2297",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3051,
+ "bus2": 3052,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959283390068452, 45.73736170490385],
+ [4.959279701686487, 45.73736820023878]
+ ]
+ },
+ "length": 0.0007769109155526,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3704",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4575,
+ "bus2": 4574,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960740549922936, 45.73708555348455],
+ [4.960671836128309, 45.73707011111041],
+ [4.960650120456335, 45.73707758610233]
+ ]
+ },
+ "length": 0.0074999085460423,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4466",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 338,
+ "bus2": 5357,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960126272587628, 45.73862419295075],
+ [4.960199756304963, 45.73870863853983]
+ ]
+ },
+ "length": 0.0109909365086242,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo8",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1316000,
+ "bus2": 17,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "400kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line4236",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 17,
+ "bus2": 5116,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96075889797756, 45.73708967927565],
+ [4.960771590226623, 45.73707952573821],
+ [4.960794806906621, 45.73706093464583],
+ [4.960849440960156, 45.73704179794322]
+ ]
+ },
+ "length": 0.0074993866686839,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line286",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 17,
+ "bus2": 531,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96075889797756, 45.73708967927565],
+ [4.960777939782102, 45.73708759573616],
+ [4.960811330564744, 45.73708395245376],
+ [4.961358971029576, 45.73689561425828],
+ [4.961398300335136, 45.7368307829915],
+ [4.961984072040853, 45.73663344835436]
+ ]
+ },
+ "length": 0.1085366702149709,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line977",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 17,
+ "bus2": 1531,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96075889797756, 45.73708967927565],
+ [4.960770216708153, 45.73710059461094],
+ [4.960789889444348, 45.73711956007803],
+ [4.960858114576383, 45.73709456058403],
+ [4.960935668151952, 45.73720722054048]
+ ]
+ },
+ "length": 0.0224988879643285,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4237",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5116,
+ "bus2": 5117,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960849440960156, 45.73704179794322],
+ [4.96086667443794, 45.73703575995913]
+ ]
+ },
+ "length": 0.0014997946053861,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4238",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5117,
+ "bus2": 5118,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96086667443794, 45.73703575995913],
+ [4.961136695199635, 45.73694116682628]
+ ]
+ },
+ "length": 0.0234987629080634,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line978",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1531,
+ "bus2": 1532,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960935668151952, 45.73720722054048],
+ [4.960941248158703, 45.73721532652868]
+ ]
+ },
+ "length": 0.0010001579199835,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line979",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1532,
+ "bus2": 295,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960941248158703, 45.73721532652868],
+ [4.961045955673573, 45.73736741760803]
+ ]
+ },
+ "length": 0.0187661331039162,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4239",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5118,
+ "bus2": 5119,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961136695199635, 45.73694116682628],
+ [4.961153928614241, 45.73693512879809]
+ ]
+ },
+ "length": 0.0014997945502358,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4240",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5119,
+ "bus2": 5120,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961153928614241, 45.73693512879809],
+ [4.961337225159591, 45.73687091834149],
+ [4.961360232170545, 45.73682367990691]
+ ]
+ },
+ "length": 0.0214987798149279,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3773",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 295,
+ "bus2": 4647,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961045955673573, 45.73736741760803],
+ [4.961038896755773, 45.73740808991974],
+ [4.961099941734808, 45.73750207943066],
+ [4.960793268398773, 45.7376150105743]
+ ]
+ },
+ "length": 0.0429972584046471,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1250",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 295,
+ "bus2": 1840,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961045955673573, 45.73736741760803],
+ [4.961317252966468, 45.73726479178624]
+ ]
+ },
+ "length": 0.0239988073603358,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line83",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 295,
+ "bus2": 296,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961045955673573, 45.73736741760803],
+ [4.961254260680495, 45.73766500030121]
+ ]
+ },
+ "length": 0.0368347747644785,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4241",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5120,
+ "bus2": 5121,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961360232170545, 45.73682367990691],
+ [4.961366461715031, 45.73681090495221]
+ ]
+ },
+ "length": 0.0015003845165864,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4242",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5121,
+ "bus2": 5122,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961366461715031, 45.73681090495221],
+ [4.96136649637729, 45.73681082312702],
+ [4.961430098987583, 45.73678945101164]
+ ]
+ },
+ "length": 0.0055001062627582,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4243",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5122,
+ "bus2": 5123,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961430098987583, 45.73678945101164],
+ [4.961447470592804, 45.73678361674145]
+ ]
+ },
+ "length": 0.0014994921828266,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4244",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5123,
+ "bus2": 5124,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961447470592804, 45.73678361674145],
+ [4.961661760315602, 45.73671160557122]
+ ]
+ },
+ "length": 0.0184992014171015,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1251",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1840,
+ "bus2": 1841,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961317252966468, 45.73726479178624],
+ [4.961334514238821, 45.73725825799199]
+ ]
+ },
+ "length": 0.0015271473619261,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1252",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1841,
+ "bus2": 1842,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961334514238821, 45.73725825799199],
+ [4.961339855392209, 45.73725623373556]
+ ]
+ },
+ "length": 0.0004726775241331,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1253",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1842,
+ "bus2": 1843,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961339855392209, 45.73725623373556],
+ [4.961340171264948, 45.73725611832876]
+ ]
+ },
+ "length": 2.772923754078671e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4245",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5124,
+ "bus2": 5125,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961661760315602, 45.73671160557122],
+ [4.961679131871559, 45.73670577126523]
+ ]
+ },
+ "length": 0.001499492136751,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4246",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5125,
+ "bus2": 5126,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961679131871559, 45.73670577126523],
+ [4.961965980931708, 45.73660937818495]
+ ]
+ },
+ "length": 0.0247630704763613,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3774",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4647,
+ "bus2": 4648,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960793268398773, 45.7376150105743],
+ [4.960622693085613, 45.7376778244415]
+ ]
+ },
+ "length": 0.0149994723794677,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3775",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4648,
+ "bus2": 4649,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960622693085613, 45.7376778244415],
+ [4.960513124055958, 45.7377181749721]
+ ]
+ },
+ "length": 0.0096350082787613,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line209",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 531,
+ "bus2": 532,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961984072040853, 45.73663344835436],
+ [4.962053028112852, 45.73665073858405],
+ [4.96266036706634, 45.73644749479478]
+ ]
+ },
+ "length": 0.0580902420227454,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4247",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5126,
+ "bus2": 5127,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961965980931708, 45.73660937818495],
+ [4.961968713751984, 45.73660845910157]
+ ]
+ },
+ "length": 0.000235954498344,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4248",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5127,
+ "bus2": 1502,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961968713751984, 45.73660845910157],
+ [4.961982656484691, 45.7366037761511]
+ ]
+ },
+ "length": 0.0012035329395608,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3776",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4649,
+ "bus2": 4650,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960513124055958, 45.7377181749721],
+ [4.960508980416538, 45.73771970310602]
+ ]
+ },
+ "length": 0.000364485419189,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line961",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1502,
+ "bus2": 1510,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961982656484691, 45.7366037761511],
+ [4.962051655415735, 45.73662196553913],
+ [4.96219385396506, 45.73657448591048]
+ ]
+ },
+ "length": 0.0179992128212935,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line955",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1502,
+ "bus2": 1503,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.961982656484691, 45.7366037761511],
+ [4.962002394882419, 45.73666722583931],
+ [4.962055727770482, 45.73668038074695],
+ [4.962167329875355, 45.73683709838383],
+ [4.96213440083194, 45.73684960686295]
+ ]
+ },
+ "length": 0.0339982521657435,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3777",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4650,
+ "bus2": 4651,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960508980416538, 45.73771970310602],
+ [4.96050743912461, 45.7377202702363]
+ ]
+ },
+ "length": 0.0001355096861915,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line962",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1510,
+ "bus2": 1511,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96219385396506, 45.73657448591048],
+ [4.962286628397499, 45.73654351020274]
+ ]
+ },
+ "length": 0.0079994237598084,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line963",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1511,
+ "bus2": 1512,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962286628397499, 45.73654351020274],
+ [4.962440113013225, 45.73649225556941]
+ ]
+ },
+ "length": 0.01323455875897,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line956",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1503,
+ "bus2": 1504,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96213440083194, 45.73684960686295],
+ [4.962126926139021, 45.73685244620967]
+ ]
+ },
+ "length": 0.0006618375786432,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2166",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1512,
+ "bus2": 2900,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962440113013225, 45.73649225556941],
+ [4.962499017231833, 45.73656829120282],
+ [4.962478496234752, 45.73659513708291]
+ ]
+ },
+ "length": 0.012998874465924,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2167",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2900,
+ "bus2": 2901,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962478496234752, 45.73659513708291],
+ [4.962472398263021, 45.73660312016901],
+ [4.962562383748659, 45.73673783918393],
+ [4.962546991911733, 45.73678516075339]
+ ]
+ },
+ "length": 0.022931005478589,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2168",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2901,
+ "bus2": 2902,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962546991911733, 45.73678516075339],
+ [4.962546801938095, 45.73678575930509]
+ ]
+ },
+ "length": 6.814998294214048e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2169",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2902,
+ "bus2": 2903,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962546801938095, 45.73678575930509],
+ [4.962545568380995, 45.73678954184167]
+ ]
+ },
+ "length": 0.0004312374862264,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "transfo9",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1321000,
+ "bus2": 64,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "630kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line1594",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 2243,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965084063081045, 45.73849012268901],
+ [4.965084930423785, 45.73848567357514]
+ ]
+ },
+ "length": 0.0004990881977186,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line260",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 621,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965086563914866, 45.73852633167192],
+ [4.965081747073785, 45.73856274804481],
+ [4.965140569083272, 45.7386711182296],
+ [4.965899220039365, 45.7386086992918],
+ [4.965922818643806, 45.73851659985056]
+ ]
+ },
+ "length": 0.0868002806626187,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line171",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 461,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965073226315021, 45.73851569806614],
+ [4.965058640595166, 45.73853733751645],
+ [4.965010617682945, 45.73855466514089],
+ [4.965078778436606, 45.73866288865581],
+ [4.964450467561931, 45.73869650556197],
+ [4.964394554729672, 45.73869937201268]
+ ]
+ },
+ "length": 0.0734158864084878,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line168",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 455,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965063299618518, 45.73849896248653],
+ [4.965032009370969, 45.73849115276518],
+ [4.964913236217574, 45.73853444168664],
+ [4.96495930499504, 45.73861077678116]
+ ]
+ },
+ "length": 0.022217159646987,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line161",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 441,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965071638764609, 45.73849188093678],
+ [4.9650419343038, 45.73845671414239],
+ [4.964901632092384, 45.73850680840194],
+ [4.964510719345298, 45.73801997295966]
+ ]
+ },
+ "length": 0.0788746145834906,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line230",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 570,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965092310713022, 45.73851557515957],
+ [4.965167793202724, 45.73864789553053],
+ [4.966121754461933, 45.73857171884823],
+ [4.966135101225179, 45.73852254528428]
+ ]
+ },
+ "length": 0.0961254785888437,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line139",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 398,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965077689549044, 45.73852166963346],
+ [4.965053551445329, 45.73856536174762],
+ [4.965097165500242, 45.73862744169458],
+ [4.965466467843086, 45.73860035649596]
+ ]
+ },
+ "length": 0.0417955946810107,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3836",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 64,
+ "bus2": 4711,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965081449499382, 45.73850349730601],
+ [4.965096556236531, 45.73851187507648],
+ [4.96512502746423, 45.73852768123741],
+ [4.965147952614935, 45.73855656162601]
+ ]
+ },
+ "length": 0.0065002527623105,
+ "params_id": "S_AL_35_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1595",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2243,
+ "bus2": 2244,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965084930423785, 45.73848567357514],
+ [4.965088677354798, 45.73846642135719],
+ [4.965052928588864, 45.73841774966102],
+ [4.964916607629818, 45.73847045118764],
+ [4.964547700386225, 45.73801370604721]
+ ]
+ },
+ "length": 0.07868403373704,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3837",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4711,
+ "bus2": 4712,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965147952614935, 45.73855656162601],
+ [4.965152384551264, 45.73856214685375],
+ [4.965194158703693, 45.73854856617363]
+ ]
+ },
+ "length": 0.0042946510843251,
+ "params_id": "S_AL_35_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2677",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 455,
+ "bus2": 3482,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96495930499504, 45.73861077678116],
+ [4.96479321244731, 45.73862099457246]
+ ]
+ },
+ "length": 0.0129763168892696,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2678",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3482,
+ "bus2": 3483,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96479321244731, 45.73862099457246],
+ [4.964792917532347, 45.73862101048032]
+ ]
+ },
+ "length": 2.3020417188823448e-5,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2679",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3483,
+ "bus2": 3484,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964792917532347, 45.73862101048032],
+ [4.96465439581094, 45.73862952922292]
+ ]
+ },
+ "length": 0.010822259929561,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line240",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 398,
+ "bus2": 588,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965466467843086, 45.73860035649596],
+ [4.965445515323404, 45.73863806901497],
+ [4.965452493889316, 45.73867301190182],
+ [4.965467951236606, 45.73867850089131]
+ ]
+ },
+ "length": 0.0097680440360565,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3128",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 398,
+ "bus2": 3961,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965466467843086, 45.73860035649596],
+ [4.965635709880166, 45.73858368177106]
+ ]
+ },
+ "length": 0.0133013956335383,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2680",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3484,
+ "bus2": 3485,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96465439581094, 45.73862952922292],
+ [4.964652127236736, 45.7386296723614]
+ ]
+ },
+ "length": 0.0001772721694314,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2681",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3485,
+ "bus2": 3486,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964652127236736, 45.7386296723614],
+ [4.96437914655397, 45.73864645216977]
+ ]
+ },
+ "length": 0.0213270284582181,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3129",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3961,
+ "bus2": 1900,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965635709880166, 45.73858368177106],
+ [4.965698522526376, 45.73857859169032]
+ ]
+ },
+ "length": 0.004921165621923,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1303",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1900,
+ "bus2": 1901,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965698522526376, 45.73857859169032],
+ [4.965725056144439, 45.73857643983605]
+ ]
+ },
+ "length": 0.0020788438731462,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3282",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1900,
+ "bus2": 4127,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965698522526376, 45.73857859169032],
+ [4.965699320512575, 45.73855439462086]
+ ]
+ },
+ "length": 0.0026901295622809,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1304",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1901,
+ "bus2": 650,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965725056144439, 45.73857643983605],
+ [4.965804784154678, 45.7385702243004]
+ ]
+ },
+ "length": 0.0062433544462683,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3283",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4127,
+ "bus2": 4128,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965699320512575, 45.73855439462086],
+ [4.965699252348427, 45.73855377510523]
+ ]
+ },
+ "length": 6.906087275498889e-5,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2682",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3486,
+ "bus2": 511,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96437914655397, 45.73864645216977],
+ [4.964320979401388, 45.73865002848635]
+ ]
+ },
+ "length": 0.0045444041469279,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4126",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 650,
+ "bus2": 5001,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965804784154678, 45.7385702243004],
+ [4.965878812489984, 45.73856444829248]
+ ]
+ },
+ "length": 0.0057970831921064,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line278",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 650,
+ "bus2": 651,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965804784154678, 45.7385702243004],
+ [4.965807853201676, 45.73855804521034],
+ [4.96588560785737, 45.73855142576443],
+ [4.965892013136321, 45.73849849014617],
+ [4.965905552164909, 45.73849504039023]
+ ]
+ },
+ "length": 0.0144965442912675,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line199",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 511,
+ "bus2": 512,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964320979401388, 45.73865002848635],
+ [4.964300903280957, 45.73865953616883],
+ [4.963849315269567, 45.73867375412993],
+ [4.963846545798926, 45.73866394418235]
+ ]
+ },
+ "length": 0.0381790357341103,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2343",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 511,
+ "bus2": 3107,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964320979401388, 45.73865002848635],
+ [4.964315333159959, 45.73863247249453]
+ ]
+ },
+ "length": 0.0020001502928667,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line391",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 461,
+ "bus2": 837,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964394554729672, 45.73869937201268],
+ [4.964392671373303, 45.7387660011235],
+ [4.964457257085702, 45.73890894695324]
+ ]
+ },
+ "length": 0.024071080076804,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4327",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 461,
+ "bus2": 5213,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964394554729672, 45.73869937201268],
+ [4.96436059502179, 45.73869892492372]
+ ]
+ },
+ "length": 0.0026434536605825,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2344",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3107,
+ "bus2": 3108,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964315333159959, 45.73863247249453],
+ [4.964302865197918, 45.73859374237484],
+ [4.964299275431529, 45.7385891005713]
+ ]
+ },
+ "length": 0.0049994247730048,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4127",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5001,
+ "bus2": 5002,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965878812489984, 45.73856444829248],
+ [4.966068033230046, 45.73854969028852]
+ ]
+ },
+ "length": 0.0148176137400325,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4328",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5213,
+ "bus2": 873,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96436059502179, 45.73869892492372],
+ [4.964289723841232, 45.73870082731759]
+ ]
+ },
+ "length": 0.0055197517724435,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1244",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 441,
+ "bus2": 1833,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964510719345298, 45.73801997295966],
+ [4.96449895162743, 45.73800398257293]
+ ]
+ },
+ "length": 0.0019993720963717,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2345",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3108,
+ "bus2": 198,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964299275431529, 45.7385891005713],
+ [4.964264272577165, 45.73854392180715]
+ ]
+ },
+ "length": 0.0057128006007713,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4012",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2244,
+ "bus2": 4886,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964547700386225, 45.73801370604721],
+ [4.964439172513151, 45.73786772048844],
+ [4.964444177119184, 45.73786241837054]
+ ]
+ },
+ "length": 0.0189989762344716,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1245",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1833,
+ "bus2": 1834,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96449895162743, 45.73800398257293],
+ [4.964399365763311, 45.73786865255626],
+ [4.964631577039423, 45.73761657068017],
+ [4.964629859448765, 45.73758060440638]
+ ]
+ },
+ "length": 0.0542616673342133,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line414",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 873,
+ "bus2": 750,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964289723841232, 45.73870082731759],
+ [4.964070768491324, 45.73870671870665]
+ ]
+ },
+ "length": 0.017053240950427,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2114",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 873,
+ "bus2": 2841,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964289723841232, 45.73870082731759],
+ [4.964335562248609, 45.73874947004877],
+ [4.964387501263031, 45.7388655631196]
+ ]
+ },
+ "length": 0.0199990456917288,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1662",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2319,
+ "bus2": 2318,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965749812771702, 45.73787625327925],
+ [4.965774230664155, 45.73786884000859]
+ ]
+ },
+ "length": 0.0020713364128582,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1259",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 198,
+ "bus2": 1850,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964264272577165, 45.73854392180715],
+ [4.964264235958905, 45.7385364243123]
+ ]
+ },
+ "length": 0.0008333230108893,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line34",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 198,
+ "bus2": 199,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964264272577165, 45.73854392180715],
+ [4.963785020541142, 45.73792534316028]
+ ]
+ },
+ "length": 0.0782186277177634,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1260",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1850,
+ "bus2": 1851,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964264235958905, 45.7385364243123],
+ [4.96426419637153, 45.73852617239019],
+ [4.964246811848618, 45.73850374229704],
+ [4.964295208166546, 45.7384861542162]
+ ]
+ },
+ "length": 0.008219598467182,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4128",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5002,
+ "bus2": 5003,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966068033230046, 45.73854969028852],
+ [4.966131857231558, 45.73854451325678]
+ ]
+ },
+ "length": 0.005000468856018,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 147,
+ "bus2": 146,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96395197494093, 45.7380834639623],
+ [4.964252163804259, 45.73847286744663]
+ ]
+ },
+ "length": 0.0491838494724766,
+ "params_id": "T_AL_70_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4129",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5003,
+ "bus2": 5004,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966131857231558, 45.73854451325678],
+ [4.966144611671658, 45.73854347628841]
+ ]
+ },
+ "length": 0.0009993128878082,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4130",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5004,
+ "bus2": 5005,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966144611671658, 45.73854347628841],
+ [4.966221190525608, 45.73853727122765]
+ ]
+ },
+ "length": 0.0059996999556732,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1021",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 570,
+ "bus2": 1583,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966135101225179, 45.73852254528428],
+ [4.96614781966638, 45.7385212931198]
+ ]
+ },
+ "length": 0.0009995789954377,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1022",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1583,
+ "bus2": 1584,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96614781966638, 45.7385212931198],
+ [4.966152771529289, 45.73852080803084]
+ ]
+ },
+ "length": 0.0003891436092389,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line587",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 146,
+ "bus2": 1118,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96395197494093, 45.7380834639623],
+ [4.963939739555462, 45.73806763749647]
+ ]
+ },
+ "length": 0.0020002632179181,
+ "params_id": "T_AL_70_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1023",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1584,
+ "bus2": 1585,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966152771529289, 45.73852080803084],
+ [4.966173960655363, 45.73851872728084]
+ ]
+ },
+ "length": 0.0016652315367893,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4013",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4886,
+ "bus2": 2182,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964444177119184, 45.73786241837054],
+ [4.96463372403091, 45.73766152852276],
+ [4.964668772496811, 45.73761479951217]
+ ]
+ },
+ "length": 0.0326278795576607,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line338",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 750,
+ "bus2": 751,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964070768491324, 45.73870671870665],
+ [4.964074290125498, 45.73878020652378],
+ [4.964094282222768, 45.73878724583392]
+ ]
+ },
+ "length": 0.0099140527275263,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line513",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 750,
+ "bus2": 1020,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964070768491324, 45.73870671870665],
+ [4.963808763795043, 45.73871376144375]
+ ]
+ },
+ "length": 0.0204060882306732,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4131",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5005,
+ "bus2": 5006,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966221190525608, 45.73853727122765],
+ [4.96638249761217, 45.73853210533971]
+ ]
+ },
+ "length": 0.0125672273490958,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2115",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2841,
+ "bus2": 2842,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964387501263031, 45.7388655631196],
+ [4.964387947426963, 45.73886656085501]
+ ]
+ },
+ "length": 0.0001162037823713,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2116",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2842,
+ "bus2": 2843,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964387947426963, 45.73886656085501],
+ [4.964393383784293, 45.73887702847927]
+ ]
+ },
+ "length": 0.0012379799892217,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4132",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5006,
+ "bus2": 345,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96638249761217, 45.73853210533971],
+ [4.966427240851997, 45.7385284734373]
+ ]
+ },
+ "length": 0.0035055677178873,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3182",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 345,
+ "bus2": 4018,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966427240851997, 45.7385284734373],
+ [4.966412768224104, 45.73851991895285],
+ [4.96641420877874, 45.73851643757229]
+ ]
+ },
+ "length": 0.0018768720471732,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line110",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 345,
+ "bus2": 346,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966427240851997, 45.7385284734373],
+ [4.966473521113746, 45.73852687587556]
+ ]
+ },
+ "length": 0.0036062449539755,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3183",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4018,
+ "bus2": 4019,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96641420877874, 45.73851643757229],
+ [4.966421794051887, 45.73849815754939]
+ ]
+ },
+ "length": 0.0021157819220978,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4313",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1020,
+ "bus2": 5197,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963808763795043, 45.73871376144375],
+ [4.963807861265371, 45.73869027933681]
+ ]
+ },
+ "length": 0.0026108922941206,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1808",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1020,
+ "bus2": 2493,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963808763795043, 45.73871376144375],
+ [4.963718891198381, 45.73871618029157]
+ ]
+ },
+ "length": 0.0069996890251837,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3843",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 346,
+ "bus2": 4719,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966473521113746, 45.73852687587556],
+ [4.966755152046447, 45.73918277835366]
+ ]
+ },
+ "length": 0.0761248081615365,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3588",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 346,
+ "bus2": 4444,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966473521113746, 45.73852687587556],
+ [4.966880551612587, 45.73849680452578]
+ ]
+ },
+ "length": 0.0318539546392073,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5197,
+ "bus2": 5198,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963807861265371, 45.73869027933681],
+ [4.963806843225488, 45.73866410844905]
+ ]
+ },
+ "length": 0.0029098739269281,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1809",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2493,
+ "bus2": 921,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963718891198381, 45.73871618029157],
+ [4.963416931799182, 45.73872430139771]
+ ]
+ },
+ "length": 0.0235179522513829,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1543",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2182,
+ "bus2": 2183,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964668772496811, 45.73761479951217],
+ [4.964694464150002, 45.73761521506726]
+ ]
+ },
+ "length": 0.0020000796630264,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2019",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2182,
+ "bus2": 2734,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964668772496811, 45.73761479951217],
+ [4.964669006017743, 45.73759680879945]
+ ]
+ },
+ "length": 0.0019996818008195,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2020",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2734,
+ "bus2": 2735,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964669006017743, 45.73759680879945],
+ [4.964669322462765, 45.7375724790019],
+ [4.964516827801912, 45.73736721224008],
+ [4.964550498084664, 45.73726470547585],
+ [4.964714550721385, 45.73720055297952]
+ ]
+ },
+ "length": 0.0547361961355345,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1544",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2183,
+ "bus2": 2184,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964694464150002, 45.73761521506726],
+ [4.964736957699373, 45.73761590327503],
+ [4.964994169236909, 45.73794113947151],
+ [4.964942681060684, 45.73796664969664],
+ [4.964989303413325, 45.73802766903388]
+ ]
+ },
+ "length": 0.0572302368153654,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3811",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1834,
+ "bus2": 4686,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964629859448765, 45.73758060440638],
+ [4.964618117042615, 45.73756460444032]
+ ]
+ },
+ "length": 0.0019994205494919,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3812",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4686,
+ "bus2": 4687,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964618117042615, 45.73756460444032],
+ [4.964477236101665, 45.73737264012023],
+ [4.964521132064454, 45.73724198889518],
+ [4.964821674409172, 45.73712873182915]
+ ]
+ },
+ "length": 0.0654695205155956,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line525",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1851,
+ "bus2": 147,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964252163804259, 45.73847286744663],
+ [4.964258060030759, 45.73848192905675],
+ [4.964277527287557, 45.73846559440268],
+ [4.964295208166546, 45.7384861542162]
+ ]
+ },
+ "length": 0.0034714457404252,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line588",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1118,
+ "bus2": 1119,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963939739555462, 45.73806763749647],
+ [4.963684793044012, 45.73773775517096]
+ ]
+ },
+ "length": 0.0416898170124738,
+ "params_id": "T_AL_70_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line446",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 921,
+ "bus2": 922,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963416931799182, 45.73872430139771],
+ [4.963302642840888, 45.73878535183302],
+ [4.962829897366068, 45.73879641518248],
+ [4.962814040532729, 45.73880948751754]
+ ]
+ },
+ "length": 0.0499067215902113,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2710",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 921,
+ "bus2": 3516,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963416931799182, 45.73872430139771],
+ [4.963398996550705, 45.73873718842353]
+ ]
+ },
+ "length": 0.002000000406419,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2711",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3516,
+ "bus2": 3517,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963398996550705, 45.73873718842353],
+ [4.963324954976326, 45.73879036562378],
+ [4.963300989515336, 45.7388269330034],
+ [4.963303170042107, 45.73914193866987],
+ [4.963291659341217, 45.73917011309167]
+ ]
+ },
+ "length": 0.050995699586163,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3589",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4444,
+ "bus2": 4445,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966880551612587, 45.73849680452578],
+ [4.966909055576143, 45.73849338198927],
+ [4.966916631945729, 45.73849186318009]
+ ]
+ },
+ "length": 0.0028641060648262,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1663",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 651,
+ "bus2": 2319,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965774230664155, 45.73786884000859],
+ [4.965846609451201, 45.73784685470286],
+ [4.965911994183847, 45.73792009941256],
+ [4.965883449031353, 45.73797296861514],
+ [4.965578269249133, 45.73809980354573],
+ [4.965639238618598, 45.73818476394621],
+ [4.965721940402679, 45.73830000078299],
+ [4.965840160537955, 45.73846471558547],
+ [4.965879397435174, 45.73851938143104],
+ [4.96591426814956, 45.73850903176411],
+ [4.965905552164909, 45.73849504039023]
+ ]
+ },
+ "length": 0.1047828220836059,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3590",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4445,
+ "bus2": 307,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966916631945729, 45.73849186318009],
+ [4.966934739302341, 45.73848824321975]
+ ]
+ },
+ "length": 0.001465559166063,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4278",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5163,
+ "bus2": 651,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965905552164909, 45.73849504039023],
+ [4.965894046249666, 45.73847862092615],
+ [4.965881287996398, 45.73848226842815],
+ [4.965617501401622, 45.73810702199559],
+ [4.965879600063498, 45.73799438364752]
+ ]
+ },
+ "length": 0.0714927558180307,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line331",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 306,
+ "bus2": 741,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966923846400905, 45.73856641666062],
+ [4.966932457213522, 45.73858627049101]
+ ]
+ },
+ "length": 0.0023061954219882,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line460",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 306,
+ "bus2": 940,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966923846400905, 45.73856641666062],
+ [4.966904058672045, 45.73857952771669],
+ [4.966861332364058, 45.73858555198233]
+ ]
+ },
+ "length": 0.0055122134429526,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3803",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 199,
+ "bus2": 4679,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963785020541142, 45.73792534316028],
+ [4.963773037764453, 45.73790942074913]
+ ]
+ },
+ "length": 0.0020004079740598,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3804",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4679,
+ "bus2": 330,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963773037764453, 45.73790942074913],
+ [4.963677814127196, 45.73778302565311]
+ ]
+ },
+ "length": 0.015883325342187,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line89",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 307,
+ "bus2": 306,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966923846400905, 45.73856641666062],
+ [4.966934739302341, 45.73848824321975]
+ ]
+ },
+ "length": 0.008729942494233,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3906",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 741,
+ "bus2": 4776,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966932457213522, 45.73858627049101],
+ [4.966974236946941, 45.73868254495371]
+ ]
+ },
+ "length": 0.0111836711773385,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1873",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 741,
+ "bus2": 2571,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966932457213522, 45.73858627049101],
+ [4.966944711871314, 45.73857289490283],
+ [4.966942396755723, 45.73854274867939],
+ [4.967039911883393, 45.73853347790435]
+ ]
+ },
+ "length": 0.0127807354164762,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4517",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 940,
+ "bus2": 5409,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966861332364058, 45.73858555198233],
+ [4.966854561154346, 45.73856061411885],
+ [4.966859127692572, 45.73855744654087]
+ ]
+ },
+ "length": 0.0005002593837252,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4518",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5409,
+ "bus2": 5410,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966859127692572, 45.73855744654087],
+ [4.966885408608472, 45.73853925041993],
+ [4.967086714558416, 45.73851779829013],
+ [4.967153198292993, 45.73851071299938],
+ [4.967179562034882, 45.73852652304286]
+ ]
+ },
+ "length": 0.0266592078044351,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3907",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4776,
+ "bus2": 4080,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966974236946941, 45.73868254495371],
+ [4.966976101032848, 45.73868684905409]
+ ]
+ },
+ "length": 0.0004998988670749,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3240",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4080,
+ "bus2": 4081,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966976101032848, 45.73868684905409],
+ [4.966984130069958, 45.73870394401352]
+ ]
+ },
+ "length": 0.0020001557972112,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1874",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2571,
+ "bus2": 2572,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967039911883393, 45.73853347790435],
+ [4.967088720798991, 45.73852884128122],
+ [4.967092347593016, 45.73853774890823]
+ ]
+ },
+ "length": 0.0048629663518772,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line102",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 330,
+ "bus2": 331,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963677814127196, 45.73778302565311],
+ [4.963753918031129, 45.73771465018205]
+ ]
+ },
+ "length": 0.0096352240810242,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3241",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4081,
+ "bus2": 4082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966984130069958, 45.73870394401352],
+ [4.967040504754998, 45.73882396476578],
+ [4.967077614525938, 45.73903553358095],
+ [4.967098205301746, 45.7390806352544]
+ ]
+ },
+ "length": 0.0429974144606054,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1875",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2572,
+ "bus2": 2573,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967092347593016, 45.73853774890823],
+ [4.967093600205398, 45.73854082511308]
+ ]
+ },
+ "length": 0.0003555351492179,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1876",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2573,
+ "bus2": 2574,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967093600205398, 45.73854082511308],
+ [4.967096686551868, 45.73854837715886]
+ ]
+ },
+ "length": 0.000873073871471,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3603",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2318,
+ "bus2": 4459,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965749812771702, 45.73787625327925],
+ [4.965740732820078, 45.73785813867644],
+ [4.965833183197056, 45.73782844585855],
+ [4.965707994515488, 45.73767175276756],
+ [4.965586043737275, 45.73771951868912],
+ [4.965523531768788, 45.73764127362278],
+ [4.965520943090657, 45.73761103478463],
+ [4.965485033672116, 45.73756303312003]
+ ]
+ },
+ "length": 0.0581020815410653,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4279",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5164,
+ "bus2": 5163,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965879600063498, 45.73799438364752],
+ [4.965896378940283, 45.73798717632106],
+ [4.965906059884657, 45.73798800270665]
+ ]
+ },
+ "length": 0.00229101978137,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3387",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 762,
+ "bus2": 4238,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963640385938517, 45.73773252953077],
+ [4.963550347283213, 45.73761321427028]
+ ]
+ },
+ "length": 0.0149990621636114,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line346",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 331,
+ "bus2": 762,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963640385938517, 45.73773252953077],
+ [4.963753918031129, 45.73771465018205]
+ ]
+ },
+ "length": 0.0090567371203615,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line877",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1408,
+ "bus2": 331,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963753918031129, 45.73771465018205],
+ [4.963728252376153, 45.73771370270651]
+ ]
+ },
+ "length": 0.0020002933298367,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3844",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4719,
+ "bus2": 4720,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966755152046447, 45.73918277835366],
+ [4.966757041384764, 45.73918707286457]
+ ]
+ },
+ "length": 0.0004994537193106,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4519",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5410,
+ "bus2": 5411,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967179562034882, 45.73852652304286],
+ [4.967184445653658, 45.73852945112759]
+ ]
+ },
+ "length": 0.0005003748354409,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line514",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 922,
+ "bus2": 1022,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962814040532729, 45.73880948751754],
+ [4.962828539643373, 45.73880729390306],
+ [4.962835039080114, 45.73880098470804],
+ [4.962852473515341, 45.73880103581867],
+ [4.962859281896754, 45.73880820381644]
+ ]
+ },
+ "length": 0.0031783382162706,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line879",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1409,
+ "bus2": 1410,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963688180820572, 45.73769912193055],
+ [4.963686759093996, 45.7376973458852],
+ [4.963845465167481, 45.73764717336032],
+ [4.963859714633435, 45.73767153122744]
+ ]
+ },
+ "length": 0.0167042598176257,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line878",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1409,
+ "bus2": 1408,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963728252376153, 45.73771370270651],
+ [4.96369901950342, 45.73771262268939],
+ [4.963688180820572, 45.73769912193055]
+ ]
+ },
+ "length": 0.0039997288262935,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4447",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4687,
+ "bus2": 5338,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964821674409172, 45.73712873182915],
+ [4.964834124266964, 45.73714447216054]
+ ]
+ },
+ "length": 0.0019998907630107,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3897",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4687,
+ "bus2": 4769,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964821674409172, 45.73712873182915],
+ [4.964831602864755, 45.73711213436472]
+ ]
+ },
+ "length": 0.0020000468184538,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1743",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1022,
+ "bus2": 2415,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962859281896754, 45.73880820381644],
+ [4.962872412011224, 45.73881207331538],
+ [4.962873076280744, 45.73882949390529],
+ [4.962865287680672, 45.73883653539589],
+ [4.962836266744469, 45.73883721449722]
+ ]
+ },
+ "length": 0.0051867189317516,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line4448",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5338,
+ "bus2": 5339,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964834124266964, 45.73714447216054],
+ [4.964854510441288, 45.7371702704783],
+ [4.965107597122434, 45.73714003876493],
+ [4.96519319602257, 45.73710202739505],
+ [4.965208295435371, 45.73704136284544]
+ ]
+ },
+ "length": 0.0379922359902965,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3898",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4769,
+ "bus2": 4770,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964831602864755, 45.73711213436472],
+ [4.964921677602302, 45.73696166011555],
+ [4.965022685148439, 45.73692328800584],
+ [4.965087317927479, 45.73693077587181],
+ [4.965111247117847, 45.73694731850593]
+ ]
+ },
+ "length": 0.0347940676041285,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1744",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2415,
+ "bus2": 2416,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962836266744469, 45.73883721449722],
+ [4.962814051602552, 45.73883773433524]
+ ]
+ },
+ "length": 0.0017299015909678,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2388",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2416,
+ "bus2": 3161,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962814051602552, 45.73883773433524],
+ [4.962814418019343, 45.7388486447235],
+ [4.962867898996664, 45.73884599800154],
+ [4.962877359920165, 45.73885298690654],
+ [4.962883078694469, 45.73886156664981],
+ [4.962892422671395, 45.7389636153791],
+ [4.962888818684407, 45.73897160313579]
+ ]
+ },
+ "length": 0.0185919906156647,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line880",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1410,
+ "bus2": 1411,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963859714633435, 45.73767153122744],
+ [4.963861142878668, 45.73767398223961]
+ ]
+ },
+ "length": 0.0002942264127686,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line881",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1411,
+ "bus2": 1412,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963861142878668, 45.73767398223961],
+ [4.963861157007316, 45.73767400891371]
+ ]
+ },
+ "length": 3.1620790672645624e-6,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line882",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1412,
+ "bus2": 1413,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963861157007316, 45.73767400891371],
+ [4.963866392190475, 45.73768295999191]
+ ]
+ },
+ "length": 0.0010750793346875,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3388",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4238,
+ "bus2": 4239,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963550347283213, 45.73761321427028],
+ [4.963549619934052, 45.73761225011894]
+ ]
+ },
+ "length": 0.000121194774666,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3389",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4239,
+ "bus2": 1835,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963549619934052, 45.73761225011894],
+ [4.963474814846975, 45.73751312892872]
+ ]
+ },
+ "length": 0.0124606788020934,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3242",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4082,
+ "bus2": 4083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967098205301746, 45.7390806352544],
+ [4.967099842838252, 45.73908423353426]
+ ]
+ },
+ "length": 0.0004197500645236,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3243",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4083,
+ "bus2": 4084,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967099842838252, 45.73908423353426],
+ [4.967227282552781, 45.73936342979869]
+ ]
+ },
+ "length": 0.0325780757880506,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2756",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1835,
+ "bus2": 3561,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963474814846975, 45.73751312892872],
+ [4.963462479145761, 45.73749734977482]
+ ]
+ },
+ "length": 0.0019993821121835,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1246",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1835,
+ "bus2": 1836,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963474814846975, 45.73751312892872],
+ [4.963497048017847, 45.73750411099638]
+ ]
+ },
+ "length": 0.0019997099976804,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2389",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3161,
+ "bus2": 3162,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962888818684407, 45.73897160313579],
+ [4.962863535513303, 45.73897033144124]
+ ]
+ },
+ "length": 0.001972777034415,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2757",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3561,
+ "bus2": 3562,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963462479145761, 45.73749734977482],
+ [4.963265346496066, 45.73724528264585]
+ ]
+ },
+ "length": 0.0319422828269449,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1247",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1836,
+ "bus2": 1837,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963497048017847, 45.73750411099638],
+ [4.963510125291912, 45.73749879999892],
+ [4.963301207348012, 45.73723494661714]
+ ]
+ },
+ "length": 0.0347088808774535,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1458",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3162,
+ "bus2": 2082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962863535513303, 45.73897033144124],
+ [4.962863811421402, 45.73898311628438],
+ [4.962886393534187, 45.73898328097514],
+ [4.962888281712707, 45.73900183413399],
+ [4.962866468943565, 45.73904580437819],
+ [4.962861951193626, 45.73907612852811],
+ [4.962847860515478, 45.7390938853876],
+ [4.962825142287602, 45.73910487687795]
+ ]
+ },
+ "length": 0.0167941126161813,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1459",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2082,
+ "bus2": 2083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962825142287602, 45.73910487687795],
+ [4.962799247099212, 45.73910478969897]
+ ]
+ },
+ "length": 0.0020153568585986,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3604",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4459,
+ "bus2": 4460,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965485033672116, 45.73756303312003],
+ [4.96546027566689, 45.73752995597727]
+ ]
+ },
+ "length": 0.0041507574815767,
+ "params_id": "S_AL_240_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3165",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4460,
+ "bus2": 4000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96546027566689, 45.73752995597727],
+ [4.965446080316029, 45.7375363465867],
+ [4.965496852966263, 45.73761481266828],
+ [4.965497978548156, 45.73764967660889],
+ [4.965547551761585, 45.73771890809485],
+ [4.965512430883249, 45.73773316122202]
+ ]
+ },
+ "length": 0.0252178508163276,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2172",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4460,
+ "bus2": 2907,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96546027566689, 45.73752995597727],
+ [4.965431466504765, 45.73754366516221],
+ [4.965472463724308, 45.73761905663634],
+ [4.965472509552071, 45.73764477321136],
+ [4.965378471563087, 45.73767863466824]
+ ]
+ },
+ "length": 0.0200545333061928,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3244",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4084,
+ "bus2": 4085,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967227282552781, 45.73936342979869],
+ [4.967229191598985, 45.73936759781802]
+ ]
+ },
+ "length": 0.0004865014431651,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3245",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4085,
+ "bus2": 4086,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.967229191598985, 45.73936759781802],
+ [4.967234131662368, 45.73937842801658]
+ ]
+ },
+ "length": 0.0012636431424746,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2826",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3562,
+ "bus2": 3633,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963265346496066, 45.73724528264585],
+ [4.963242634353148, 45.73725369063208]
+ ]
+ },
+ "length": 0.0019994910941135,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2827",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3633,
+ "bus2": 3634,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963242634353148, 45.73725369063208],
+ [4.962982391175434, 45.73735002242246],
+ [4.962946816651661, 45.73730494669624],
+ [4.96288579730475, 45.73732738442268]
+ ]
+ },
+ "length": 0.033998515467894,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1248",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1837,
+ "bus2": 1838,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963301207348012, 45.73723494661714],
+ [4.963299402071233, 45.73723267545407]
+ ]
+ },
+ "length": 0.0002888989592709,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line1249",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1838,
+ "bus2": 1839,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.963299402071233, 45.73723267545407],
+ [4.963298088674567, 45.73723101389017]
+ ]
+ },
+ "length": 0.0002110792502328,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2173",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2907,
+ "bus2": 2908,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965378471563087, 45.73767863466824],
+ [4.965350955659803, 45.73765779229969],
+ [4.965336428176132, 45.73765938380543]
+ ]
+ },
+ "length": 0.0042991690906046,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line3166",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4000,
+ "bus2": 4001,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965512430883249, 45.73773316122202],
+ [4.965496973365225, 45.73772255032398]
+ ]
+ },
+ "length": 0.0016846915662651,
+ "params_id": "S_AL_150_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2828",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3634,
+ "bus2": 3259,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96288579730475, 45.73732738442268],
+ [4.962834378987221, 45.73734628484756],
+ [4.962682042602933, 45.73733274648558]
+ ]
+ },
+ "length": 0.0164709967796539,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2480",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3259,
+ "bus2": 3260,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962682042602933, 45.73733274648558],
+ [4.96269358237546, 45.73734882339289]
+ ]
+ },
+ "length": 0.0019999002187924,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "line2481",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3260,
+ "bus2": 3261,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.96269358237546, 45.73734882339289],
+ [4.962914757208745, 45.73765675998811]
+ ]
+ },
+ "length": 0.0383109844275194,
+ "params_id": "S_AL_95_bt",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line513",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 505000,
+ "bus2": 873000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.934853888991207, 45.75111906308752],
+ [4.934834644632761, 45.75111833830388],
+ [4.934815400274816, 45.7511176135168],
+ [4.934796143073234, 45.75111688902378],
+ [4.934408207723045, 45.75110237305132],
+ [4.934405208834641, 45.75109114554304]
+ ]
+ },
+ "length": 0.0344979481355189,
+ "params_id": "S_AL_240_SO",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line522",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 873000,
+ "bus2": 740000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.934405208834641, 45.75109114554304],
+ [4.934012554090829, 45.74963878116863]
+ ]
+ },
+ "length": 0.164291047512965,
+ "params_id": "S_AL_240_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line535",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 740000,
+ "bus2": 1291000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.934012554090829, 45.74963878116863],
+ [4.934089975267011, 45.74961898670725],
+ [4.934271103007967, 45.74957267733033],
+ [4.934362391718408, 45.74951109178252],
+ [4.934444593253748, 45.74939484320697],
+ [4.934510542332508, 45.74934830938341],
+ [4.934700162559126, 45.74911618244491],
+ [4.93600772006941, 45.7480804416568],
+ [4.936522791471793, 45.74733488887927],
+ [4.937125734895893, 45.74546568990075],
+ [4.937140380788406, 45.74542028316572],
+ [4.937316748689931, 45.74487348286667],
+ [4.938907342243382, 45.7450139476745],
+ [4.941973039404839, 45.74502744476446],
+ [4.94423254711822, 45.74512080067002],
+ [4.945957349084773, 45.74537956929375],
+ [4.94661141421717, 45.74545347790473],
+ [4.947713015293973, 45.74547556567691],
+ [4.948514022793406, 45.7454218233143],
+ [4.948511717973904, 45.74537326847669],
+ [4.947946666883481, 45.74541439243114],
+ [4.947923168242962, 45.7454139309383]
+ ]
+ },
+ "length": 1.5369655813706598,
+ "params_id": "S_AL_240_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line746",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1291000,
+ "bus2": 1298000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.947923168242962, 45.7454139309383],
+ [4.947925694069067, 45.74541893105686],
+ [4.94794484193671, 45.74542849533407],
+ [4.948542625889133, 45.74537434957136],
+ [4.948544760006484, 45.74541930775377],
+ [4.949076751708565, 45.74538622349836],
+ [4.950342397648638, 45.74539726599526],
+ [4.950783116637014, 45.74539150337244],
+ [4.951100203642397, 45.74538141754201],
+ [4.950552409384916, 45.74327504293316]
+ ]
+ },
+ "length": 0.4907623183893089,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line812",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1298000,
+ "bus2": 1319000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950552409384916, 45.74327504293316],
+ [4.949906323306207, 45.74079051368596],
+ [4.9495977722481, 45.74087151043574],
+ [4.949459670739951, 45.74061638057695],
+ [4.949470397586742, 45.74060376270168],
+ [4.949480260064897, 45.74059216412196]
+ ]
+ },
+ "length": 0.339788688417405,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line861",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1319000,
+ "bus2": 953000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.949480260064897, 45.74059216412196],
+ [4.949508035055415, 45.74058553146511],
+ [4.949525960416786, 45.74059049708699],
+ [4.949550034971421, 45.74059717386969],
+ [4.949642047994629, 45.74074805831734],
+ [4.951974042481999, 45.74017885100903],
+ [4.951928161380414, 45.74010610723776],
+ [4.951952004647032, 45.74009384958142],
+ [4.951951711472315, 45.74009336132657]
+ ]
+ },
+ "length": 0.2251476354568539,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line889",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 953000,
+ "bus2": 954000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.951951711472315, 45.74009336132657],
+ [4.95135518144123, 45.73908607705976],
+ [4.950827523652318, 45.73920908836617],
+ [4.950700727347117, 45.73896168111497]
+ ]
+ },
+ "length": 0.193697358758526,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line921",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 954000,
+ "bus2": 1315000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950700727347117, 45.73896168111497],
+ [4.950683002753226, 45.73892710485574],
+ [4.950687188982982, 45.73891022842621],
+ [4.950690491372931, 45.73889693720407]
+ ]
+ },
+ "length": 0.007486392724792,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line924",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1315000,
+ "bus2": 1288000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.950690491372931, 45.73889693720407],
+ [4.950711313253716, 45.73888927797029],
+ [4.950728832749745, 45.738894909956],
+ [4.95076690045993, 45.73890714755486],
+ [4.950899600369789, 45.73912944686171],
+ [4.950900983143112, 45.73913176406161],
+ [4.953593777785205, 45.7384740021168],
+ [4.953440535815594, 45.73822569311434],
+ [4.953029680646615, 45.73755999185273],
+ [4.952985755893911, 45.73755325651908],
+ [4.952966927517592, 45.73755037388134]
+ ]
+ },
+ "length": 0.369445414461516,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line994",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1288000,
+ "bus2": 1287000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.952966927517592, 45.73755037388134],
+ [4.952970678553071, 45.73753247231445],
+ [4.953016249644159, 45.73753652280846],
+ [4.953055307379572, 45.73752687170771],
+ [4.953208603799049, 45.73775342303767],
+ [4.953447302371143, 45.73810549028116],
+ [4.953663318105447, 45.73841276308804],
+ [4.953761084376749, 45.73847794111495],
+ [4.953925398058722, 45.73844435905789],
+ [4.953998793332333, 45.73844390760684],
+ [4.954060320030075, 45.73845420174916],
+ [4.954767759595066, 45.73863168464968],
+ [4.955017983505683, 45.73856131467854],
+ [4.955161038663632, 45.7383384463276],
+ [4.955242819176544, 45.73825945760687],
+ [4.955409783643996, 45.73815572513228],
+ [4.955594842131863, 45.73784388552754],
+ [4.955777692133985, 45.73761533480327],
+ [4.955829734353092, 45.73752495050727],
+ [4.95586278507185, 45.73745716233029],
+ [4.955892585629407, 45.73733756484492],
+ [4.955886559278371, 45.73717826937097],
+ [4.955798001969372, 45.73684202052682],
+ [4.955706183839841, 45.73650205808818],
+ [4.955615984735573, 45.7361636781212],
+ [4.955528804272737, 45.73582360739611],
+ [4.955507372293894, 45.73573007698997],
+ [4.955536441198181, 45.73564346050048],
+ [4.955563623646242, 45.73559851135201],
+ [4.955578510902217, 45.73559098066524],
+ [4.955566421845806, 45.73554386044366],
+ [4.955773753814144, 45.73545687330306],
+ [4.955825102506913, 45.73544919373419],
+ [4.955876823497322, 45.735449606879],
+ [4.955910336807397, 45.73545638601512],
+ [4.955986417604017, 45.73547408969552],
+ [4.956017067965745, 45.73548121467279],
+ [4.956043948302113, 45.73551202979766]
+ ]
+ },
+ "length": 0.630121475715793,
+ "params_id": "S_AL_240_SO",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1076",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1287000,
+ "bus2": 1286000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956043948302113, 45.73551202979766],
+ [4.956031484106162, 45.7355207732151],
+ [4.956016138640789, 45.73550463148617],
+ [4.955974360377148, 45.73549570487705],
+ [4.955888414300881, 45.73547734028486],
+ [4.955812288894236, 45.73547436417319],
+ [4.955759296562427, 45.73548694295187],
+ [4.955591431270563, 45.73556210811316],
+ [4.95560115523951, 45.73560193823433],
+ [4.955575235468778, 45.73561264290327],
+ [4.955533428485482, 45.73573304256136],
+ [4.955623354301448, 45.73609514809851],
+ [4.955702063808622, 45.73636983992795],
+ [4.95579335174877, 45.73671568376572],
+ [4.95587561573046, 45.73703098876224],
+ [4.955900832890308, 45.73714298307286],
+ [4.955918780146928, 45.73731803214995],
+ [4.955880878259301, 45.7374540485829],
+ [4.955818094050436, 45.73758504672529],
+ [4.95571406195425, 45.73772208434256],
+ [4.955612171333923, 45.73784848601255],
+ [4.955488163126232, 45.73805444663595],
+ [4.955430610837714, 45.73815900180517],
+ [4.955424792507604, 45.73821907914153],
+ [4.955448026578344, 45.738278064482],
+ [4.955532854833927, 45.73834146354646],
+ [4.955646676128739, 45.73837820738113],
+ [4.955771405970204, 45.73837755597182],
+ [4.955833239579399, 45.73836539202305],
+ [4.955871376723359, 45.73835341201361],
+ [4.956026723916627, 45.73843018855734],
+ [4.956176351271163, 45.73874759390392],
+ [4.956181431593408, 45.73878302260706],
+ [4.956166703989995, 45.73883092176693],
+ [4.956127443639037, 45.73891572395237],
+ [4.956128112590414, 45.73894355025951],
+ [4.956227263963253, 45.73907338834777],
+ [4.956268709832248, 45.7391111907987],
+ [4.956296113861096, 45.73912191115127],
+ [4.956540133369497, 45.73917989229741]
+ ]
+ },
+ "length": 0.5085815051709539,
+ "params_id": "S_AL_240_SO",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1119",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1286000,
+ "bus2": 1285000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956540133369497, 45.73917989229741],
+ [4.956686644194016, 45.73957834821236],
+ [4.956784880233747, 45.73956255244881],
+ [4.956790274849269, 45.73955975303269],
+ [4.956805769545054, 45.73955173093524]
+ ]
+ },
+ "length": 0.055597773628533,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1125",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1285000,
+ "bus2": 1275000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956805769545054, 45.73955173093524],
+ [4.956802389176359, 45.73954094492941],
+ [4.956783514974541, 45.73953819900303],
+ [4.956773365608019, 45.73953671664481],
+ [4.956724868276837, 45.73954414996297],
+ [4.956588705287621, 45.73916836158606],
+ [4.956590211563276, 45.73916813738952]
+ ]
+ },
+ "length": 0.049381536100774,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1128",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1275000,
+ "bus2": 1276000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.956590211563276, 45.73916813738952],
+ [4.9574004828912, 45.73904588982978],
+ [4.95791271659061, 45.73897721706705],
+ [4.958522714313755, 45.73893686348068],
+ [4.958503536796873, 45.73884032825598],
+ [4.95850242110051, 45.73883471931859],
+ [4.958507278623495, 45.73882766560496]
+ ]
+ },
+ "length": 0.1651155909781519,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1141",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1276000,
+ "bus2": 929000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.958507278623495, 45.73882766560496],
+ [4.95853078933913, 45.73882384877223],
+ [4.958540730331404, 45.73882932354635],
+ [4.958541745828243, 45.73883390864182],
+ [4.958563677530362, 45.73893320602062],
+ [4.958670666082522, 45.73892603465969]
+ ]
+ },
+ "length": 0.021032388089923,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1144",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 929000,
+ "bus2": 914000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.958670666082522, 45.73892603465969],
+ [4.959883573875087, 45.7388447523938],
+ [4.959942510917832, 45.73878666466919],
+ [4.959945775117695, 45.7387863723316]
+ ]
+ },
+ "length": 0.1030040053238849,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1150",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 914000,
+ "bus2": 913000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959945775117695, 45.7387863723316],
+ [4.960108931149272, 45.73877197263126],
+ [4.959402413398822, 45.73805485525463],
+ [4.95935517406077, 45.73798696194202]
+ ]
+ },
+ "length": 0.118024219916963,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1157",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 913000,
+ "bus2": 1282000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.95935517406077, 45.73798696194202],
+ [4.959263360437473, 45.73785502868565],
+ [4.959254914727904, 45.73784289385675]
+ ]
+ },
+ "length": 0.017812660865478,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1159",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1282000,
+ "bus2": 1279000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959254914727904, 45.73784289385675],
+ [4.959262619023578, 45.7378381229995],
+ [4.959278769029432, 45.73784548696938],
+ [4.959457101250193, 45.73792677160319]
+ ]
+ },
+ "length": 0.01806061181738,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1161",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1279000,
+ "bus2": 1316000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.959457101250193, 45.73792677160319],
+ [4.959539506826824, 45.73796433574488],
+ [4.959767785652898, 45.73744050795777],
+ [4.959828133973272, 45.73738508776525],
+ [4.960704666805936, 45.73708464619889],
+ [4.960720678055627, 45.73708613515478],
+ [4.960739787801594, 45.73708790272099],
+ [4.960749536320644, 45.73710147424123]
+ ]
+ },
+ "length": 0.154982241719371,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1167",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1316000,
+ "bus2": 1304000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960749536320644, 45.73710147424123],
+ [4.960740174659695, 45.73711326920607],
+ [4.96072979525635, 45.73712636619542],
+ [4.959872308799626, 45.73742186194769],
+ [4.959813628571298, 45.73745833980615],
+ [4.959618476114199, 45.7379219828892],
+ [4.959625846049425, 45.73804963341353],
+ [4.960267477108633, 45.73878086860401],
+ [4.960266999084436, 45.73878216700876]
+ ]
+ },
+ "length": 0.247114507605945,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1184",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1304000,
+ "bus2": 1303000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960266999084436, 45.73878216700876],
+ [4.960249289102349, 45.73883080263122],
+ [4.960179906024735, 45.73885852925228],
+ [4.960067246898769, 45.73886836406428],
+ [4.960077303420673, 45.73902537805807],
+ [4.960077316709229, 45.7390256567973],
+ [4.960091104079988, 45.73903468717842]
+ ]
+ },
+ "length": 0.0396010930357249,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1186",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1303000,
+ "bus2": 1283000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.960091104079988, 45.73903468717842],
+ [4.96011968477193, 45.73903501825975],
+ [4.960132662390182, 45.73902706352871],
+ [4.960133670766166, 45.73902583374149],
+ [4.960307672403199, 45.73881503520587],
+ [4.960975108547744, 45.73876612412163],
+ [4.962445412364442, 45.7387047284812],
+ [4.962445409300398, 45.73870412544466]
+ ]
+ },
+ "length": 0.195489447579978,
+ "params_id": "S_AL_150_PU",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1196",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1283000,
+ "bus2": 1284000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962445409300398, 45.73870412544466],
+ [4.962445872173599, 45.7386066001075],
+ [4.962452235162686, 45.73859716156536],
+ [4.962460458941739, 45.73858496099791]
+ ]
+ },
+ "length": 0.013499202927542,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1197",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1284000,
+ "bus2": 952000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962460458941739, 45.73858496099791],
+ [4.962478492915574, 45.73858437702606],
+ [4.962488315959219, 45.7385959933209],
+ [4.962500019197009, 45.73860983403072],
+ [4.962506920894191, 45.73870058887422],
+ [4.962508976327063, 45.73870055878569]
+ ]
+ },
+ "length": 0.0135495917010089,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1198",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1284000,
+ "bus2": 1295000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962460458941739, 45.73858496099791],
+ [4.96248306372969, 45.7385637824033],
+ [4.962483662938447, 45.73856340831882],
+ [4.962483200481335, 45.73855048381665],
+ [4.962475676465369, 45.73834215542708]
+ ]
+ },
+ "length": 0.0246617524093749,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1199",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 952000,
+ "bus2": 923000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.962508976327063, 45.73870055878569],
+ [4.964271843789176, 45.73867098248862],
+ [4.964710680877293, 45.73864011135382]
+ ]
+ },
+ "length": 0.171563703605549,
+ "params_id": "S_AL_150_PU",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1206",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 923000,
+ "bus2": 922000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964710680877293, 45.73864011135382],
+ [4.964923994213112, 45.7386251061686],
+ [4.964922099667358, 45.73862204497594]
+ ]
+ },
+ "length": 0.017055959863808,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1207",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 922000,
+ "bus2": 1321000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964922099667358, 45.73862204497594],
+ [4.964875228430449, 45.73854613373273],
+ [4.965040315249011, 45.73850356051809],
+ [4.965042911714355, 45.73850355371846],
+ [4.965062180606872, 45.73850352551388],
+ [4.965069722600271, 45.7385142048397]
+ ]
+ },
+ "length": 0.024585707139325,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1213",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1321000,
+ "bus2": 912000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965069722600271, 45.7385142048397],
+ [4.965057995696578, 45.73852491237226],
+ [4.965053117652362, 45.73852936540094],
+ [4.964928692668426, 45.73856198475284],
+ [4.964967023796365, 45.73861896752438]
+ ]
+ },
+ "length": 0.019464487402351,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1214",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 912000,
+ "bus2": 911000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.964967023796365, 45.73861896752438],
+ [4.964967439090402, 45.73861958791228],
+ [4.965999144972133, 45.73853954813616]
+ ]
+ },
+ "length": 0.080862341930947,
+ "params_id": "S_AL_150_PU",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1219",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 911000,
+ "bus2": 924000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.965999144972133, 45.73853954813616],
+ [4.966075646839055, 45.73853361502763]
+ ]
+ },
+ "length": 0.005990345667753,
+ "params_id": "S_AL_150_S3",
+ "ground": "ground"
+ },
+ {
+ "id": "mv_line1220",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 924000,
+ "bus2": 1294000,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.966075646839055, 45.73853361502763],
+ [4.966446756203762, 45.73850481893744],
+ [4.967412346930341, 45.73842727847661],
+ [4.968632733183615, 45.73830144670887],
+ [4.968602142577012, 45.73817254049829],
+ [4.968622530082306, 45.73813569574117],
+ [4.968629499909648, 45.7381231100194]
+ ]
+ },
+ "length": 0.221121252329989,
+ "params_id": "S_AL_150_PU",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 314,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2432.3856949832066, 279.37897303968185]
+ ]
+ },
+ {
+ "id": 47,
+ "bus": 2607,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2433.179637243938, 272.3777388794874]
+ ]
+ },
+ {
+ "id": 285,
+ "bus": 2607,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2381.108860594792, 569.9766431465541],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 175,
+ "bus": 2608,
+ "phases": "abcn",
+ "powers": [
+ [2421.252055695705, 363.44361670686527],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 2609,
+ "phases": "abcn",
+ "powers": [
+ [2411.4241442242223, 423.77632825362235],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 493,
+ "bus": 2609,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2417.407333694204, 388.1939756579451],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 549,
+ "bus": 929,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2363.7697401405635, 638.0794584779061],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 217,
+ "bus": 2382,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2344.6131780238015, 705.2246629073417]
+ ]
+ },
+ {
+ "id": 422,
+ "bus": 2382,
+ "phases": "abcn",
+ "powers": [
+ [2422.2772138757127, 356.54716220180387],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 501,
+ "bus": 2382,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2346.999224171061, 697.2427278043713],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 207,
+ "bus": 2546,
+ "phases": "abcn",
+ "powers": [
+ [2404.6433934878683, 460.69830680261157],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 223,
+ "bus": 2546,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2396.4470921212837, 501.5915812681552],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 430,
+ "bus": 2546,
+ "phases": "abcn",
+ "powers": [
+ [2327.777886666886, 758.9485424455935],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 637,
+ "bus": 2546,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2348.7344957318965, 691.3747524278559]
+ ]
+ },
+ {
+ "id": 577,
+ "bus": 2596,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2439.909365920717, 203.4577740662893],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 672,
+ "bus": 2596,
+ "phases": "abcn",
+ "powers": [
+ [2331.524085063689, 747.3608368810686],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 216,
+ "bus": 2597,
+ "phases": "abcn",
+ "powers": [
+ [2350.3642133275666, 685.814001347839],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 2598,
+ "phases": "abcn",
+ "powers": [
+ [2337.4287683016405, 728.6834243013363],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 70,
+ "bus": 2598,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2334.6329794111475, 737.5917781411828],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 345,
+ "bus": 2962,
+ "phases": "abcn",
+ "powers": [
+ [2387.448621623947, 542.8092287733876],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 136,
+ "bus": 2963,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2353.1887884311063, 676.0586555453502],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 407,
+ "bus": 2963,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2447.879014903639, 49.40757158607277],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 100,
+ "bus": 2964,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.9950186667766, 733.2666994345574]
+ ]
+ },
+ {
+ "id": 128,
+ "bus": 2964,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2351.676036404424, 681.3021352798057],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 299,
+ "bus": 2964,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2415.8795215821624, 397.59139444357515],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 497,
+ "bus": 3555,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2328.253019965499, 757.4897060404037],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 526,
+ "bus": 3555,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2437.243578754593, 233.2306102447708],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 607,
+ "bus": 3556,
+ "phases": "abcn",
+ "powers": [
+ [2434.396168150889, 261.2816033093667],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 361,
+ "bus": 3575,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2423.4216926378517, 348.68335117687093],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 489,
+ "bus": 3575,
+ "phases": "abcn",
+ "powers": [
+ [2374.3464039458304, 597.5214923374285],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 39,
+ "bus": 3576,
+ "phases": "abcn",
+ "powers": [
+ [2344.669365052958, 705.0378346711638],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 586,
+ "bus": 3576,
+ "phases": "abcn",
+ "powers": [
+ [2377.3532745302887, 585.4435820946015],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 611,
+ "bus": 3576,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2366.592550102731, 627.5288690840432]
+ ]
+ },
+ {
+ "id": 94,
+ "bus": 3577,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2384.3266178761673, 556.3626146883353]
+ ]
+ },
+ {
+ "id": 380,
+ "bus": 3577,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2417.1818418777575, 389.59558908193117]
+ ]
+ },
+ {
+ "id": 119,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [2403.6070931071727, 466.0748026878647],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 214,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2353.4077282518274, 675.2961160411169],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 270,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2441.1626527016997, 187.82354162895567],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 318,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [2358.651427399194, 656.7466968043236],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 462,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2399.4602324065604, 486.9736880316005],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 481,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [2345.228645221082, 703.1752138479662],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 568,
+ "bus": 4301,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2384.792071391344, 554.3641005373865]
+ ]
+ },
+ {
+ "id": 77,
+ "bus": 4302,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2405.9539904514168, 453.804115854569]
+ ]
+ },
+ {
+ "id": 265,
+ "bus": 4302,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2361.721742622243, 645.6184555610239]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 5147,
+ "phases": "abcn",
+ "powers": [
+ [2426.562854428562, 326.1065673106781],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 661,
+ "bus": 5147,
+ "phases": "abcn",
+ "powers": [
+ [2389.384184414002, 534.2246709090471],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 92,
+ "bus": 5148,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2416.02682277211, 396.6953130317368]
+ ]
+ },
+ {
+ "id": 625,
+ "bus": 5148,
+ "phases": "abcn",
+ "powers": [
+ [2408.124281383738, 442.1427655697861],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 87,
+ "bus": 5149,
+ "phases": "abcn",
+ "powers": [
+ [2372.3521664824248, 605.3907646485777],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 93,
+ "bus": 5150,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2364.349851343492, 635.9265367852267]
+ ]
+ },
+ {
+ "id": 529,
+ "bus": 5150,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2338.6292858605343, 724.8212490339195],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 41,
+ "bus": 5151,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2372.6761073451953, 604.1199130709851],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 434,
+ "bus": 5151,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.8360513044254, 571.1151167188597],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 646,
+ "bus": 5177,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2392.3307123624213, 520.870946034768]
+ ]
+ },
+ {
+ "id": 519,
+ "bus": 5178,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.0933175492796, 574.2025596363261],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 594,
+ "bus": 5178,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2392.564605713904, 519.7955244331347]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [2406.9098162848377, 448.70693777490595],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 58,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2419.7112944431856, 373.5639587536871]
+ ]
+ },
+ {
+ "id": 97,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2334.278394779038, 738.7131753281797]
+ ]
+ },
+ {
+ "id": 140,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2368.9456175720775, 618.5866477072499],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 152,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2438.678438150586, 217.71599627740528]
+ ]
+ },
+ {
+ "id": 215,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2330.8870581355213, 749.3452488352601]
+ ]
+ },
+ {
+ "id": 331,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2420.548725681698, 368.0986910277618],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 356,
+ "bus": 5179,
+ "phases": "abcn",
+ "powers": [
+ [2403.2247262521164, 468.04240712363236],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 106,
+ "bus": 156,
+ "phases": "abcn",
+ "powers": [
+ [2382.0615020314785, 565.9821377704243],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 171,
+ "bus": 156,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2376.6941060660924, 588.1138545607836],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 643,
+ "bus": 156,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2347.0951006057157, 696.9199153764292],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 124,
+ "bus": 157,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2436.6166245419927, 239.69189544335896]
+ ]
+ },
+ {
+ "id": 350,
+ "bus": 157,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2421.632152176491, 360.9023403646745],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 395,
+ "bus": 157,
+ "phases": "abcn",
+ "powers": [
+ [2418.28108248391, 382.7131900471866],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 498,
+ "bus": 260,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2396.44249312855, 501.61355330918263],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 634,
+ "bus": 260,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2342.815182816766, 711.1749425414863]
+ ]
+ },
+ {
+ "id": 582,
+ "bus": 261,
+ "phases": "abcn",
+ "powers": [
+ [2357.2886225077796, 661.6215911916864],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 57,
+ "bus": 459,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2385.4531098160455, 551.5126839924912]
+ ]
+ },
+ {
+ "id": 275,
+ "bus": 459,
+ "phases": "abcn",
+ "powers": [
+ [2340.4594095332614, 718.8897913191299],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 457,
+ "bus": 459,
+ "phases": "abcn",
+ "powers": [
+ [2378.828541356629, 579.4200122214775],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 544,
+ "bus": 459,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2394.38131536513, 511.36180573640195],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 593,
+ "bus": 459,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2445.27481231421, 123.22285501216675]
+ ]
+ },
+ {
+ "id": 654,
+ "bus": 671,
+ "phases": "abcn",
+ "powers": [
+ [2363.8217250071716, 637.8868489942113],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 312,
+ "bus": 809,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2356.857086472276, 663.1571862545551],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 524,
+ "bus": 1961,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2398.685287531307, 490.7766000091022]
+ ]
+ },
+ {
+ "id": 573,
+ "bus": 1961,
+ "phases": "abcn",
+ "powers": [
+ [2425.938599168151, 330.71844944259215],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 251,
+ "bus": 2042,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2353.0862850135986, 676.4153420913404],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 2139,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2429.708012399468, 301.780970601978],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 75,
+ "bus": 2139,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2378.727504630869, 579.8346647521536]
+ ]
+ },
+ {
+ "id": 448,
+ "bus": 2140,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2339.9651445600243, 720.4969826306201]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 2192,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2359.987918964805, 651.9277583258859],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 262,
+ "bus": 2192,
+ "phases": "abcn",
+ "powers": [
+ [2362.224862022134, 643.7751789096516],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 553,
+ "bus": 2192,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2420.3283212243914, 369.5451220281006]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 2193,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2416.630417120084, 393.0015353477039]
+ ]
+ },
+ {
+ "id": 619,
+ "bus": 2193,
+ "phases": "abcn",
+ "powers": [
+ [2366.1022892969754, 629.3748774134983],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 114,
+ "bus": 2205,
+ "phases": "abcn",
+ "powers": [
+ [2358.334323721875, 657.8844862823025],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 309,
+ "bus": 2205,
+ "phases": "abcn",
+ "powers": [
+ [2366.332896868811, 628.5072799356462],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 115,
+ "bus": 2206,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2393.683720049321, 514.6173608677497]
+ ]
+ },
+ {
+ "id": 504,
+ "bus": 2206,
+ "phases": "abcn",
+ "powers": [
+ [2379.293734123972, 577.50680211929],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 441,
+ "bus": 2207,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2413.1700724726534, 413.7184804404721],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 44,
+ "bus": 2909,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2434.2735123314396, 262.42188722970695]
+ ]
+ },
+ {
+ "id": 324,
+ "bus": 2909,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2441.8968165425167, 178.02448453840876],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 486,
+ "bus": 2909,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2378.5882471563787, 580.4056600561275],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 143,
+ "bus": 2910,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2347.818773956216, 694.4780661722697],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 313,
+ "bus": 2910,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2431.8400862482385, 284.0890259263862],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 408,
+ "bus": 2910,
+ "phases": "abcn",
+ "powers": [
+ [2354.702658837464, 670.7668508501472],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 639,
+ "bus": 2911,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2420.82898544707, 366.2510108586108],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 228,
+ "bus": 2912,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2421.768043876054, 359.98933511479936]
+ ]
+ },
+ {
+ "id": 179,
+ "bus": 2913,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2342.281925901524, 712.9292807359587],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 154,
+ "bus": 3627,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2436.1414267154255, 244.47439288517413]
+ ]
+ },
+ {
+ "id": 399,
+ "bus": 3627,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2371.080545228807, 610.35221616138],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 612,
+ "bus": 3627,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2379.449800589041, 576.8634380964165],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 218,
+ "bus": 3628,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2407.9131033974227, 443.29140102492005],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 266,
+ "bus": 3628,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2432.2747483374987, 280.34323308294887]
+ ]
+ },
+ {
+ "id": 444,
+ "bus": 3628,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2402.386949889882, 472.3237477985124],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 59,
+ "bus": 3629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2384.1422380268355, 557.1521951783332]
+ ]
+ },
+ {
+ "id": 127,
+ "bus": 3629,
+ "phases": "abcn",
+ "powers": [
+ [2363.6953437230104, 638.3549966889924],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 659,
+ "bus": 3629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2404.2815577248275, 462.5829340993052]
+ ]
+ },
+ {
+ "id": 121,
+ "bus": 3630,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2445.9044692740313, 110.01866623879525]
+ ]
+ },
+ {
+ "id": 543,
+ "bus": 3630,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2412.733367540999, 416.25770490156043]
+ ]
+ },
+ {
+ "id": 104,
+ "bus": 3631,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2404.9801850641957, 458.936911987073]
+ ]
+ },
+ {
+ "id": 319,
+ "bus": 3631,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2379.5923833200695, 576.2749942351782],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 388,
+ "bus": 3631,
+ "phases": "abcn",
+ "powers": [
+ [2437.314319207233, 232.49019145552435],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 601,
+ "bus": 3632,
+ "phases": "abcn",
+ "powers": [
+ [2369.0867563827105, 618.0458886423338],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 208,
+ "bus": 3967,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2348.2057657826176, 693.1684220165499],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 605,
+ "bus": 3967,
+ "phases": "abcn",
+ "powers": [
+ [2413.6161353694456, 411.10817410981576],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 38,
+ "bus": 3968,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2386.3743573684947, 547.5127452669474]
+ ]
+ },
+ {
+ "id": 552,
+ "bus": 3968,
+ "phases": "abcn",
+ "powers": [
+ [2335.405165187275, 735.1431793550424],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 579,
+ "bus": 3968,
+ "phases": "abcn",
+ "powers": [
+ [2361.0781563082614, 647.9681470100406],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 541,
+ "bus": 4357,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2363.9369236235993, 637.4598033324438],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 590,
+ "bus": 4358,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2378.505646205865, 580.7440664375864],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 628,
+ "bus": 4358,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2408.969581674959, 437.5138104110737]
+ ]
+ },
+ {
+ "id": 363,
+ "bus": 4784,
+ "phases": "abcn",
+ "powers": [
+ [2390.9834873249956, 527.0206286995289],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 428,
+ "bus": 4784,
+ "phases": "abcn",
+ "powers": [
+ [2392.091272742834, 521.9694652019532],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 511,
+ "bus": 4784,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2350.108495035974, 686.6897707810949],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 274,
+ "bus": 4979,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2442.1495992857176, 174.52253276941764]
+ ]
+ },
+ {
+ "id": 583,
+ "bus": 4979,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2441.0601088426683, 189.1515919908243]
+ ]
+ },
+ {
+ "id": 191,
+ "bus": 4980,
+ "phases": "abcn",
+ "powers": [
+ [2372.849453203246, 603.4386896518155],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 192,
+ "bus": 4981,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2352.150573451028, 679.6620186163454]
+ ]
+ },
+ {
+ "id": 556,
+ "bus": 4981,
+ "phases": "abcn",
+ "powers": [
+ [2348.0976626474953, 693.5345315159251],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 632,
+ "bus": 4981,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2381.037718588979, 570.2737609185908]
+ ]
+ },
+ {
+ "id": 91,
+ "bus": 4982,
+ "phases": "abcn",
+ "powers": [
+ [2362.2813414690986, 643.567901221465],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 131,
+ "bus": 4982,
+ "phases": "abcn",
+ "powers": [
+ [2431.8027622216177, 284.4083426817042],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 412,
+ "bus": 4982,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2406.133506625306, 452.8513310465741],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 371,
+ "bus": 4983,
+ "phases": "abcn",
+ "powers": [
+ [2380.034767019346, 574.4451997491249],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 40,
+ "bus": 4984,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2377.639051982852, 584.2818825034103]
+ ]
+ },
+ {
+ "id": 322,
+ "bus": 4984,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2393.3917958425095, 515.9733436229154],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 52,
+ "bus": 4985,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2442.6850723528623, 166.8604717724843]
+ ]
+ },
+ {
+ "id": 122,
+ "bus": 4985,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2380.047710154057, 574.3915712526384]
+ ]
+ },
+ {
+ "id": 571,
+ "bus": 4985,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.9638573613975, 570.5820621736881],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 222,
+ "bus": 4986,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2339.192029825341, 723.0030617758442],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 204,
+ "bus": 4987,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2438.527956512574, 219.39504334021618],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 294,
+ "bus": 4987,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2398.803326102523, 490.1993292683268],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 558,
+ "bus": 4987,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2379.538189714576, 576.498728034608]
+ ]
+ },
+ {
+ "id": 165,
+ "bus": 106,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2336.3392766197417, 732.1690817424518]
+ ]
+ },
+ {
+ "id": 365,
+ "bus": 290,
+ "phases": "abcn",
+ "powers": [
+ [2335.6259190335977, 734.4415198462744],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 284,
+ "bus": 2401,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.148059172267, 735.9594564102287]
+ ]
+ },
+ {
+ "id": 159,
+ "bus": 2402,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2395.627929430475, 505.48946919624245]
+ ]
+ },
+ {
+ "id": 304,
+ "bus": 2402,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2389.48967374922, 533.7526381962815],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 429,
+ "bus": 2402,
+ "phases": "abcn",
+ "powers": [
+ [2406.884637663093, 448.8419774453408],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 432,
+ "bus": 2402,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2332.3733310950993, 744.7062670153874],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 494,
+ "bus": 2402,
+ "phases": "abcn",
+ "powers": [
+ [2372.503271378119, 604.7983193063359],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 132,
+ "bus": 2403,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2328.9930207043503, 755.2114202301697],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 235,
+ "bus": 2403,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2389.8303539762446, 532.2251957108213]
+ ]
+ },
+ {
+ "id": 472,
+ "bus": 2405,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2411.982298153164, 420.587889901061],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 474,
+ "bus": 2405,
+ "phases": "abcn",
+ "powers": [
+ [2395.2870956713778, 507.10206965247124],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 618,
+ "bus": 2405,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2361.9212577834915, 644.8881699690986]
+ ]
+ },
+ {
+ "id": 660,
+ "bus": 2406,
+ "phases": "abcn",
+ "powers": [
+ [2378.919347755168, 579.0470763347058],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 80,
+ "bus": 2410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2380.877469719985, 570.9424260951416]
+ ]
+ },
+ {
+ "id": 247,
+ "bus": 2410,
+ "phases": "abcn",
+ "powers": [
+ [2355.505239204915, 667.9429974285529],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 139,
+ "bus": 2411,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2366.1441621672707, 629.2174374390694],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 509,
+ "bus": 2717,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2368.939938055252, 618.6083976332874],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 563,
+ "bus": 2717,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2408.9962632454317, 437.36687506622076],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 51,
+ "bus": 2719,
+ "phases": "abcn",
+ "powers": [
+ [2371.732816762633, 607.8126566852908],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 169,
+ "bus": 2719,
+ "phases": "abcn",
+ "powers": [
+ [2328.9488306509243, 755.3476841464051],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 225,
+ "bus": 2719,
+ "phases": "abcn",
+ "powers": [
+ [2398.4426585305864, 491.9609674317439],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 291,
+ "bus": 2719,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.0094883543757, 720.3529510921277],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 390,
+ "bus": 3034,
+ "phases": "abcn",
+ "powers": [
+ [2422.2427187544718, 356.7814333406223],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 650,
+ "bus": 3034,
+ "phases": "abcn",
+ "powers": [
+ [2354.939680377301, 669.9342367129025],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 424,
+ "bus": 5249,
+ "phases": "abcn",
+ "powers": [
+ [2427.5440715177315, 318.72019166466276],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 282,
+ "bus": 5250,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2351.7921699267663, 680.9011449592348]
+ ]
+ },
+ {
+ "id": 674,
+ "bus": 5251,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2376.9567891505153, 587.0512773573676]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 54,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2433.2426445386895, 271.8142978837007]
+ ]
+ },
+ {
+ "id": 464,
+ "bus": 54,
+ "phases": "abcn",
+ "powers": [
+ [2406.3556241121187, 451.6695584601863],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 72,
+ "bus": 220,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2342.156170271647, 713.342311792939]
+ ]
+ },
+ {
+ "id": 108,
+ "bus": 220,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2358.4242395638394, 657.562077657592]
+ ]
+ },
+ {
+ "id": 164,
+ "bus": 220,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2383.885624528723, 558.249145902567]
+ ]
+ },
+ {
+ "id": 550,
+ "bus": 220,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2441.9711890934377, 177.00138805451888],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 415,
+ "bus": 504,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.397870739917, 572.9387024041167],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 522,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2365.6570309092504, 631.0464260617244]
+ ]
+ },
+ {
+ "id": 68,
+ "bus": 522,
+ "phases": "abcn",
+ "powers": [
+ [2334.649596074852, 737.5391808461262],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 176,
+ "bus": 522,
+ "phases": "abcn",
+ "powers": [
+ [2424.396929295532, 341.83667000197477],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 404,
+ "bus": 851,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2333.6976613809675, 740.5457480808641]
+ ]
+ },
+ {
+ "id": 465,
+ "bus": 935,
+ "phases": "abcn",
+ "powers": [
+ [2368.8192647792903, 619.0703276253414],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 66,
+ "bus": 3513,
+ "phases": "abcn",
+ "powers": [
+ [2367.346757608022, 624.6776040314155],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 292,
+ "bus": 3513,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2344.1978175357704, 706.6041126374621]
+ ]
+ },
+ {
+ "id": 396,
+ "bus": 3513,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2414.6165001508375, 405.191235017447]
+ ]
+ },
+ {
+ "id": 663,
+ "bus": 3513,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2441.948525597641, 177.31378419951207],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 138,
+ "bus": 3514,
+ "phases": "abcn",
+ "powers": [
+ [2328.8556756345433, 755.6348468674661],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 301,
+ "bus": 3515,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2428.2958185165385, 312.9412045588424]
+ ]
+ },
+ {
+ "id": 257,
+ "bus": 13,
+ "phases": "abcn",
+ "powers": [
+ [2414.257521386525, 407.32468641642384],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 287,
+ "bus": 13,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2412.5034423008256, 417.5882189697304],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 1017,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2399.6571600459415, 486.0023600517711]
+ ]
+ },
+ {
+ "id": 289,
+ "bus": 1017,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2422.4037259759275, 355.6866150329365],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 402,
+ "bus": 1017,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2329.0221916233895, 755.1214542452282],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 426,
+ "bus": 1017,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2420.756035335988, 366.7328688841953],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 98,
+ "bus": 3073,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.635086958129, 718.3175964962559],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 168,
+ "bus": 3073,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2363.9599049210588, 637.3745740624291]
+ ]
+ },
+ {
+ "id": 416,
+ "bus": 3073,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2338.121583838213, 726.4573207873459],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 630,
+ "bus": 3073,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2370.804223108987, 611.4246604645873]
+ ]
+ },
+ {
+ "id": 71,
+ "bus": 3074,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2407.854211797332, 443.61117486543617],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 85,
+ "bus": 3074,
+ "phases": "abcn",
+ "powers": [
+ [2375.711455472058, 592.0708235291456],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 431,
+ "bus": 3074,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2365.594441508625, 631.2810135265755]
+ ]
+ },
+ {
+ "id": 560,
+ "bus": 3074,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2400.707109198293, 480.78909677780644],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 340,
+ "bus": 3075,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2372.8415641020015, 603.4697104292908]
+ ]
+ },
+ {
+ "id": 56,
+ "bus": 3076,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2441.8831916810227, 178.21127327233032]
+ ]
+ },
+ {
+ "id": 249,
+ "bus": 3076,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2384.2414870134007, 556.727322250105]
+ ]
+ },
+ {
+ "id": 174,
+ "bus": 4580,
+ "phases": "abcn",
+ "powers": [
+ [2406.2725883809408, 452.111723075316],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 328,
+ "bus": 4580,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2393.4439548393493, 515.731339728951],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 423,
+ "bus": 4580,
+ "phases": "abcn",
+ "powers": [
+ [2422.299678905655, 356.39450796723037],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 4581,
+ "phases": "abcn",
+ "powers": [
+ [2382.548079031921, 563.9303421850499],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 170,
+ "bus": 4581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2400.7901766431214, 480.3741328064345],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 239,
+ "bus": 4581,
+ "phases": "abcn",
+ "powers": [
+ [2360.1047856681043, 651.5045513288104],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 186,
+ "bus": 4582,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2359.9068470646775, 652.2211687095851]
+ ]
+ },
+ {
+ "id": 82,
+ "bus": 33,
+ "phases": "abcn",
+ "powers": [
+ [2380.206271149612, 573.7341601436195],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 129,
+ "bus": 33,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2338.542582004068, 725.1009391039229]
+ ]
+ },
+ {
+ "id": 134,
+ "bus": 33,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2345.4475235507384, 702.4447978349281],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 665,
+ "bus": 338,
+ "phases": "abcn",
+ "powers": [
+ [2403.701679329178, 465.58674436213505],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 369,
+ "bus": 421,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2327.109125089608, 760.9966489153044]
+ ]
+ },
+ {
+ "id": 455,
+ "bus": 421,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2442.696429148064, 166.6941353585708],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 492,
+ "bus": 421,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2366.1270730720366, 629.2816967076051],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 220,
+ "bus": 422,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2346.4992609137576, 698.9234566580483],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 209,
+ "bus": 453,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2366.032848607911, 629.6358781422618],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 48,
+ "bus": 613,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2419.237260355931, 376.62163751060984]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 614,
+ "phases": "abcn",
+ "powers": [
+ [2356.1505651011807, 665.6630486282312],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 118,
+ "bus": 614,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2385.764223788198, 550.1652917332593]
+ ]
+ },
+ {
+ "id": 144,
+ "bus": 614,
+ "phases": "abcn",
+ "powers": [
+ [2339.229220381742, 722.8827250999102],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 351,
+ "bus": 614,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2402.2574192379434, 472.9821047903389],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 45,
+ "bus": 848,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2367.6026021557177, 623.7072213796454]
+ ]
+ },
+ {
+ "id": 293,
+ "bus": 848,
+ "phases": "abcn",
+ "powers": [
+ [2334.7006142463606, 737.3776654966646],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 872,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2410.202717625317, 430.6688283207658]
+ ]
+ },
+ {
+ "id": 116,
+ "bus": 926,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2400.0012915095995, 484.3000934213193],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 392,
+ "bus": 926,
+ "phases": "abcn",
+ "powers": [
+ [2357.4166917680686, 661.165123935722],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 483,
+ "bus": 926,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2406.992494842309, 448.26321453855735],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 485,
+ "bus": 926,
+ "phases": "abcn",
+ "powers": [
+ [2418.377995463827, 382.1003150901686],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 979,
+ "phases": "abcn",
+ "powers": [
+ [2353.283910422348, 675.7274721978863],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 188,
+ "bus": 979,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2335.4441273905204, 735.0193926508156],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 624,
+ "bus": 979,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2445.9325430282083, 109.39275429024899]
+ ]
+ },
+ {
+ "id": 120,
+ "bus": 1470,
+ "phases": "abcn",
+ "powers": [
+ [2326.3927613485043, 763.1837915475708],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 419,
+ "bus": 1470,
+ "phases": "abcn",
+ "powers": [
+ [2444.4855025113866, 137.99785414019254],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 467,
+ "bus": 1757,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2353.6448448808424, 674.4692164224244]
+ ]
+ },
+ {
+ "id": 636,
+ "bus": 1757,
+ "phases": "abcn",
+ "powers": [
+ [2443.544490174033, 153.7631434244524],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 414,
+ "bus": 1829,
+ "phases": "abcn",
+ "powers": [
+ [2410.4620871549378, 429.21475524998635],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 334,
+ "bus": 1830,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2362.5075745295817, 642.736913539277]
+ ]
+ },
+ {
+ "id": 534,
+ "bus": 1830,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2375.9997934683297, 590.9126510526731],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 565,
+ "bus": 1830,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2387.5239755065913, 542.4776918149219],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 487,
+ "bus": 1865,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2409.018228827568, 437.24587237861084]
+ ]
+ },
+ {
+ "id": 189,
+ "bus": 1866,
+ "phases": "abcn",
+ "powers": [
+ [2359.2217608964916, 654.694938615003],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 381,
+ "bus": 1866,
+ "phases": "abcn",
+ "powers": [
+ [2400.2749186543274, 482.9421234626425],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 357,
+ "bus": 1867,
+ "phases": "abcn",
+ "powers": [
+ [2417.377003597711, 388.382803703508],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 585,
+ "bus": 1867,
+ "phases": "abcn",
+ "powers": [
+ [2362.825293732531, 641.5679317371013],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 2035,
+ "phases": "abcn",
+ "powers": [
+ [2430.6657387083437, 293.96742405420565],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 326,
+ "bus": 2036,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2412.314403073519, 418.6788751056074]
+ ]
+ },
+ {
+ "id": 46,
+ "bus": 2915,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2345.320197065793, 702.8697980215932],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 362,
+ "bus": 2915,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2371.846328099338, 607.369554404345],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 620,
+ "bus": 2916,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.547209936978, 572.317884568457],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 50,
+ "bus": 3049,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2388.106223014961, 539.9087398189263]
+ ]
+ },
+ {
+ "id": 279,
+ "bus": 3049,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2447.1572192016874, 77.29375294748867]
+ ]
+ },
+ {
+ "id": 647,
+ "bus": 3050,
+ "phases": "abcn",
+ "powers": [
+ [2413.097574679349, 414.14112910007924],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 227,
+ "bus": 3051,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2399.460418923006, 486.9727690102158]
+ ]
+ },
+ {
+ "id": 374,
+ "bus": 3051,
+ "phases": "abcn",
+ "powers": [
+ [2448.300893711674, 19.378172934073667],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 491,
+ "bus": 3051,
+ "phases": "abcn",
+ "powers": [
+ [2419.896771042204, 372.36057422229965],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 677,
+ "bus": 3051,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2355.9363813921273, 666.420697884312],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 161,
+ "bus": 3052,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2351.68903074522, 681.2572806277019],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 520,
+ "bus": 3052,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2398.35964574775, 492.3655038529503],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 662,
+ "bus": 3052,
+ "phases": "abcn",
+ "powers": [
+ [2345.786515697846, 701.3119152743692],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 667,
+ "bus": 3052,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2391.2664844701703, 525.7350853664955]
+ ]
+ },
+ {
+ "id": 280,
+ "bus": 3565,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2401.984170573729, 474.36781514862423]
+ ]
+ },
+ {
+ "id": 473,
+ "bus": 3567,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2368.9305957539373, 618.6441725552262],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 506,
+ "bus": 3567,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2367.5215373677324, 624.0148634732781]
+ ]
+ },
+ {
+ "id": 562,
+ "bus": 3567,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2436.6222272351165, 239.63493376264017],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 63,
+ "bus": 4159,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2447.78377080067, 53.92022941806716],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 479,
+ "bus": 4159,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2365.6692920980963, 631.0004597143613]
+ ]
+ },
+ {
+ "id": 103,
+ "bus": 4160,
+ "phases": "abcn",
+ "powers": [
+ [2358.474932950003, 657.3802327284579],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 146,
+ "bus": 4160,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2400.1701103604864, 483.46274010287],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 454,
+ "bus": 4160,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2364.217487322677, 636.4184569709561],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 4161,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2358.7352399793263, 656.4456164948574],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 4161,
+ "phases": "abcn",
+ "powers": [
+ [2406.196768760288, 452.51507128845486],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 102,
+ "bus": 4161,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2350.9638842952118, 683.7555078207522],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 258,
+ "bus": 4161,
+ "phases": "abcn",
+ "powers": [
+ [2416.9013691475598, 391.3317665974679],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 608,
+ "bus": 4161,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2389.0513833453147, 535.7109924870712],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 657,
+ "bus": 4162,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.037900649735, 736.3088905241622]
+ ]
+ },
+ {
+ "id": 190,
+ "bus": 4574,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.8229285923103, 733.8147082186945]
+ ]
+ },
+ {
+ "id": 645,
+ "bus": 4574,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2368.490117202509, 620.328416606632]
+ ]
+ },
+ {
+ "id": 339,
+ "bus": 4575,
+ "phases": "abcn",
+ "powers": [
+ [2446.0240330392407, 107.32758047254688],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 443,
+ "bus": 4575,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2344.1175627283337, 706.8703076549622]
+ ]
+ },
+ {
+ "id": 243,
+ "bus": 4577,
+ "phases": "abcn",
+ "powers": [
+ [2385.6440182720967, 550.6862971040849],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 156,
+ "bus": 4578,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2411.3101745990193, 424.424341444847],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 389,
+ "bus": 4578,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2376.8241250055435, 587.5881708537677]
+ ]
+ },
+ {
+ "id": 353,
+ "bus": 4854,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2431.1584089763514, 289.8647446641631]
+ ]
+ },
+ {
+ "id": 537,
+ "bus": 4854,
+ "phases": "abcn",
+ "powers": [
+ [2394.2639330836687, 511.9111236048368],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 133,
+ "bus": 5080,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2424.1674285129534, 343.4604173300593],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 507,
+ "bus": 5080,
+ "phases": "abcn",
+ "powers": [
+ [2335.3089798381425, 735.4486715080652],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 540,
+ "bus": 5080,
+ "phases": "abcn",
+ "powers": [
+ [2397.2970202222314, 497.5135943562295],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 167,
+ "bus": 5081,
+ "phases": "abcn",
+ "powers": [
+ [2426.1491851866417, 329.17003349915944],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 5082,
+ "phases": "abcn",
+ "powers": [
+ [2337.312544248602, 729.0561365448965],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 242,
+ "bus": 5082,
+ "phases": "abcn",
+ "powers": [
+ [2386.471150147672, 547.090695633268],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 671,
+ "bus": 5082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2331.001662525528, 748.9886708347926]
+ ]
+ },
+ {
+ "id": 79,
+ "bus": 5083,
+ "phases": "abcn",
+ "powers": [
+ [2356.398931733604, 664.7833137649997],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 394,
+ "bus": 5083,
+ "phases": "abcn",
+ "powers": [
+ [2383.2913057150054, 560.7810016743691],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 535,
+ "bus": 5083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2399.1512191412803, 488.49381513848545]
+ ]
+ },
+ {
+ "id": 602,
+ "bus": 5083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2347.3929167334686, 695.9161402102865]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 5216,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2344.9923281480496, 703.9628972200408],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 231,
+ "bus": 5216,
+ "phases": "abcn",
+ "powers": [
+ [2429.9627979955235, 299.72250515003196],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 117,
+ "bus": 5353,
+ "phases": "abcn",
+ "powers": [
+ [2410.1213299270066, 431.1240596006233],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 530,
+ "bus": 5353,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2336.282179879113, 732.3512515964893]
+ ]
+ },
+ {
+ "id": 372,
+ "bus": 5354,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2362.5808299074824, 642.4675882013946]
+ ]
+ },
+ {
+ "id": 229,
+ "bus": 5355,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2378.4002582573507, 581.1755253423977]
+ ]
+ },
+ {
+ "id": 109,
+ "bus": 5356,
+ "phases": "abcn",
+ "powers": [
+ [2433.597979537193, 268.6143215246247],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 574,
+ "bus": 5356,
+ "phases": "abcn",
+ "powers": [
+ [2376.749916199082, 587.8882679415385],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 622,
+ "bus": 5357,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2331.1437736232456, 748.5462486935709],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 198,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2418.1982822712816, 383.2360204311011],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 382,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [2403.892749077417, 464.59921509690685],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 463,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [2396.7068392719143, 500.34898453267084],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 521,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.041039030063, 736.2989377834574]
+ ]
+ },
+ {
+ "id": 623,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2448.151179373397, 33.295385089980485]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 295,
+ "phases": "abcn",
+ "powers": [
+ [2408.0007956834047, 442.81480070536634],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 244,
+ "bus": 295,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2367.6226017443, 623.6312976793221],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 598,
+ "bus": 296,
+ "phases": "abcn",
+ "powers": [
+ [2368.169036773689, 621.5530492259048],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 263,
+ "bus": 532,
+ "phases": "abcn",
+ "powers": [
+ [2362.9619614583717, 641.0643871222675],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2349.4984557393846, 688.7741184262749]
+ ]
+ },
+ {
+ "id": 55,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2355.272185483863, 668.7643172461532],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 233,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2435.104315971716, 254.59723107599748]
+ ]
+ },
+ {
+ "id": 435,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2398.634630505968, 491.0241226998352]
+ ]
+ },
+ {
+ "id": 503,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [2379.4204685902105, 576.9844134719641],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 649,
+ "bus": 1502,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2353.410109241024, 675.2878182358951]
+ ]
+ },
+ {
+ "id": 391,
+ "bus": 1504,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2387.387854377554, 543.0764333923756]
+ ]
+ },
+ {
+ "id": 635,
+ "bus": 1504,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2364.4454153822053, 635.5711269509619],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 523,
+ "bus": 1510,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2335.3520252173994, 735.3119732798016],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 110,
+ "bus": 1511,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2345.269892456711, 703.037631476246],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 230,
+ "bus": 1511,
+ "phases": "abcn",
+ "powers": [
+ [2387.8978547834768, 540.8295617439131],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 410,
+ "bus": 1511,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2442.180831531251, 174.08493857014594]
+ ]
+ },
+ {
+ "id": 633,
+ "bus": 1511,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.3052522147123, 573.3233694998828],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 458,
+ "bus": 1512,
+ "phases": "abcn",
+ "powers": [
+ [2394.0689838585163, 512.8220746636168],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 569,
+ "bus": 1512,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2440.333871654561, 198.30122185983737]
+ ]
+ },
+ {
+ "id": 597,
+ "bus": 1531,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2417.4443615039813, 387.963321421306],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 224,
+ "bus": 1532,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2441.2124774025497, 187.17483781147263],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 1840,
+ "phases": "abcn",
+ "powers": [
+ [2393.5388973387576, 515.2905264625074],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 211,
+ "bus": 1841,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2418.018901703609, 384.3661935442762],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 278,
+ "bus": 1841,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2437.1767895911144, 233.92750161961007],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 354,
+ "bus": 1841,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2402.6907549523053, 470.7758657815478],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 343,
+ "bus": 1842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2446.9592362256153, 83.32632228652766],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 366,
+ "bus": 1842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2409.5872715883556, 434.09902134769675]
+ ]
+ },
+ {
+ "id": 446,
+ "bus": 1842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2390.908875378761, 527.3590137379978]
+ ]
+ },
+ {
+ "id": 329,
+ "bus": 1843,
+ "phases": "abcn",
+ "powers": [
+ [2438.8127676169906, 216.20606893424576],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 525,
+ "bus": 1843,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2397.0019776034346, 498.93316095531986],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 631,
+ "bus": 1843,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2329.923277124354, 752.3365619519984]
+ ]
+ },
+ {
+ "id": 538,
+ "bus": 2900,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2356.8077435873015, 663.3325255877143],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 576,
+ "bus": 2900,
+ "phases": "abcn",
+ "powers": [
+ [2371.8550912886058, 607.3353321386495],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 614,
+ "bus": 2900,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2445.160851767213, 125.46389409180834],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 88,
+ "bus": 2902,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2439.3820060551984, 209.68597537689348],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 206,
+ "bus": 4647,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2395.050935975009, 508.21628645772194]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 4648,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2382.1308315114366, 565.6902697574671]
+ ]
+ },
+ {
+ "id": 398,
+ "bus": 4648,
+ "phases": "abcn",
+ "powers": [
+ [2358.3334247835564, 657.8877087195859],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 575,
+ "bus": 4648,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2371.738648196694, 607.789901516768]
+ ]
+ },
+ {
+ "id": 352,
+ "bus": 4649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.79081358126, 733.9169264467472]
+ ]
+ },
+ {
+ "id": 397,
+ "bus": 4649,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2370.7364735997967, 611.6872995896233]
+ ]
+ },
+ {
+ "id": 37,
+ "bus": 4650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2352.8077035546526, 677.3837094509474],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 453,
+ "bus": 4650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2415.2770473947844, 401.2350483987869],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 613,
+ "bus": 4650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2379.790767843293, 575.45519462724]
+ ]
+ },
+ {
+ "id": 272,
+ "bus": 4651,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2335.0277583056313, 736.3410539130776],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 311,
+ "bus": 4651,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2330.451123622475, 750.6999001880773]
+ ]
+ },
+ {
+ "id": 475,
+ "bus": 4651,
+ "phases": "abcn",
+ "powers": [
+ [2343.326838192559, 709.4872156297865],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 505,
+ "bus": 4651,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2335.586590355571, 734.5665787979206]
+ ]
+ },
+ {
+ "id": 297,
+ "bus": 5116,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2387.2259449864127, 543.7877042738037],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 160,
+ "bus": 5117,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2428.0224027319127, 315.0555372749299]
+ ]
+ },
+ {
+ "id": 626,
+ "bus": 5117,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2388.7701174270765, 536.9637844613695],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 248,
+ "bus": 5118,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2393.9227515653306, 513.5042738610064],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 308,
+ "bus": 5119,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2365.2622938707896, 632.5243559964584],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 349,
+ "bus": 5119,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2444.6997255242063, 134.149289068244]
+ ]
+ },
+ {
+ "id": 406,
+ "bus": 5119,
+ "phases": "abcn",
+ "powers": [
+ [2343.0700472538338, 710.3348037352259],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 656,
+ "bus": 5119,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2334.9871816690747, 736.4697150438408]
+ ]
+ },
+ {
+ "id": 341,
+ "bus": 5120,
+ "phases": "abcn",
+ "powers": [
+ [2364.9094913870285, 633.8421548644344],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 559,
+ "bus": 5120,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2408.7582928342895, 438.6755822218561],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 452,
+ "bus": 5121,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2427.2504360718935, 320.94875030828103],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 193,
+ "bus": 5122,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2366.4648310562848, 628.0103367854663],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 327,
+ "bus": 5122,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2445.9591511889084, 108.7961876670207],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 332,
+ "bus": 5122,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2440.3283431794234, 198.3692446192546],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 276,
+ "bus": 5123,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2398.9358822552094, 489.55021454807263]
+ ]
+ },
+ {
+ "id": 500,
+ "bus": 5123,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.058097243503, 720.1950300167025],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 592,
+ "bus": 5123,
+ "phases": "abcn",
+ "powers": [
+ [2407.2902921011605, 446.66120190940495],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 199,
+ "bus": 5124,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2417.468732338021, 387.81143343595016]
+ ]
+ },
+ {
+ "id": 566,
+ "bus": 5124,
+ "phases": "abcn",
+ "powers": [
+ [2425.961611925137, 330.54959870076203],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 195,
+ "bus": 5125,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2436.7280143100807, 238.55683602046759],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 212,
+ "bus": 5125,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2428.1675603800973, 313.934831538985],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 433,
+ "bus": 5125,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2339.8715228072024, 720.8009687088021]
+ ]
+ },
+ {
+ "id": 76,
+ "bus": 5126,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2383.131338417469, 561.4604203220449],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 81,
+ "bus": 5126,
+ "phases": "abcn",
+ "powers": [
+ [2360.057886441528, 651.6744220704013],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 373,
+ "bus": 5127,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2356.575446350795, 664.1573197610595]
+ ]
+ },
+ {
+ "id": 617,
+ "bus": 5127,
+ "phases": "abcn",
+ "powers": [
+ [2378.6731469266756, 580.057617677408],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 123,
+ "bus": 64,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2327.1424558517583, 760.8947167038891]
+ ]
+ },
+ {
+ "id": 621,
+ "bus": 64,
+ "phases": "abcn",
+ "powers": [
+ [2410.3989367271024, 429.5692558371683],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 468,
+ "bus": 146,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2445.2616046850058, 123.48467268837554]
+ ]
+ },
+ {
+ "id": 451,
+ "bus": 147,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2434.6778094764672, 258.64404841116095],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 145,
+ "bus": 199,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2415.1463717318206, 402.02087364497123],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 358,
+ "bus": 199,
+ "phases": "abcn",
+ "powers": [
+ [2419.0423075494455, 377.87179574757647],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 149,
+ "bus": 306,
+ "phases": "abcn",
+ "powers": [
+ [2389.6067683348474, 533.2281617318537],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 532,
+ "bus": 307,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2390.114586892514, 530.9473055391385],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 629,
+ "bus": 307,
+ "phases": "abcn",
+ "powers": [
+ [2341.411640143196, 715.7823070861647],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 269,
+ "bus": 330,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2348.528295932709, 692.0748680157736],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 347,
+ "bus": 330,
+ "phases": "abcn",
+ "powers": [
+ [2390.345044550188, 529.9088107684225],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 387,
+ "bus": 330,
+ "phases": "abcn",
+ "powers": [
+ [2396.9094776483444, 499.3773479996726],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 182,
+ "bus": 331,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2425.7308851158255, 332.23854793030597]
+ ]
+ },
+ {
+ "id": 305,
+ "bus": 331,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2348.1764000287894, 693.2678948887493],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 442,
+ "bus": 345,
+ "phases": "abcn",
+ "powers": [
+ [2436.0459314236778, 245.42412214326365],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 644,
+ "bus": 345,
+ "phases": "abcn",
+ "powers": [
+ [2425.1808217163475, 336.2302212991374],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 398,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2360.014496730302, 651.8315387877931]
+ ]
+ },
+ {
+ "id": 561,
+ "bus": 398,
+ "phases": "abcn",
+ "powers": [
+ [2391.3317484143886, 525.4381493201905],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 240,
+ "bus": 441,
+ "phases": "abcn",
+ "powers": [
+ [2417.8311672443087, 385.54536236047153],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 436,
+ "bus": 455,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2353.080574900763, 676.4352058847452]
+ ]
+ },
+ {
+ "id": 89,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2377.742804332129, 583.8595175060752],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 210,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2367.2751408409013, 624.9489477488021],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 256,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2363.4951449586324, 639.0958296629832],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 420,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [2407.094108051835, 447.71724862661415],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 447,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2400.0743712351486, 483.93779794086095]
+ ]
+ },
+ {
+ "id": 478,
+ "bus": 461,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2345.2285691668762, 703.1754675037587],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 348,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [2414.399465617055, 406.48247214821464],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 105,
+ "bus": 512,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2439.688084854805, 206.09422202754436],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 606,
+ "bus": 512,
+ "phases": "abcn",
+ "powers": [
+ [2361.8816126954684, 645.0333536699463],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 570,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2341.239780998254, 716.3442382031784]
+ ]
+ },
+ {
+ "id": 137,
+ "bus": 570,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2363.319825942631, 639.7438393936571],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 234,
+ "bus": 570,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2344.6877070424634, 704.9768337893089]
+ ]
+ },
+ {
+ "id": 315,
+ "bus": 588,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2332.594305436974, 744.0138345344428],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 368,
+ "bus": 588,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2357.0503232615397, 662.4700395854255]
+ ]
+ },
+ {
+ "id": 522,
+ "bus": 588,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2330.562538912095, 750.3539377888629],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 180,
+ "bus": 621,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2390.979272162262, 527.039751656422]
+ ]
+ },
+ {
+ "id": 405,
+ "bus": 621,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2362.9524844925186, 641.0993181764252]
+ ]
+ },
+ {
+ "id": 163,
+ "bus": 650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2380.087409059438, 574.2270500180002],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 194,
+ "bus": 650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2333.5812005581674, 740.9126535139934],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 370,
+ "bus": 650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2408.9110671283534, 437.83587153427925],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 658,
+ "bus": 650,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2389.2933347803073, 534.6308447050571]
+ ]
+ },
+ {
+ "id": 42,
+ "bus": 651,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2356.7365368119326, 663.5854698464557]
+ ]
+ },
+ {
+ "id": 296,
+ "bus": 651,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2363.1852047422058, 640.2409451317396]
+ ]
+ },
+ {
+ "id": 213,
+ "bus": 741,
+ "phases": "abcn",
+ "powers": [
+ [2417.6534124924433, 386.65844979683027],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 581,
+ "bus": 741,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2401.2889459359503, 477.87464659830675],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 596,
+ "bus": 741,
+ "phases": "abcn",
+ "powers": [
+ [2403.7768078051567, 465.19870807397484],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 580,
+ "bus": 750,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2427.70231612444, 317.5125887577884]
+ ]
+ },
+ {
+ "id": 74,
+ "bus": 751,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2349.2684703422356, 689.5581440252134],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 342,
+ "bus": 751,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2437.7797993053523, 227.55753082330713]
+ ]
+ },
+ {
+ "id": 185,
+ "bus": 762,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2357.6886408887854, 660.1947079155032],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 271,
+ "bus": 837,
+ "phases": "abcn",
+ "powers": [
+ [2426.601177816892, 325.8212754767834],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 440,
+ "bus": 873,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2378.1426407083177, 582.228786801644],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 604,
+ "bus": 873,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2348.272970307303, 692.940716555003]
+ ]
+ },
+ {
+ "id": 655,
+ "bus": 873,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2376.24778025842, 589.9146264948653]
+ ]
+ },
+ {
+ "id": 86,
+ "bus": 921,
+ "phases": "abcn",
+ "powers": [
+ [2431.808234077445, 284.36155226890713],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 393,
+ "bus": 921,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2417.351660928488, 388.54050901022634],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 260,
+ "bus": 922,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2414.661585679533, 404.9224695904741],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 337,
+ "bus": 922,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2366.6556287964486, 627.2909328387669],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 375,
+ "bus": 922,
+ "phases": "abcn",
+ "powers": [
+ [2354.9971582005733, 669.7321588537234],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 202,
+ "bus": 940,
+ "phases": "abcn",
+ "powers": [
+ [2373.562164999157, 600.629193945947],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 484,
+ "bus": 940,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2380.0732558936807, 574.2857096561762]
+ ]
+ },
+ {
+ "id": 551,
+ "bus": 940,
+ "phases": "abcn",
+ "powers": [
+ [2353.691847879517, 674.3051719816101],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 201,
+ "bus": 1020,
+ "phases": "abcn",
+ "powers": [
+ [2359.371136985767, 654.1564168409055],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 355,
+ "bus": 1020,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2330.3534296261473, 751.0031110223825]
+ ]
+ },
+ {
+ "id": 488,
+ "bus": 1020,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2407.6283220871933, 444.8355228837411]
+ ]
+ },
+ {
+ "id": 54,
+ "bus": 1022,
+ "phases": "abcn",
+ "powers": [
+ [2339.6534236012303, 721.5085842640304],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 232,
+ "bus": 1022,
+ "phases": "abcn",
+ "powers": [
+ [2379.030150899772, 578.5916702178259],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 336,
+ "bus": 1022,
+ "phases": "abcn",
+ "powers": [
+ [2380.6245333666448, 571.9961633337148],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 413,
+ "bus": 1022,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2375.919791316975, 591.2342386600641]
+ ]
+ },
+ {
+ "id": 250,
+ "bus": 1118,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2423.0286549483517, 351.4042074802555],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 267,
+ "bus": 1118,
+ "phases": "abcn",
+ "powers": [
+ [2432.7960737535077, 275.7826014547713],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 307,
+ "bus": 1118,
+ "phases": "abcn",
+ "powers": [
+ [2383.496847760633, 559.9067390653295],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 642,
+ "bus": 1118,
+ "phases": "abcn",
+ "powers": [
+ [2340.9718377847043, 717.2193767840831],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 298,
+ "bus": 1119,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2335.8063034036013, 733.8676261531415],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 651,
+ "bus": 1119,
+ "phases": "abcn",
+ "powers": [
+ [2370.1392500426014, 613.9973250293034],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 367,
+ "bus": 1409,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2343.479012936086, 708.9844114391749]
+ ]
+ },
+ {
+ "id": 615,
+ "bus": 1409,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2386.8649580781284, 545.3700135085708]
+ ]
+ },
+ {
+ "id": 317,
+ "bus": 1410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2380.0728603612797, 574.2873489006353]
+ ]
+ },
+ {
+ "id": 588,
+ "bus": 1410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2391.581805454376, 524.298815138115]
+ ]
+ },
+ {
+ "id": 668,
+ "bus": 1412,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2346.6029201254564, 698.5753466837521]
+ ]
+ },
+ {
+ "id": 183,
+ "bus": 1413,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2427.636048800704, 318.0188584014307],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 49,
+ "bus": 1583,
+ "phases": "abcn",
+ "powers": [
+ [2432.526609581787, 278.14937248209134],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 155,
+ "bus": 1583,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2407.598983835952, 444.9942839719805],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 333,
+ "bus": 1583,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2426.4094487823054, 327.2460337354661],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 595,
+ "bus": 1583,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2328.448005047076, 756.8901290992872]
+ ]
+ },
+ {
+ "id": 96,
+ "bus": 1584,
+ "phases": "abcn",
+ "powers": [
+ [2430.179102158646, 297.9636071184551],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 141,
+ "bus": 1584,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2409.1445484128344, 436.54933809177106],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 330,
+ "bus": 1584,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2433.60483654448, 268.55219098521314]
+ ]
+ },
+ {
+ "id": 147,
+ "bus": 1585,
+ "phases": "abcn",
+ "powers": [
+ [2373.1138952324663, 602.3978917544737],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 572,
+ "bus": 1833,
+ "phases": "abcn",
+ "powers": [
+ [2427.6945098037895, 317.5722702066126],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 166,
+ "bus": 1834,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2403.4426121365204, 466.9222525239327]
+ ]
+ },
+ {
+ "id": 65,
+ "bus": 1835,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.771900084168, 717.8716399970104],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 570,
+ "bus": 1835,
+ "phases": "abcn",
+ "powers": [
+ [2360.8557967063775, 648.7778409390528],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 316,
+ "bus": 1836,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2402.180842811124, 473.37086746744615],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 616,
+ "bus": 1836,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2424.034352882518, 344.39836785483817],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 638,
+ "bus": 1836,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2437.7935515965996, 227.41015705038822],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 664,
+ "bus": 1836,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2429.5169581282253, 303.31523190077274],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 187,
+ "bus": 1837,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2402.684543170336, 470.8075676388379],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 261,
+ "bus": 1839,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2360.6030860941314, 649.6967366845142]
+ ]
+ },
+ {
+ "id": 554,
+ "bus": 1850,
+ "phases": "abcn",
+ "powers": [
+ [2406.99133731833, 448.2694299304406],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 53,
+ "bus": 1900,
+ "phases": "abcn",
+ "powers": [
+ [2399.280826711208, 487.8568379264831],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 95,
+ "bus": 1900,
+ "phases": "abcn",
+ "powers": [
+ [2332.9218364564613, 742.9861941653137],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 254,
+ "bus": 1900,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2378.048401850343, 582.613575359065],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 477,
+ "bus": 1900,
+ "phases": "abcn",
+ "powers": [
+ [2372.0119995182736, 606.7222213475998],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 264,
+ "bus": 2082,
+ "phases": "abcn",
+ "powers": [
+ [2359.5395872020813, 653.5485568508866],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 142,
+ "bus": 2083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2440.939059951256, 190.7073290147105],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 150,
+ "bus": 2182,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2414.030516119502, 408.6678932574173]
+ ]
+ },
+ {
+ "id": 237,
+ "bus": 2182,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2382.86802809095, 562.576875135827],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 409,
+ "bus": 2182,
+ "phases": "abcn",
+ "powers": [
+ [2373.5362890641027, 600.7314410212371],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 62,
+ "bus": 2183,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2410.411524283582, 429.4986185502165]
+ ]
+ },
+ {
+ "id": 84,
+ "bus": 2183,
+ "phases": "abcn",
+ "powers": [
+ [2444.5821376912013, 136.27527955121343],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 111,
+ "bus": 2243,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2362.99251160361, 640.9517687321767]
+ ]
+ },
+ {
+ "id": 338,
+ "bus": 2243,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2381.701479645899, 567.4952348594471],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 609,
+ "bus": 2243,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2356.9690892504677, 662.7589999792264],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 2244,
+ "phases": "abcn",
+ "powers": [
+ [2398.246133529897, 492.91810957251585],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 125,
+ "bus": 2244,
+ "phases": "abcn",
+ "powers": [
+ [2428.1288888651025, 314.2337963911075],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 200,
+ "bus": 2244,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2435.8677608173057, 247.18622847264498]
+ ]
+ },
+ {
+ "id": 184,
+ "bus": 2318,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2435.793912342715, 247.91288052421723],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 60,
+ "bus": 2319,
+ "phases": "abcn",
+ "powers": [
+ [2358.4066374661134, 657.6252063990742],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 83,
+ "bus": 2319,
+ "phases": "abcn",
+ "powers": [
+ [2332.1516686586506, 745.4001436197316],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 255,
+ "bus": 2319,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2369.0269524955397, 618.2750828598386],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 323,
+ "bus": 2415,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2337.36926800349, 728.8742585168397],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 450,
+ "bus": 2415,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2431.9113011847962, 283.47875212318127]
+ ]
+ },
+ {
+ "id": 653,
+ "bus": 2415,
+ "phases": "abcn",
+ "powers": [
+ [2400.8727346570845, 479.9613439808012],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 666,
+ "bus": 2415,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2341.2819092854465, 716.2065351477454],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 43,
+ "bus": 2416,
+ "phases": "abcn",
+ "powers": [
+ [2409.2382345889246, 436.0320042502448],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 113,
+ "bus": 2416,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2440.0232319663633, 202.08762258007516],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 157,
+ "bus": 2416,
+ "phases": "abcn",
+ "powers": [
+ [2349.4435512067585, 688.9613773127057],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 425,
+ "bus": 2416,
+ "phases": "abcn",
+ "powers": [
+ [2397.74306185438, 495.35945440137436],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 90,
+ "bus": 2493,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2413.905437831261, 409.40605386866446]
+ ]
+ },
+ {
+ "id": 246,
+ "bus": 2493,
+ "phases": "abcn",
+ "powers": [
+ [2389.2036311096454, 535.0315774121476],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 466,
+ "bus": 2493,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.0228333672794, 720.3095994469418],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 178,
+ "bus": 2571,
+ "phases": "abcn",
+ "powers": [
+ [2438.2743528020674, 222.19576999417544],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 470,
+ "bus": 2571,
+ "phases": "abcn",
+ "powers": [
+ [2400.511176977735, 481.7664049522489],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 130,
+ "bus": 2572,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2445.174738759432, 125.19295774278942],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 181,
+ "bus": 2572,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2364.801962344578, 634.2432172494069]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 2573,
+ "phases": "abcn",
+ "powers": [
+ [2413.613020461002, 411.12646131909554],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 2573,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2358.123235261657, 658.6407116590494]
+ ]
+ },
+ {
+ "id": 403,
+ "bus": 2573,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2438.003304462658, 225.15032126293772],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 107,
+ "bus": 2574,
+ "phases": "abcn",
+ "powers": [
+ [2334.9271974207513, 736.659868922232],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 219,
+ "bus": 2574,
+ "phases": "abcn",
+ "powers": [
+ [2382.887641040005, 562.4937954452879],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 515,
+ "bus": 2574,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2380.913180428599, 570.7934889231112]
+ ]
+ },
+ {
+ "id": 364,
+ "bus": 2734,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2422.978047687491, 351.75298173598634]
+ ]
+ },
+ {
+ "id": 379,
+ "bus": 2734,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2421.2387376237702, 363.53233028947324]
+ ]
+ },
+ {
+ "id": 516,
+ "bus": 2734,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2403.7312101504854, 465.4342586060108]
+ ]
+ },
+ {
+ "id": 480,
+ "bus": 2735,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2336.359047666823, 732.1059896770556]
+ ]
+ },
+ {
+ "id": 99,
+ "bus": 2841,
+ "phases": "abcn",
+ "powers": [
+ [2396.8293241491124, 499.76191394958516],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 241,
+ "bus": 2841,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2407.757585615009, 444.1353269545538]
+ ]
+ },
+ {
+ "id": 295,
+ "bus": 2841,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2379.7193749851326, 575.7503591453618],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 73,
+ "bus": 2842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2383.822559268258, 558.518384352187]
+ ]
+ },
+ {
+ "id": 376,
+ "bus": 2842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2396.326534225409, 502.16722424196837],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 527,
+ "bus": 2842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2349.002766372781, 690.4627312959524]
+ ]
+ },
+ {
+ "id": 564,
+ "bus": 2842,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2382.477047508263, 564.230358835783],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 268,
+ "bus": 2843,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2383.4217498956227, 560.2263309236109],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 499,
+ "bus": 2843,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2412.814769631595, 415.785602424226],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 652,
+ "bus": 2843,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2383.178000975234, 561.2623231638929],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 197,
+ "bus": 2907,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2384.3500262570215, 556.2622870766864],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 302,
+ "bus": 2907,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2442.3528924158218, 171.6540959130125]
+ ]
+ },
+ {
+ "id": 148,
+ "bus": 2908,
+ "phases": "abcn",
+ "powers": [
+ [2357.141545736729, 662.1453866769054],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 162,
+ "bus": 3107,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2406.107030630317, 452.9919832480526]
+ ]
+ },
+ {
+ "id": 253,
+ "bus": 3108,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2383.894720600355, 558.2103016152607],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 600,
+ "bus": 3108,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2418.5904880452545, 380.75297880996607]
+ ]
+ },
+ {
+ "id": 669,
+ "bus": 3108,
+ "phases": "abcn",
+ "powers": [
+ [2346.9168904330836, 697.5198127190012],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 126,
+ "bus": 3161,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2344.0881772892344, 706.9677480822436]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 3162,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2435.86917306638, 247.1723112335915],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 196,
+ "bus": 3162,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2328.3497823145003, 757.1922285203831]
+ ]
+ },
+ {
+ "id": 306,
+ "bus": 3162,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2403.668335862373, 465.7588548897952],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 445,
+ "bus": 3162,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2413.139649120035, 413.8958970326718]
+ ]
+ },
+ {
+ "id": 335,
+ "bus": 3259,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2448.243205985302, 25.651200409580643]
+ ]
+ },
+ {
+ "id": 459,
+ "bus": 3259,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2394.7193520210726, 509.77642628059715]
+ ]
+ },
+ {
+ "id": 67,
+ "bus": 3260,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2354.1290896836517, 672.7770870361636]
+ ]
+ },
+ {
+ "id": 346,
+ "bus": 3261,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2432.426439541392, 279.0240060561653],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 238,
+ "bus": 3482,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2365.4148678280717, 631.9535448065379],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 286,
+ "bus": 3483,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2361.614337742736, 646.0112224285131],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 245,
+ "bus": 3484,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2433.700456720035, 267.6842668076244]
+ ]
+ },
+ {
+ "id": 427,
+ "bus": 3484,
+ "phases": "abcn",
+ "powers": [
+ [2359.902377899678, 652.2373391021782],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 490,
+ "bus": 3485,
+ "phases": "abcn",
+ "powers": [
+ [2326.899746503968, 761.6366256000391],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 512,
+ "bus": 3516,
+ "phases": "abcn",
+ "powers": [
+ [2419.023406387009, 377.99277650166346],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 3517,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2424.766440533589, 339.20567300343396],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 300,
+ "bus": 3517,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2329.125053197982, 754.8041244595457],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 528,
+ "bus": 3517,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2387.335525155523, 543.3064237297838],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 567,
+ "bus": 3517,
+ "phases": "abcn",
+ "powers": [
+ [2432.830618532339, 275.4776964968323],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 61,
+ "bus": 3561,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2444.0149280215614, 146.0952132802628],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 221,
+ "bus": 3561,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2413.8991887514285, 409.4428974604868]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 3562,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2346.909303540475, 697.5453395233943]
+ ]
+ },
+ {
+ "id": 584,
+ "bus": 3562,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2377.773075210447, 583.7362268524183]
+ ]
+ },
+ {
+ "id": 281,
+ "bus": 3633,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2338.1067650535506, 726.5050137104802]
+ ]
+ },
+ {
+ "id": 533,
+ "bus": 3633,
+ "phases": "abcn",
+ "powers": [
+ [2370.506682380404, 612.57721841862],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 641,
+ "bus": 3634,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2410.9150342277076, 426.66318972985596],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 437,
+ "bus": 3961,
+ "phases": "abcn",
+ "powers": [
+ [2414.986974579041, 402.97728515291533],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 591,
+ "bus": 3961,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2355.408306520565, 668.2847367025287],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 277,
+ "bus": 4001,
+ "phases": "abcn",
+ "powers": [
+ [2420.91823568577, 365.6606020064821],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 482,
+ "bus": 4001,
+ "phases": "abcn",
+ "powers": [
+ [2408.465196137003, 440.28193096286606],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 502,
+ "bus": 4001,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2427.814381688719, 316.65455594553845],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 555,
+ "bus": 4001,
+ "phases": "abcn",
+ "powers": [
+ [2399.072941901099, 488.8781025712351],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 383,
+ "bus": 4018,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2408.929867353597, 437.7324227281154],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 205,
+ "bus": 4019,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2329.259904879242, 754.3878811709448]
+ ]
+ },
+ {
+ "id": 469,
+ "bus": 4019,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2408.5885944503602, 439.60637213225516]
+ ]
+ },
+ {
+ "id": 587,
+ "bus": 4019,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2333.647483088375, 740.7038574294975],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 153,
+ "bus": 4080,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2407.1698532891446, 447.3098223285084],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 517,
+ "bus": 4080,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2431.7588357094505, 284.7836805097204],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 670,
+ "bus": 4080,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2436.380640378068, 242.07881965714665]
+ ]
+ },
+ {
+ "id": 290,
+ "bus": 4081,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2406.8999890218724, 448.75964901287057]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2434.3547125055384, 261.66756283063245]
+ ]
+ },
+ {
+ "id": 226,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [2338.433345651941, 725.4531464393232],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 385,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [2436.5523708525902, 240.3441778538946],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 514,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2382.7553166468742, 563.0540655449518],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 518,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2344.438737928651, 705.8043523775968],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 676,
+ "bus": 4082,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2361.4199815848574, 646.7213080666329]
+ ]
+ },
+ {
+ "id": 172,
+ "bus": 4083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2349.761245795569, 687.8770729519192]
+ ]
+ },
+ {
+ "id": 273,
+ "bus": 4083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2332.521464847021, 744.242162043748]
+ ]
+ },
+ {
+ "id": 321,
+ "bus": 4083,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2423.809793306462, 345.9752384309193]
+ ]
+ },
+ {
+ "id": 69,
+ "bus": 4084,
+ "phases": "abcn",
+ "powers": [
+ [2353.98549860815, 673.2793269351022],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 536,
+ "bus": 4084,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2366.9261000332963, 626.2696038582864]
+ ]
+ },
+ {
+ "id": 589,
+ "bus": 4084,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2396.355367219827, 502.02961439777056]
+ ]
+ },
+ {
+ "id": 476,
+ "bus": 4085,
+ "phases": "abcn",
+ "powers": [
+ [2337.191574769202, 729.4438446950545],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 508,
+ "bus": 4085,
+ "phases": "abcn",
+ "powers": [
+ [2390.9147494456192, 527.3323815384719],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 4086,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2345.8706343126178, 701.0304892123878],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 401,
+ "bus": 4127,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2339.222310446218, 722.9050850881464],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 4128,
+ "phases": "abcn",
+ "powers": [
+ [2329.0204906836007, 755.1267004361349],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 675,
+ "bus": 4128,
+ "phases": "abcn",
+ "powers": [
+ [2386.9279631140084, 545.0941924475585],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 421,
+ "bus": 4238,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2399.060641062127, 488.9384626333057]
+ ]
+ },
+ {
+ "id": 673,
+ "bus": 4238,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2358.35758163738, 657.8011073790722]
+ ]
+ },
+ {
+ "id": 439,
+ "bus": 4239,
+ "phases": "abcn",
+ "powers": [
+ [2333.4048802685015, 741.4677636113286],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 545,
+ "bus": 4239,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2425.5078717649385, 333.86276183779677],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 78,
+ "bus": 4444,
+ "phases": "abcn",
+ "powers": [
+ [2333.3788376819944, 741.5497148495641],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 386,
+ "bus": 4444,
+ "phases": "abcn",
+ "powers": [
+ [2363.77791942193, 638.0491575019705],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 418,
+ "bus": 4444,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2333.3711761074164, 741.5738225198729],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 510,
+ "bus": 4444,
+ "phases": "abcn",
+ "powers": [
+ [2354.882469708817, 670.1353099141597],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 531,
+ "bus": 4444,
+ "phases": "abcn",
+ "powers": [
+ [2330.7504372782532, 749.7700840010059],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 325,
+ "bus": 4445,
+ "phases": "abcn",
+ "powers": [
+ [2386.9692727001434, 544.9132691731716],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 610,
+ "bus": 4445,
+ "phases": "abcn",
+ "powers": [
+ [2360.984077184039, 648.3108567801996],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 64,
+ "bus": 4459,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2379.5904232520707, 576.2830878159413],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 578,
+ "bus": 4459,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2422.838632612125, 352.7119788975892],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 236,
+ "bus": 4460,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2401.3580020449035, 477.5275130822856],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 344,
+ "bus": 4460,
+ "phases": "abcn",
+ "powers": [
+ [2386.596280115285, 546.5445777569557],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 112,
+ "bus": 4679,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2326.916398073199, 761.5857509917666]
+ ]
+ },
+ {
+ "id": 449,
+ "bus": 4686,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2433.406512808746, 270.3433430947068]
+ ]
+ },
+ {
+ "id": 513,
+ "bus": 4686,
+ "phases": "abcn",
+ "powers": [
+ [2347.6447325997347, 695.0661761532966],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 542,
+ "bus": 4686,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2407.016545759767, 448.1340515675693]
+ ]
+ },
+ {
+ "id": 101,
+ "bus": 4687,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2395.153148494188, 507.7343547506141]
+ ]
+ },
+ {
+ "id": 471,
+ "bus": 4687,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2358.6993527843524, 656.5745524388838]
+ ]
+ },
+ {
+ "id": 539,
+ "bus": 4687,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2432.8646193967916, 275.1772581863344]
+ ]
+ },
+ {
+ "id": 599,
+ "bus": 4687,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2338.649116522823, 724.7572624835589]
+ ]
+ },
+ {
+ "id": 378,
+ "bus": 4711,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2359.560282529193, 653.4738348598199],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 384,
+ "bus": 4711,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2428.5869921945264, 310.6734637512321]
+ ]
+ },
+ {
+ "id": 438,
+ "bus": 4711,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2362.8839488338217, 641.3518722816118]
+ ]
+ },
+ {
+ "id": 283,
+ "bus": 4712,
+ "phases": "abcn",
+ "powers": [
+ [2345.1854553843846, 703.3192444325559],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 158,
+ "bus": 4720,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2408.8752056897297, 438.03313019554435],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 461,
+ "bus": 4720,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2432.229569846803, 280.73492710825997],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 203,
+ "bus": 4770,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2423.666390747604, 346.9783942785563]
+ ]
+ },
+ {
+ "id": 496,
+ "bus": 4770,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2334.782103565117, 737.119602647829],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 151,
+ "bus": 4776,
+ "phases": "abcn",
+ "powers": [
+ [2370.546286368503, 612.4239413348765],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 460,
+ "bus": 4776,
+ "phases": "abcn",
+ "powers": [
+ [2376.2494344137745, 589.9079633161949],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 546,
+ "bus": 4776,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2427.4389303100893, 319.5199827094614]
+ ]
+ },
+ {
+ "id": 548,
+ "bus": 4776,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2388.207292585683, 539.461497584588],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 303,
+ "bus": 4886,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2396.502211979392, 501.3281636947251],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 400,
+ "bus": 4886,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2397.519893225855, 496.43845673147547],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 627,
+ "bus": 5003,
+ "phases": "abcn",
+ "powers": [
+ [2442.598111933934, 168.12865107537374],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 547,
+ "bus": 5006,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2337.3991092927427, 728.7785559503906]
+ ]
+ },
+ {
+ "id": 603,
+ "bus": 5006,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2446.0294873458324, 107.203203171955],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 678,
+ "bus": 5006,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2362.3702231986263, 643.2415629296024],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 417,
+ "bus": 5163,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2392.611602511826, 519.5791559150889],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 456,
+ "bus": 5163,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2334.1770863943093, 739.0332259698592],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 259,
+ "bus": 5197,
+ "phases": "abcn",
+ "powers": [
+ [2349.406933274152, 689.0862367069802],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 252,
+ "bus": 5198,
+ "phases": "abcn",
+ "powers": [
+ [2363.4441010336245, 639.2845696753576],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 557,
+ "bus": 5198,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2425.000927330475, 337.52523191900934]
+ ]
+ },
+ {
+ "id": 310,
+ "bus": 5213,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2361.242001497051, 647.3708288931804],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 360,
+ "bus": 5213,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2436.554863053378, 240.3189111713415],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 173,
+ "bus": 5338,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2386.479800926056, 547.0529585950286],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 177,
+ "bus": 5338,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2382.8283782000926, 562.7447909842974]
+ ]
+ },
+ {
+ "id": 411,
+ "bus": 5338,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2377.2677294003274, 585.7908521711967]
+ ]
+ },
+ {
+ "id": 320,
+ "bus": 5339,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2340.8235470783147, 717.7032124627434],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 377,
+ "bus": 5409,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2328.6445230418053, 756.285306642307],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 648,
+ "bus": 5409,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2347.270728332068, 696.3281608918943]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 5410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2377.3158482888166, 585.5955406340356]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 5410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [2405.290467515438, 457.3079341264571]
+ ]
+ },
+ {
+ "id": 135,
+ "bus": 5410,
+ "phases": "abcn",
+ "powers": [
+ [2372.7890309373824, 603.6762330909518],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 288,
+ "bus": 5410,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2334.6724485143636, 737.4668384975622],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 359,
+ "bus": 5411,
+ "phases": "abcn",
+ "powers": [
+ [2380.2733330205333, 573.4558743678248],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 495,
+ "bus": 5411,
+ "phases": "abcn",
+ "powers": [
+ [2387.200257764256, 543.9004587844308],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 640,
+ "bus": 5411,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [2352.2261730238474, 679.4003316728873],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 679,
+ "bus": 1276000,
+ "phases": "abcn",
+ "powers": [
+ [30243.243418351154, 14016.32400629604],
+ [30243.243418351154, 14016.32400629604],
+ [30243.243418351154, 14016.32400629604]
+ ]
+ },
+ {
+ "id": 680,
+ "bus": 1315000,
+ "phases": "abcn",
+ "powers": [
+ [30199.71010978223, 14109.876696705329],
+ [30199.71010978223, 14109.876696705329],
+ [30199.71010978223, 14109.876696705329]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 505000,
+ "bus": 505000,
+ "phases": "abcn",
+ "voltages": [
+ [12008.885599144214, 0.0],
+ [-6004.442799572109, -10400.000000186876],
+ [-6004.442799572109, 10400.000000186876]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_PU",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.20000000000000004]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001410575101461, 0.0, 0.0],
+ [0.0, 0.0001410575101461, 0.0],
+ [0.0, 0.0, 0.0001410575101461]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_S3",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.20000000000000004]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [6.44026493985908e-5, 0.0, 0.0],
+ [0.0, 6.44026493985908e-5, 0.0],
+ [0.0, 0.0, 6.44026493985908e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_bt",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.0, 0.2]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [6.53451271946559e-5, 3.267256359732205e-5, 3.267256359732205e-5, 3.267256359733384e-5],
+ [3.267256359732205e-5, 6.53451271946559e-5, 3.267256359732205e-5, 3.267256359733384e-5],
+ [3.267256359732205e-5, 3.267256359732205e-5, 6.53451271946559e-5, 3.267256359733384e-5],
+ [3.267256359733384e-5, 3.267256359733384e-5, 3.267256359733384e-5, 6.534512719466767e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240_S3",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0],
+ [0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.125]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [7.85398163397448e-5, 0.0, 0.0],
+ [0.0, 7.85398163397448e-5, 0.0],
+ [0.0, 0.0, 7.85398163397448e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240_SO",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0],
+ [0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.125]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001156106096521, 0.0, 0.0],
+ [0.0, 0.0001156106096521, 0.0],
+ [0.0, 0.0, 0.0001156106096521]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240_bt",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0, 0.0],
+ [0.0, 0.125, 0.0, 0.0],
+ [0.0, 0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.0, 0.125]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [8.570264758990977e-5, 4.2851323794945114e-5, 4.2851323794945114e-5, 4.285132379496466e-5],
+ [4.2851323794945114e-5, 8.570264758990977e-5, 4.2851323794945114e-5, 4.285132379496466e-5],
+ [4.2851323794945114e-5, 4.2851323794945114e-5, 8.570264758990977e-5, 4.285132379496466e-5],
+ [4.285132379496466e-5, 4.285132379496466e-5, 4.285132379496466e-5, 8.570264758992933e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_25_bt",
+ "z_line": [
+ [
+ [1.2, 0.0, 0.0, 0.0],
+ [0.0, 1.2, 0.0, 0.0],
+ [0.0, 0.0, 1.2, 0.0],
+ [0.0, 0.0, 0.0, 1.2]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [3.707079331235956e-5, 1.853539665617978e-5, 1.853539665617978e-5, 1.853539665617978e-5],
+ [1.853539665617978e-5, 3.707079331235956e-5, 1.853539665617978e-5, 1.853539665617978e-5],
+ [1.853539665617978e-5, 1.853539665617978e-5, 3.707079331235956e-5, 1.853539665617978e-5],
+ [1.853539665617978e-5, 1.853539665617978e-5, 1.853539665617978e-5, 3.707079331235956e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_35_bt",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.8571428571428571]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [3.933274002294421e-5, 1.9666370011472106e-5, 1.9666370011472106e-5, 1.9666370011472102e-5],
+ [1.9666370011472106e-5, 3.933274002294421e-5, 1.9666370011472106e-5, 1.9666370011472102e-5],
+ [1.9666370011472106e-5, 1.9666370011472106e-5, 3.933274002294421e-5, 1.9666370011472102e-5],
+ [1.9666370011472102e-5, 1.9666370011472102e-5, 1.9666370011472102e-5, 3.933274002294421e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95_bt",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.31578947368421]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [5.290442028645071e-5, 2.6452210143224647e-5, 2.6452210143224647e-5, 2.6452210143226063e-5],
+ [2.6452210143224647e-5, 5.290442028645071e-5, 2.6452210143224647e-5, 2.6452210143226063e-5],
+ [2.6452210143224647e-5, 2.6452210143224647e-5, 5.290442028645071e-5, 2.6452210143226063e-5],
+ [2.6452210143226063e-5, 2.6452210143226063e-5, 2.6452210143226063e-5, 5.2904420286452125e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_70_bt",
+ "z_line": [
+ [
+ [0.42857142857142855, 0.0, 0.0, 0.0],
+ [0.0, 0.42857142857142855, 0.0, 0.0],
+ [0.0, 0.0, 0.42857142857142855, 0.0],
+ [0.0, 0.0, 0.0, 0.4285714285714285]
+ ],
+ [
+ [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333],
+ [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333],
+ [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [4.39822971502571e-5, 2.199114857512855e-5, 2.199114857512855e-5, 2.199114857512855e-5],
+ [2.199114857512855e-5, 4.39822971502571e-5, 2.199114857512855e-5, 2.199114857512855e-5],
+ [2.199114857512855e-5, 2.199114857512855e-5, 4.39822971502571e-5, 2.199114857512855e-5],
+ [2.199114857512855e-5, 2.199114857512855e-5, 2.199114857512855e-5, 4.39822971502571e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "100kVA",
+ "sn": 100000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.025,
+ "p0": 210.0,
+ "psc": 2150.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ },
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ },
+ {
+ "id": "400kVA",
+ "sn": 400000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.019,
+ "p0": 930.0,
+ "psc": 4600.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ },
+ {
+ "id": "630kVA",
+ "sn": 630000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.018000000000000002,
+ "p0": 1300.0,
+ "psc": 6500.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json b/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json
index 114cacb6..056c7f2a 100644
--- a/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json
+++ b/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json
@@ -1,6618 +1,5970 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 0,
- "phase": "n"
- },
- {
- "id": 54,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 0,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85846575091946, 45.70847617823726]
- }
- },
- {
- "id": 54,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85846575091946, 45.70847617823726]
- }
- },
- {
- "id": 141,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85870560116178, 45.70860760344203]
- }
- },
- {
- "id": 142,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85869801153841, 45.70900292606039]
- }
- },
- {
- "id": 186,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858653382246263, 45.70875532583823]
- }
- },
- {
- "id": 187,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858739171164092, 45.70880757501374]
- }
- },
- {
- "id": 414,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858691784300813, 45.70839008547719]
- }
- },
- {
- "id": 426,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859386124804403, 45.70806573046651]
- }
- },
- {
- "id": 427,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859704050364739, 45.70805047840309]
- }
- },
- {
- "id": 479,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858652333258119, 45.70837026980359]
- }
- },
- {
- "id": 511,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858763809394666, 45.70844787378506]
- }
- },
- {
- "id": 535,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858723373804454, 45.70941641027449]
- }
- },
- {
- "id": 540,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858651358015089, 45.70812455944064]
- }
- },
- {
- "id": 662,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859703873051338, 45.70810268927151]
- }
- },
- {
- "id": 665,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857131615330457, 45.70818392334662]
- }
- },
- {
- "id": 666,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857097901025856, 45.70823328729713]
- }
- },
- {
- "id": 680,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858614083339599, 45.70834862687379]
- }
- },
- {
- "id": 773,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858895913447741, 45.70974381024688]
- }
- },
- {
- "id": 853,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859810591784496, 45.70807812776008]
- }
- },
- {
- "id": 854,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859913312051285, 45.70807902143925]
- }
- },
- {
- "id": 855,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859951832358216, 45.70807936104072]
- }
- },
- {
- "id": 856,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859972615464178, 45.70807954158136]
- }
- },
- {
- "id": 878,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857275781799144, 45.70723556005225]
- }
- },
- {
- "id": 879,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857256151263146, 45.70711038978346]
- }
- },
- {
- "id": 880,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857262364210815, 45.70699351390524]
- }
- },
- {
- "id": 881,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857267515697749, 45.70689639246044]
- }
- },
- {
- "id": 882,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857267614293992, 45.70689461701293]
- }
- },
- {
- "id": 883,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857267759513011, 45.70689189539422]
- }
- },
- {
- "id": 1003,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858151406473321, 45.70725098354557]
- }
- },
- {
- "id": 1004,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85812572934119, 45.707250534644]
- }
- },
- {
- "id": 1005,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858114041508144, 45.70725032932825]
- }
- },
- {
- "id": 1006,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857597397234586, 45.70724123069877]
- }
- },
- {
- "id": 1007,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857535241965201, 45.70724013433262]
- }
- },
- {
- "id": 1058,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858881739788789, 45.70785294412009]
- }
- },
- {
- "id": 1059,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858882368754885, 45.70784395579707]
- }
- },
- {
- "id": 1060,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858897218734911, 45.70763017681548]
- }
- },
- {
- "id": 1061,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858902974214498, 45.707547425535]
- }
- },
- {
- "id": 1062,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858919214046995, 45.70731378569783]
- }
- },
- {
- "id": 1063,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858922785113299, 45.70726244366002]
- }
- },
- {
- "id": 1093,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858781571296007, 45.70726034441319]
- }
- },
- {
- "id": 1094,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858768727955327, 45.70726015614733]
- }
- },
- {
- "id": 1095,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858537648453671, 45.7072567198413]
- }
- },
- {
- "id": 1096,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858511961775738, 45.70725634325208]
- }
- },
- {
- "id": 1097,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858460613677841, 45.70725558048714]
- }
- },
- {
- "id": 1098,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858157821930228, 45.70725108235426]
- }
- },
- {
- "id": 1099,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858152499451649, 45.70725100398066]
- }
- },
- {
- "id": 1106,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859703269885658, 45.70811167702172]
- }
- },
- {
- "id": 1107,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859691230963773, 45.70829140447697]
- }
- },
- {
- "id": 1108,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859691101355493, 45.70829334264744]
- }
- },
- {
- "id": 1109,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859690024623929, 45.70830937997797]
- }
- },
- {
- "id": 1110,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859689421453726, 45.70831836772848]
- }
- },
- {
- "id": 1111,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859668770979119, 45.70862644778789]
- }
- },
- {
- "id": 1163,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858738932211071, 45.70911092029043]
- }
- },
- {
- "id": 1164,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858757916934997, 45.70943452705954]
- }
- },
- {
- "id": 1165,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858773792484836, 45.70970511476557]
- }
- },
- {
- "id": 1166,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858774062588907, 45.70970960928479]
- }
- },
- {
- "id": 1290,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858739171732017, 45.70881207559292]
- }
- },
- {
- "id": 1291,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858739150677472, 45.70883237373603]
- }
- },
- {
- "id": 1292,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85873914807851, 45.70883456108218]
- }
- },
- {
- "id": 1293,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858739125404754, 45.70886155614262]
- }
- },
- {
- "id": 1294,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85873905168792, 45.70895924765031]
- }
- },
- {
- "id": 1295,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85873893164317, 45.70910641971108]
- }
- },
- {
- "id": 1495,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858691729537287, 45.70820627355009]
- }
- },
- {
- "id": 1496,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858691694044068, 45.70807954669539]
- }
- },
- {
- "id": 1623,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857860255450155, 45.70813154291512]
- }
- },
- {
- "id": 1624,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85782192849138, 45.70813430365612]
- }
- },
- {
- "id": 1625,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857821121561098, 45.70813435779852]
- }
- },
- {
- "id": 1626,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857540908874141, 45.70815449967574]
- }
- },
- {
- "id": 1627,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857477034557761, 45.70815909463102]
- }
- },
- {
- "id": 1628,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857336518230978, 45.70816919244123]
- }
- },
- {
- "id": 1629,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857310970894318, 45.70817102672679]
- }
- },
- {
- "id": 1944,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85766416853888, 45.70721602985164]
- }
- },
- {
- "id": 1982,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858491381680595, 45.70847728520197]
- }
- },
- {
- "id": 2055,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857200315625728, 45.70822020250381]
- }
- },
- {
- "id": 2056,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857275018775843, 45.70846340082636]
- }
- },
- {
- "id": 2057,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857278744071173, 45.70875669252492]
- }
- },
- {
- "id": 2058,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857278792378547, 45.7087602739085]
- }
- },
- {
- "id": 2059,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857278808693088, 45.70876119166208]
- }
- },
- {
- "id": 2144,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857882752543429, 45.70823005021285]
- }
- },
- {
- "id": 2145,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857876335254144, 45.70823019445908]
- }
- },
- {
- "id": 2305,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858609965119976, 45.70825870764124]
- }
- },
- {
- "id": 2306,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858368880856789, 45.70826862857308]
- }
- },
- {
- "id": 2428,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858231152717311, 45.70810758836546]
- }
- },
- {
- "id": 2429,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858129245824944, 45.70811379479478]
- }
- },
- {
- "id": 2578,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859000718079856, 45.70806629701848]
- }
- },
- {
- "id": 2579,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859000143989006, 45.70798532627871]
- }
- },
- {
- "id": 2580,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858999648085297, 45.70791335496535]
- }
- },
- {
- "id": 2581,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858881598777165, 45.70785743888134]
- }
- },
- {
- "id": 2582,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858881674325446, 45.70785488084649]
- }
- },
- {
- "id": 2610,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858639795155034, 45.70854534569091]
- }
- },
- {
- "id": 2611,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858535320177401, 45.70859704818644]
- }
- },
- {
- "id": 2612,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858534241242276, 45.70859705444225]
- }
- },
- {
- "id": 2694,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858867184443032, 45.71016931222483]
- }
- },
- {
- "id": 2695,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858859064573131, 45.71015332867633]
- }
- },
- {
- "id": 2696,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858857002020719, 45.71014925251106]
- }
- },
- {
- "id": 2697,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858863334716782, 45.70975820661533]
- }
- },
- {
- "id": 2698,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858868334217182, 45.70975599692036]
- }
- },
- {
- "id": 2899,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.857975831490713, 45.70812391332192]
- }
- },
- {
- "id": 2921,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858763993714154, 45.70836690399566]
- }
- },
- {
- "id": 2922,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858994304107692, 45.70806651326404]
- }
- },
- {
- "id": 3066,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858511570902601, 45.70850236763883]
- }
- },
- {
- "id": 3067,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858515038657315, 45.70850262271592]
- }
- },
- {
- "id": 3218,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859793914502443, 45.70805175138868]
- }
- },
- {
- "id": 3219,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859806757619531, 45.708051930545]
- }
- },
- {
- "id": 3220,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859935139105061, 45.70805375915022]
- }
- },
- {
- "id": 3221,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85997402865019, 45.70805430646571]
- }
- },
- {
- "id": 3535,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858735739719023, 45.70957811755016]
- }
- },
- {
- "id": 3536,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.858742606561232, 45.70966801100467]
- }
- },
- {
- "id": 3834,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859116288759923, 45.70806612834648]
- }
- },
- {
- "id": 3835,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.859373111064799, 45.70806575312553]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 0,
- "bus2": 54,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line1484",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 54,
- "bus2": 1982,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85846575091946, 45.70847617823726],
- [4.858484970678613, 45.70847700628548],
- [4.858491381680595, 45.70847728520197]
- ]
- },
- "length": 0.0005001805797426,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line205",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 54,
- "bus2": 479,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85846575091946, 45.70847617823726],
- [4.858471417041118, 45.70846327816842],
- [4.858492511489998, 45.70841526865618],
- [4.858652333258119, 45.70837026980359]
- ]
- },
- "length": 0.0189957245757942,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line326",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 54,
- "bus2": 680,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85846575091946, 45.70847617823726],
- [4.858462801847775, 45.7084628417802],
- [4.858447926655387, 45.70839556833542],
- [4.858614083339599, 45.70834862687379]
- ]
- },
- "length": 0.0215171544221145,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2076",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 54,
- "bus2": 2610,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85846575091946, 45.70847617823726],
- [4.858464659141226, 45.70848965055031],
- [4.85846163967549, 45.70852667729195],
- [4.858639622598972, 45.70854157807495],
- [4.858639795155034, 45.70854534569091]
- ]
- },
- "length": 0.0184990001621715,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line169",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1982,
- "bus2": 414,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858491381680595, 45.70847728520197],
- [4.858479104158953, 45.70846645377902],
- [4.858514241119253, 45.70844088353304],
- [4.858691784300813, 45.70839008547719]
- ]
- },
- "length": 0.0188786040178695,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line223",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1982,
- "bus2": 511,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858491381680595, 45.70847728520197],
- [4.858484836774053, 45.70847436294846],
- [4.858763809394666, 45.70844787378506]
- ]
- },
- "length": 0.0219219562567218,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1485",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1982,
- "bus2": 186,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858491381680595, 45.70847728520197],
- [4.858741235721783, 45.70848798657143],
- [4.858739614398045, 45.70873983113913],
- [4.858653382246263, 45.70875532583823]
- ]
- },
- "length": 0.0544160543418695,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2507",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1982,
- "bus2": 3066,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858491381680595, 45.70847728520197],
- [4.858480412869868, 45.70848493078657],
- [4.858509340626727, 45.70850220175434],
- [4.858511570902601, 45.70850236763883]
- ]
- },
- "length": 0.0031341964682167,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2508",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3066,
- "bus2": 3067,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858511570902601, 45.70850236763883],
- [4.858515038657315, 45.70850262271592]
- ]
- },
- "length": 0.0002715150308807,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2509",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3067,
- "bus2": 141,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858515038657315, 45.70850262271592],
- [4.858705291981614, 45.70851669844131],
- [4.85870560116178, 45.70860760344203]
- ]
- },
- "length": 0.0250009436901644,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2077",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2610,
- "bus2": 2611,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858639795155034, 45.70854534569091],
- [4.858642134753842, 45.70859642880821],
- [4.858535320177401, 45.70859704818644]
- ]
- },
- "length": 0.0139984096271449,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line240",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 479,
- "bus2": 540,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858652333258119, 45.70837026980359],
- [4.858651358015089, 45.70812455944064]
- ]
- },
- "length": 0.0273097357634461,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1067",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 414,
- "bus2": 1495,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858691784300813, 45.70839008547719],
- [4.858691729537287, 45.70820627355009]
- ]
- },
- "length": 0.0204298908896905,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1785",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 680,
- "bus2": 2305,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858614083339599, 45.70834862687379],
- [4.858609965119976, 45.70825870764124]
- ]
- },
- "length": 0.0099992723625301,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2378",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 511,
- "bus2": 2921,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858763809394666, 45.70844787378506],
- [4.858763993714154, 45.70836690399566]
- ]
- },
- "length": 0.0089994489936721,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line26",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 141,
- "bus2": 142,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85870560116178, 45.70860760344203],
- [4.85869801153841, 45.70900292606039]
- ]
- },
- "length": 0.0439423554981783,
- "params_id": "S_CU_25",
- "ground": "ground"
- },
- {
- "id": "line2379",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2921,
- "bus2": 2922,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858763993714154, 45.70836690399566],
- [4.858764686176953, 45.70807430496647],
- [4.858994304107692, 45.70806651326404]
- ]
- },
- "length": 0.050422376736405,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1786",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2305,
- "bus2": 2306,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858609965119976, 45.70825870764124],
- [4.858609594480862, 45.70825061491045],
- [4.858368880856789, 45.70826862857308]
- ]
- },
- "length": 0.0197507861351198,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2078",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2611,
- "bus2": 2612,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858535320177401, 45.70859704818644],
- [4.858534241242276, 45.70859705444225]
- ]
- },
- "length": 8.401840908629157e-05,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1068",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1495,
- "bus2": 1496,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858691729537287, 45.70820627355009],
- [4.858691694044068, 45.70807954669539]
- ]
- },
- "length": 0.014085134613226,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1904",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1496,
- "bus2": 2428,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858691694044068, 45.70807954669539],
- [4.858231152717311, 45.70810758836546]
- ]
- },
- "length": 0.0359973644170521,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line49",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 186,
- "bus2": 187,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858653382246263, 45.70875532583823],
- [4.858736830996066, 45.70877555641476],
- [4.858739171164092, 45.70880757501374]
- ]
- },
- "length": 0.0104394739583985,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line383",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 186,
- "bus2": 773,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858653382246263, 45.70875532583823],
- [4.858777291977871, 45.70875317881072],
- [4.858792773914155, 45.70919133238354],
- [4.858806761666566, 45.70958732202981],
- [4.858856354113938, 45.7096203934093],
- [4.858891454451695, 45.70964646367737],
- [4.858895913447741, 45.70974381024688]
- ]
- },
- "length": 0.1225312422779096,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line887",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 187,
- "bus2": 1290,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858739171164092, 45.70880757501374],
- [4.858739171732017, 45.70881207559292]
- ]
- },
- "length": 0.0005002197054336,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line888",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1290,
- "bus2": 1291,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858739171732017, 45.70881207559292],
- [4.858739150677472, 45.70883237373603]
- ]
- },
- "length": 0.0022560504862093,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line889",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1291,
- "bus2": 1292,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858739150677472, 45.70883237373603],
- [4.85873914807851, 45.70883456108218]
- ]
- },
- "length": 0.000243114049454,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line890",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1292,
- "bus2": 1293,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85873914807851, 45.70883456108218],
- [4.858739125404754, 45.70886155614262]
- ]
- },
- "length": 0.0030003835161266,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line891",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1293,
- "bus2": 1294,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858739125404754, 45.70886155614262],
- [4.85873905168792, 45.70895924765031]
- ]
- },
- "length": 0.0108579857937378,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line237",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 142,
- "bus2": 535,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85869801153841, 45.70900292606039],
- [4.858723373804454, 45.70941641027449]
- ]
- },
- "length": 0.045999380754809,
- "params_id": "S_CU_25",
- "ground": "ground"
- },
- {
- "id": "line2380",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2922,
- "bus2": 2578,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858994304107692, 45.70806651326404],
- [4.859000718079856, 45.70806629701848]
- ]
- },
- "length": 0.0005000318906638,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line892",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1294,
- "bus2": 1295,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85873905168792, 45.70895924765031],
- [4.85873893164317, 45.70910641971108]
- ]
- },
- "length": 0.0163575345977811,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line2046",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2578,
- "bus2": 2579,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859000718079856, 45.70806629701848],
- [4.859000143989006, 45.70798532627871]
- ]
- },
- "length": 0.0089996536049888,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line3260",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2578,
- "bus2": 3834,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859000718079856, 45.70806629701848],
- [4.859116288759923, 45.70806612834648]
- ]
- },
- "length": 0.0089994707921524,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1905",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2428,
- "bus2": 2429,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858231152717311, 45.70810758836546],
- [4.858129245824944, 45.70811379479478]
- ]
- },
- "length": 0.0079653762628655,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line3261",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3834,
- "bus2": 3835,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859116288759923, 45.70806612834648],
- [4.859373111064799, 45.70806575312553]
- ]
- },
- "length": 0.0199987129260412,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2047",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2579,
- "bus2": 2580,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859000143989006, 45.70798532627871],
- [4.858999648085297, 45.70791335496535]
- ]
- },
- "length": 0.0079993889005269,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2358",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2429,
- "bus2": 2899,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858129245824944, 45.70811379479478],
- [4.857975831490713, 45.70812391332192]
- ]
- },
- "length": 0.0119991328428249,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line893",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1295,
- "bus2": 1163,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85873893164317, 45.70910641971108],
- [4.858738932211071, 45.70911092029043]
- ]
- },
- "length": 0.0005002197530754,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line751",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1163,
- "bus2": 1164,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858738932211071, 45.70911092029043],
- [4.858757916934997, 45.70943452705954]
- ]
- },
- "length": 0.0359978479701025,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line2048",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2580,
- "bus2": 2581,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858999648085297, 45.70791335496535],
- [4.858999556689571, 45.70790070135651],
- [4.858880154686606, 45.70790248627098],
- [4.858881598777165, 45.70785743888134]
- ]
- },
- "length": 0.015714432025861,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2359",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2899,
- "bus2": 1623,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857975831490713, 45.70812391332192],
- [4.857860255450155, 45.70813154291512]
- ]
- },
- "length": 0.0090397209912012,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line3262",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3835,
- "bus2": 426,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859373111064799, 45.70806575312553],
- [4.859386124804403, 45.70806573046651]
- ]
- },
- "length": 0.0010133788079987,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line176",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 426,
- "bus2": 427,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859386124804403, 45.70806573046651],
- [4.859704050364739, 45.70805047840309]
- ]
- },
- "length": 0.024814734423431,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2049",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2581,
- "bus2": 2582,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858881598777165, 45.70785743888134],
- [4.858881674325446, 45.70785488084649]
- ]
- },
- "length": 0.0002843752030909,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2050",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2582,
- "bus2": 1058,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858881674325446, 45.70785488084649],
- [4.858881739788789, 45.70785294412009]
- ]
- },
- "length": 0.0002153189890175,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line640",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1058,
- "bus2": 1059,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858881739788789, 45.70785294412009],
- [4.858882368754885, 45.70784395579707]
- ]
- },
- "length": 0.0010002125153599,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line641",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1059,
- "bus2": 1060,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858882368754885, 45.70784395579707],
- [4.858897218734911, 45.70763017681548]
- ]
- },
- "length": 0.0237887171241015,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line2967",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 535,
- "bus2": 3535,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858723373804454, 45.70941641027449],
- [4.858735739719023, 45.70957811755016]
- ]
- },
- "length": 0.0179988343639828,
- "params_id": "S_CU_25",
- "ground": "ground"
- },
- {
- "id": "line1179",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1623,
- "bus2": 1624,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857860255450155, 45.70813154291512],
- [4.85782192849138, 45.70813430365612]
- ]
- },
- "length": 0.0030002365069316,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1635",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1623,
- "bus2": 2144,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857860255450155, 45.70813154291512],
- [4.857913824052103, 45.70815104152228],
- [4.857917405904961, 45.70822927127691],
- [4.857882752543429, 45.70823005021285]
- ]
- },
- "length": 0.0160999345263066,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1180",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1624,
- "bus2": 1625,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85782192849138, 45.70813430365612],
- [4.857821121561098, 45.70813435779852]
- ]
- },
- "length": 6.312281936731819e-05,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1181",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1625,
- "bus2": 1626,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857821121561098, 45.70813435779852],
- [4.857540908874141, 45.70815449967574]
- ]
- },
- "length": 0.0219345812676839,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1636",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2144,
- "bus2": 2145,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857882752543429, 45.70823005021285],
- [4.857876335254144, 45.70823019445908]
- ]
- },
- "length": 0.0004999678872504,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line752",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1164,
- "bus2": 1165,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858757916934997, 45.70943452705954],
- [4.858773792484836, 45.70970511476557]
- ]
- },
- "length": 0.0301000403657492,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line2968",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3535,
- "bus2": 3536,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858735739719023, 45.70957811755016],
- [4.858742606561232, 45.70966801100467]
- ]
- },
- "length": 0.0100055636677337,
- "params_id": "S_CU_25",
- "ground": "ground"
- },
- {
- "id": "line315",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 427,
- "bus2": 662,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859704050364739, 45.70805047840309],
- [4.859703873051338, 45.70810268927151]
- ]
- },
- "length": 0.0058030254958827,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2653",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 427,
- "bus2": 3218,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859704050364739, 45.70805047840309],
- [4.859793914502443, 45.70805175138868]
- ]
- },
- "length": 0.0069991232756766,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line642",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1060,
- "bus2": 1061,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858897218734911, 45.70763017681548],
- [4.858902974214498, 45.707547425535]
- ]
- },
- "length": 0.0092083543694753,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line446",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 662,
- "bus2": 853,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859703873051338, 45.70810268927151],
- [4.859770824881562, 45.70807778014717],
- [4.859810591784496, 45.70807812776008]
- ]
- },
- "length": 0.0089998882895087,
- "params_id": "T_AL_25",
- "ground": "ground"
- },
- {
- "id": "line691",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 662,
- "bus2": 1106,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859703873051338, 45.70810268927151],
- [4.859703269885658, 45.70811167702172]
- ]
- },
- "length": 0.001000052589444,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line1182",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1626,
- "bus2": 1627,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857540908874141, 45.70815449967574],
- [4.857477034557761, 45.70815909463102]
- ]
- },
- "length": 0.0050000148965564,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line692",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1106,
- "bus2": 1107,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859703269885658, 45.70811167702172],
- [4.859691230963773, 45.70829140447697]
- ]
- },
- "length": 0.0199979043405383,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line2654",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3218,
- "bus2": 3219,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859793914502443, 45.70805175138868],
- [4.859806757619531, 45.708051930545]
- ]
- },
- "length": 0.0010002878216915,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2655",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3219,
- "bus2": 3220,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859806757619531, 45.708051930545],
- [4.859935139105061, 45.70805375915022]
- ]
- },
- "length": 0.0099990926583539,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1183",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1627,
- "bus2": 1628,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857477034557761, 45.70815909463102],
- [4.857336518230978, 45.70816919244123]
- ]
- },
- "length": 0.0109993501457698,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line643",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1061,
- "bus2": 1062,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858902974214498, 45.707547425535],
- [4.858919214046995, 45.70731378569783]
- ]
- },
- "length": 0.0259988143444644,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line447",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 853,
- "bus2": 854,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859810591784496, 45.70807812776008],
- [4.859913312051285, 45.70807902143925]
- ]
- },
- "length": 0.0079994087043107,
- "params_id": "T_AL_25",
- "ground": "ground"
- },
- {
- "id": "line2656",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3220,
- "bus2": 3221,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859935139105061, 45.70805375915022],
- [4.85997402865019, 45.70805430646571]
- ]
- },
- "length": 0.0030289278084544,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1184",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1628,
- "bus2": 1629,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857336518230978, 45.70816919244123],
- [4.857310970894318, 45.70817102672679]
- ]
- },
- "length": 0.0019997784351482,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line448",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 854,
- "bus2": 855,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859913312051285, 45.70807902143925],
- [4.859951832358216, 45.70807936104072]
- ]
- },
- "length": 0.0029998005526106,
- "params_id": "T_AL_25",
- "ground": "ground"
- },
- {
- "id": "line1185",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1629,
- "bus2": 665,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857310970894318, 45.70817102672679],
- [4.857131615330457, 45.70818392334662]
- ]
- },
- "length": 0.0140396960419226,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line449",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 855,
- "bus2": 856,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859951832358216, 45.70807936104072],
- [4.859972615464178, 45.70807954158136]
- ]
- },
- "length": 0.0016184977160301,
- "params_id": "T_AL_25",
- "ground": "ground"
- },
- {
- "id": "line693",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1107,
- "bus2": 1108,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859691230963773, 45.70829140447697],
- [4.859691101355493, 45.70829334264744]
- ]
- },
- "length": 0.0002156554459493,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line694",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1108,
- "bus2": 1109,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859691101355493, 45.70829334264744],
- [4.859690024623929, 45.70830937997797]
- ]
- },
- "length": 0.0017844498815044,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line753",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1165,
- "bus2": 1166,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858773792484836, 45.70970511476557],
- [4.858774062588907, 45.70970960928479]
- ]
- },
- "length": 0.0004999888077918,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line695",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1109,
- "bus2": 1110,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859690024623929, 45.70830937997797],
- [4.859689421453726, 45.70831836772848]
- ]
- },
- "length": 0.0010000526676574,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line696",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1110,
- "bus2": 1111,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.859689421453726, 45.70831836772848],
- [4.859668770979119, 45.70862644778789]
- ]
- },
- "length": 0.0342794868178623,
- "params_id": "A_CU_14",
- "ground": "ground"
- },
- {
- "id": "line644",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1062,
- "bus2": 1063,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858919214046995, 45.70731378569783],
- [4.858922785113299, 45.70726244366002]
- ]
- },
- "length": 0.0057132131731552,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line317",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 665,
- "bus2": 666,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857131615330457, 45.70818392334662],
- [4.857097901025856, 45.70823328729713]
- ]
- },
- "length": 0.0060823444883348,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2159",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2698,
- "bus2": 2697,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858863334716782, 45.70975820661533],
- [4.858868334217182, 45.70975599692036]
- ]
- },
- "length": 0.0004602945698527,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2158",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2697,
- "bus2": 2696,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858857002020719, 45.71014925251106],
- [4.858834575884895, 45.71010508389108],
- [4.858812307407221, 45.70978076782136],
- [4.858863334716782, 45.70975820661533]
- ]
- },
- "length": 0.0459969488636987,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2157",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2696,
- "bus2": 2695,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858859064573131, 45.71015332867633],
- [4.858857002020719, 45.71014925251106]
- ]
- },
- "length": 0.0004806727477676,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line678",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1063,
- "bus2": 1093,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858922785113299, 45.70726244366002],
- [4.858781571296007, 45.70726034441319]
- ]
- },
- "length": 0.0109989068607356,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1551",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 666,
- "bus2": 2055,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857097901025856, 45.70823328729713],
- [4.857129156762444, 45.70824248624743],
- [4.857165471572625, 45.70822186761867],
- [4.857200315625728, 45.70822020250381]
- ]
- },
- "length": 0.0089993081940269,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1552",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2055,
- "bus2": 2056,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857200315625728, 45.70822020250381],
- [4.857271875104469, 45.70821677618032],
- [4.857275018775843, 45.70846340082636]
- ]
- },
- "length": 0.0329976382636671,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line679",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1093,
- "bus2": 1094,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858781571296007, 45.70726034441319],
- [4.858768727955327, 45.70726015614733]
- ]
- },
- "length": 0.0010003400099169,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line680",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1094,
- "bus2": 1095,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858768727955327, 45.70726015614733],
- [4.858537648453671, 45.7072567198413]
- ]
- },
- "length": 0.017998397595807,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line681",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1095,
- "bus2": 1096,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858537648453671, 45.7072567198413],
- [4.858511961775738, 45.70725634325208]
- ]
- },
- "length": 0.0020006800193537,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line682",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1096,
- "bus2": 1097,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858511961775738, 45.70725634325208],
- [4.858460613677841, 45.70725558048714]
- ]
- },
- "length": 0.003999416095814,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line683",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1097,
- "bus2": 1098,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858460613677841, 45.70725558048714],
- [4.858157821930228, 45.70725108235426]
- ]
- },
- "length": 0.0235839363651171,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1553",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2056,
- "bus2": 2057,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857275018775843, 45.70846340082636],
- [4.857278744071173, 45.70875669252492]
- ]
- },
- "length": 0.0325993798943446,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2156",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2695,
- "bus2": 2694,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858867184443032, 45.71016931222483],
- [4.858859064573131, 45.71015332867633]
- ]
- },
- "length": 0.0018856622450659,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line2160",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 773,
- "bus2": 2698,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858868334217182, 45.70975599692036],
- [4.858895913447741, 45.70974381024688]
- ]
- },
- "length": 0.0025389970649123,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line684",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1098,
- "bus2": 1099,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858157821930228, 45.70725108235426],
- [4.858152499451649, 45.70725100398066]
- ]
- },
- "length": 0.0004145572289478,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line685",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1099,
- "bus2": 1003,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858152499451649, 45.70725100398066],
- [4.858151406473321, 45.70725098354557]
- ]
- },
- "length": 8.514140420113163e-05,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line584",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1003,
- "bus2": 1004,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858151406473321, 45.70725098354557],
- [4.85812572934119, 45.707250534644]
- ]
- },
- "length": 0.0020001213984857,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line585",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1004,
- "bus2": 1005,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85812572934119, 45.707250534644],
- [4.858114041508144, 45.70725032932825]
- ]
- },
- "length": 0.0009104270337889,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line586",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1005,
- "bus2": 1006,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.858114041508144, 45.70725032932825],
- [4.857597397234586, 45.70724123069877]
- ]
- },
- "length": 0.0402442179264523,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line1554",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2057,
- "bus2": 2058,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857278744071173, 45.70875669252492],
- [4.857278792378547, 45.7087602739085]
- ]
- },
- "length": 0.0003980729009457,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1555",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2058,
- "bus2": 2059,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857278792378547, 45.7087602739085],
- [4.857278808693088, 45.70876119166208]
- ]
- },
- "length": 0.0001020122088556,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line588",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1007,
- "bus2": 878,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857535241965201, 45.70724013433262],
- [4.857275781799144, 45.70723556005225]
- ]
- },
- "length": 0.0202107728374538,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line587",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1006,
- "bus2": 1007,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857597397234586, 45.70724123069877],
- [4.857535241965201, 45.70724013433262]
- ]
- },
- "length": 0.0048416155701097,
- "params_id": "T_AL_150",
- "ground": "ground"
- },
- {
- "id": "line468",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 878,
- "bus2": 879,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857275781799144, 45.70723556005225],
- [4.857256025201153, 45.70711268791645],
- [4.857256151263146, 45.70711038978346]
- ]
- },
- "length": 0.0139986957482644,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line469",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 879,
- "bus2": 880,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857256151263146, 45.70711038978346],
- [4.857262364210815, 45.70699351390524]
- ]
- },
- "length": 0.0129992453778308,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line470",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 880,
- "bus2": 881,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857262364210815, 45.70699351390524],
- [4.857267515697749, 45.70689639246044]
- ]
- },
- "length": 0.0108020718458042,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line471",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 881,
- "bus2": 882,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857267515697749, 45.70689639246044],
- [4.857267614293992, 45.70689461701293]
- ]
- },
- "length": 0.0001974824702347,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line472",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 882,
- "bus2": 883,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857267614293992, 45.70689461701293],
- [4.857267759513011, 45.70689189539422]
- ]
- },
- "length": 0.0003027072235622,
- "params_id": "T_AL_70",
- "ground": "ground"
- },
- {
- "id": "line1455",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1944,
- "bus2": 1006,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.857597397234586, 45.70724123069877],
- [4.857598359433462, 45.70721425954639],
- [4.85766416853888, 45.70721602985164]
- ]
- },
- "length": 0.005128387383998,
- "params_id": "S_AL_95",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 10,
- "bus": 141,
- "phases": "abcn",
- "powers": [
- [1649.6309210175623, 289.90110941572357],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 92,
- "bus": 141,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1613.3744424881445, 449.83078723425234],
- [0.0, 0.0]
- ]
- },
- {
- "id": 187,
- "bus": 141,
- "phases": "abcn",
- "powers": [
- [1656.3540960721095, 248.6281103231552],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 210,
- "bus": 141,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1616.172346317852, 439.67235052385007],
- [0.0, 0.0]
- ]
- },
- {
- "id": 131,
- "bus": 142,
- "phases": "abcn",
- "powers": [
- [1597.466210719081, 503.4148730704519],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 209,
- "bus": 186,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1623.0200815085877, 413.6793974052557]
- ]
- },
- {
- "id": 231,
- "bus": 186,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1603.9262132948445, 482.43707478113595]
- ]
- },
- {
- "id": 142,
- "bus": 187,
- "phases": "abcn",
- "powers": [
- [1652.8488490414247, 270.95296831766905],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 230,
- "bus": 187,
- "phases": "abcn",
- "powers": [
- [1607.860438506812, 469.1584371003045],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 5,
- "bus": 414,
- "phases": "abcn",
- "powers": [
- [1599.0114311088391, 498.4849767053975],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 31,
- "bus": 414,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1624.7606281318162, 406.7895402913211],
- [0.0, 0.0]
- ]
- },
- {
- "id": 73,
- "bus": 414,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1597.098860143901, 504.57909166430034],
- [0.0, 0.0]
- ]
- },
- {
- "id": 146,
- "bus": 414,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1609.792701829586, 462.48490348758475],
- [0.0, 0.0]
- ]
- },
- {
- "id": 15,
- "bus": 426,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1629.6396498692925, 386.7808686990708]
- ]
- },
- {
- "id": 105,
- "bus": 426,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1598.0306174530028, 501.6203489697093]
- ]
- },
- {
- "id": 182,
- "bus": 426,
- "phases": "abcn",
- "powers": [
- [1673.565108144437, 67.11674619062352],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 99,
- "bus": 427,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1631.0937767105743, 380.6020499074502]
- ]
- },
- {
- "id": 97,
- "bus": 479,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1652.7795669620286, 271.37526020351805]
- ]
- },
- {
- "id": 98,
- "bus": 479,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1617.427872330716, 435.0309260563573]
- ]
- },
- {
- "id": 207,
- "bus": 479,
- "phases": "abcn",
- "powers": [
- [1660.9157783929766, 216.06389310333773],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 19,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [1646.5427148327403, 306.9558877900004],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 32,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [1667.635933840843, 155.93338635615305],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 61,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1655.3000768485942, 255.55133418308813]
- ]
- },
- {
- "id": 102,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1596.856292375536, 505.346228162806]
- ]
- },
- {
- "id": 115,
- "bus": 511,
- "phases": "abcn",
- "powers": [
- [1622.1111126465375, 417.22939379474434],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 86,
- "bus": 535,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1658.833117376904, 231.51137663480102],
- [0.0, 0.0]
- ]
- },
- {
- "id": 113,
- "bus": 535,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1609.0155932118976, 465.181308329004]
- ]
- },
- {
- "id": 60,
- "bus": 540,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1631.86439847811, 377.28426126383084]
- ]
- },
- {
- "id": 178,
- "bus": 540,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1634.3316710095662, 366.44892952879115],
- [0.0, 0.0]
- ]
- },
- {
- "id": 203,
- "bus": 540,
- "phases": "abcn",
- "powers": [
- [1603.7962663959704, 482.86888977450593],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 220,
- "bus": 540,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1627.0592737029801, 397.49584736805645]
- ]
- },
- {
- "id": 226,
- "bus": 540,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1592.7881379997257, 518.0258451709577],
- [0.0, 0.0]
- ]
- },
- {
- "id": 40,
- "bus": 662,
- "phases": "abcn",
- "powers": [
- [1663.278385248608, 197.0528913325079],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 255,
- "bus": 662,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1664.9975362517018, 181.95612958480237],
- [0.0, 0.0]
- ]
- },
- {
- "id": 278,
- "bus": 665,
- "phases": "abcn",
- "powers": [
- [1615.9741885813264, 440.4001029253305],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 52,
- "bus": 666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1616.158288717553, 439.72402098051083]
- ]
- },
- {
- "id": 83,
- "bus": 666,
- "phases": "abcn",
- "powers": [
- [1607.2096847153755, 471.38292096216423],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 122,
- "bus": 666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1637.4948758755331, 352.04454306108863]
- ]
- },
- {
- "id": 138,
- "bus": 666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1656.4961146642518, 247.6801383235168],
- [0.0, 0.0]
- ]
- },
- {
- "id": 237,
- "bus": 666,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1593.315327640675, 516.4020676982298]
- ]
- },
- {
- "id": 46,
- "bus": 680,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1665.261943144325, 179.52016469718814]
- ]
- },
- {
- "id": 57,
- "bus": 680,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1664.7538948936872, 184.1719258030843],
- [0.0, 0.0]
- ]
- },
- {
- "id": 154,
- "bus": 680,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1606.1191291213963, 475.0854364091214],
- [0.0, 0.0]
- ]
- },
- {
- "id": 16,
- "bus": 773,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1597.7640380935597, 502.4688123582196],
- [0.0, 0.0]
- ]
- },
- {
- "id": 191,
- "bus": 773,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1602.331427244946, 487.70772608283755],
- [0.0, 0.0]
- ]
- },
- {
- "id": 62,
- "bus": 853,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1630.9676443164044, 381.1421939522266]
- ]
- },
- {
- "id": 232,
- "bus": 853,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1647.2290534213055, 303.2511737528281],
- [0.0, 0.0]
- ]
- },
- {
- "id": 36,
- "bus": 854,
- "phases": "abcn",
- "powers": [
- [1653.5543640378867, 266.61356677592045],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 121,
- "bus": 854,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1600.8315085460297, 492.608678429401],
- [0.0, 0.0]
- ]
- },
- {
- "id": 134,
- "bus": 855,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1601.8378657993806, 489.3263537854917],
- [0.0, 0.0]
- ]
- },
- {
- "id": 41,
- "bus": 856,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1604.5626504309857, 480.31607266424925]
- ]
- },
- {
- "id": 54,
- "bus": 856,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1655.0217377912397, 257.3477729769253],
- [0.0, 0.0]
- ]
- },
- {
- "id": 96,
- "bus": 856,
- "phases": "abcn",
- "powers": [
- [1616.0128256010053, 440.2583063506845],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 23,
- "bus": 878,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1620.9172039814193, 421.8438652567747],
- [0.0, 0.0]
- ]
- },
- {
- "id": 49,
- "bus": 878,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1591.4366552355445, 522.1630025101559],
- [0.0, 0.0]
- ]
- },
- {
- "id": 116,
- "bus": 878,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1660.9872790865918, 215.51354372808868],
- [0.0, 0.0]
- ]
- },
- {
- "id": 250,
- "bus": 880,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1634.8588270330379, 364.0898851793023]
- ]
- },
- {
- "id": 85,
- "bus": 881,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1629.9079025741526, 385.6488790908703],
- [0.0, 0.0]
- ]
- },
- {
- "id": 78,
- "bus": 882,
- "phases": "abcn",
- "powers": [
- [1599.2823959657937, 497.61495834794636],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 240,
- "bus": 883,
- "phases": "abcn",
- "powers": [
- [1640.750417663451, 336.54553295940525],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 137,
- "bus": 1003,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1612.0618722471097, 454.51220980834097]
- ]
- },
- {
- "id": 173,
- "bus": 1003,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1656.9686559283643, 244.49887952436086],
- [0.0, 0.0]
- ]
- },
- {
- "id": 75,
- "bus": 1004,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1602.2453990876709, 487.9902764606162]
- ]
- },
- {
- "id": 205,
- "bus": 1004,
- "phases": "abcn",
- "powers": [
- [1625.908202106315, 402.1782529440506],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 259,
- "bus": 1004,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1657.9797599185965, 237.5456682787351],
- [0.0, 0.0]
- ]
- },
- {
- "id": 29,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1618.32210067962, 431.6924915603932]
- ]
- },
- {
- "id": 39,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [1633.835418823479, 368.65519529178727],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 69,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [1619.4780256615602, 427.33564468348874],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 71,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [1597.110227435846, 504.54311038556307],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 181,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [1603.5051087020518, 483.83488421582325],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 188,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [1658.5054723637472, 233.84701613923147],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 213,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1609.5404533796768, 463.36201587102755],
- [0.0, 0.0]
- ]
- },
- {
- "id": 267,
- "bus": 1005,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1649.0989494031269, 292.91207536600695],
- [0.0, 0.0]
- ]
- },
- {
- "id": 6,
- "bus": 1006,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1641.581245893379, 332.46930978491736]
- ]
- },
- {
- "id": 21,
- "bus": 1006,
- "phases": "abcn",
- "powers": [
- [1622.9987428245165, 413.7631080796804],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 59,
- "bus": 1007,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1670.4676479906368, 121.91253354084823]
- ]
- },
- {
- "id": 74,
- "bus": 1007,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1647.1887662720164, 303.4699278099737],
- [0.0, 0.0]
- ]
- },
- {
- "id": 103,
- "bus": 1007,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1601.2048413436364, 491.3938185156775],
- [0.0, 0.0]
- ]
- },
- {
- "id": 140,
- "bus": 1007,
- "phases": "abcn",
- "powers": [
- [1672.9177561269962, 81.67625146108232],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 200,
- "bus": 1007,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1628.0022334825608, 393.6160014449516],
- [0.0, 0.0]
- ]
- },
- {
- "id": 27,
- "bus": 1058,
- "phases": "abcn",
- "powers": [
- [1629.8770962362053, 385.7790559145918],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 186,
- "bus": 1058,
- "phases": "abcn",
- "powers": [
- [1646.1067936545764, 309.2850670529829],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 256,
- "bus": 1058,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1638.8872292039748, 345.5046725730875],
- [0.0, 0.0]
- ]
- },
- {
- "id": 126,
- "bus": 1059,
- "phases": "abcn",
- "powers": [
- [1598.8944576993117, 498.860042452933],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 234,
- "bus": 1059,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1605.2164635655508, 478.12648317764706],
- [0.0, 0.0]
- ]
- },
- {
- "id": 114,
- "bus": 1060,
- "phases": "abcn",
- "powers": [
- [1669.3211661893297, 136.71749313827573],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 129,
- "bus": 1060,
- "phases": "abcn",
- "powers": [
- [1653.2396421991018, 268.5582139483058],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 155,
- "bus": 1060,
- "phases": "abcn",
- "powers": [
- [1600.2431022067087, 494.51677692224706],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 28,
- "bus": 1061,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1648.795355407865, 294.6161991526779]
- ]
- },
- {
- "id": 123,
- "bus": 1061,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1641.8166627546996, 331.3048063622674],
- [0.0, 0.0]
- ]
- },
- {
- "id": 2,
- "bus": 1062,
- "phases": "abcn",
- "powers": [
- [1609.8577738238253, 462.25834430188064],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 150,
- "bus": 1062,
- "phases": "abcn",
- "powers": [
- [1672.1375050755914, 96.33791017712122],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 151,
- "bus": 1062,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1644.8860961382336, 315.71278014809536],
- [0.0, 0.0]
- ]
- },
- {
- "id": 199,
- "bus": 1062,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1631.747703598017, 377.7886454359314]
- ]
- },
- {
- "id": 17,
- "bus": 1093,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1642.9631326666329, 325.571764002903]
- ]
- },
- {
- "id": 168,
- "bus": 1093,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1601.8246574373372, 489.36959002728764]
- ]
- },
- {
- "id": 110,
- "bus": 1094,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1617.6432981752396, 434.22918912303794],
- [0.0, 0.0]
- ]
- },
- {
- "id": 166,
- "bus": 1094,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1617.0660793279756, 436.3738350366206]
- ]
- },
- {
- "id": 135,
- "bus": 1095,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1666.4505465393213, 168.1291311953869],
- [0.0, 0.0]
- ]
- },
- {
- "id": 238,
- "bus": 1095,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1647.8896751156265, 299.64053041107945]
- ]
- },
- {
- "id": 268,
- "bus": 1095,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1639.8675492877805, 340.82143361386056]
- ]
- },
- {
- "id": 272,
- "bus": 1095,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1610.4714026341921, 460.1159529022831],
- [0.0, 0.0]
- ]
- },
- {
- "id": 107,
- "bus": 1096,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1608.2706673639102, 467.7502424527016],
- [0.0, 0.0]
- ]
- },
- {
- "id": 157,
- "bus": 1096,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1641.9321500268745, 330.73198140766993],
- [0.0, 0.0]
- ]
- },
- {
- "id": 223,
- "bus": 1097,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1654.914452060731, 258.0367903579807],
- [0.0, 0.0]
- ]
- },
- {
- "id": 254,
- "bus": 1097,
- "phases": "abcn",
- "powers": [
- [1660.7348754708923, 217.449999338694],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 128,
- "bus": 1098,
- "phases": "abcn",
- "powers": [
- [1644.5202654503466, 317.6128544955946],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 143,
- "bus": 1098,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1658.3484731945027, 234.9578052995472],
- [0.0, 0.0]
- ]
- },
- {
- "id": 202,
- "bus": 1098,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1665.9518707818845, 173.00055796458477],
- [0.0, 0.0]
- ]
- },
- {
- "id": 206,
- "bus": 1098,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1630.1839474831527, 384.48033263869763]
- ]
- },
- {
- "id": 11,
- "bus": 1099,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1604.1855860684668, 481.5739136081686],
- [0.0, 0.0]
- ]
- },
- {
- "id": 48,
- "bus": 1099,
- "phases": "abcn",
- "powers": [
- [1615.744195361459, 441.2431574239642],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 215,
- "bus": 1099,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1648.0399646727146, 298.81282378652253]
- ]
- },
- {
- "id": 260,
- "bus": 1099,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1664.887728770792, 182.95813566538203],
- [0.0, 0.0]
- ]
- },
- {
- "id": 14,
- "bus": 1106,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1613.3173120524814, 450.03564242121354]
- ]
- },
- {
- "id": 228,
- "bus": 1106,
- "phases": "abcn",
- "powers": [
- [1645.6115295296893, 311.90947836940535],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 271,
- "bus": 1107,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1629.1640074070413, 388.77945648805644]
- ]
- },
- {
- "id": 18,
- "bus": 1108,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1607.2681824779456, 471.1834233202177]
- ]
- },
- {
- "id": 163,
- "bus": 1108,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1597.0248677310617, 504.81323345005836],
- [0.0, 0.0]
- ]
- },
- {
- "id": 248,
- "bus": 1108,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1665.8302875301836, 174.1673963887154]
- ]
- },
- {
- "id": 279,
- "bus": 1108,
- "phases": "abcn",
- "powers": [
- [1616.4784308668634, 438.5456776208398],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 13,
- "bus": 1110,
- "phases": "abcn",
- "powers": [
- [1621.2277893370012, 420.64864661517436],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 222,
- "bus": 1110,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1608.8904750559184, 465.61386157637037],
- [0.0, 0.0]
- ]
- },
- {
- "id": 224,
- "bus": 1110,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1654.1423280550448, 262.9410339873837],
- [0.0, 0.0]
- ]
- },
- {
- "id": 239,
- "bus": 1110,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1670.0088191215686, 128.04441758195404],
- [0.0, 0.0]
- ]
- },
- {
- "id": 43,
- "bus": 1111,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1641.0678606761926, 334.99418722327493],
- [0.0, 0.0]
- ]
- },
- {
- "id": 204,
- "bus": 1111,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1603.9616310163979, 482.31930818176306]
- ]
- },
- {
- "id": 208,
- "bus": 1111,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1670.3933312359595, 122.92659508890925]
- ]
- },
- {
- "id": 211,
- "bus": 1111,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1636.2384357068568, 357.83880495733865],
- [0.0, 0.0]
- ]
- },
- {
- "id": 109,
- "bus": 1163,
- "phases": "abcn",
- "powers": [
- [1647.4159213600706, 302.2343641399299],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 82,
- "bus": 1164,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1619.5799475808362, 426.9492033155392]
- ]
- },
- {
- "id": 91,
- "bus": 1164,
- "phases": "abcn",
- "powers": [
- [1604.9524958478376, 479.01181080377887],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 152,
- "bus": 1164,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1673.3317650228937, 72.70235885502635]
- ]
- },
- {
- "id": 216,
- "bus": 1164,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1604.9866313425448, 478.89742328543446]
- ]
- },
- {
- "id": 139,
- "bus": 1165,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1653.930266610641, 264.27164434909093]
- ]
- },
- {
- "id": 167,
- "bus": 1165,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1624.864104098938, 406.3760229497721],
- [0.0, 0.0]
- ]
- },
- {
- "id": 169,
- "bus": 1166,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1669.916118876741, 129.24776490663368]
- ]
- },
- {
- "id": 247,
- "bus": 1166,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1600.0032821240038, 495.29216227408034],
- [0.0, 0.0]
- ]
- },
- {
- "id": 38,
- "bus": 1290,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1624.612877428693, 407.3792180641775]
- ]
- },
- {
- "id": 127,
- "bus": 1290,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1594.8569433313073, 511.62110895235463],
- [0.0, 0.0]
- ]
- },
- {
- "id": 245,
- "bus": 1290,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1622.1985251714511, 416.88940229908326]
- ]
- },
- {
- "id": 270,
- "bus": 1290,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1637.2574432471677, 353.1471270582071]
- ]
- },
- {
- "id": 79,
- "bus": 1291,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1626.6376864762021, 399.2175669394656],
- [0.0, 0.0]
- ]
- },
- {
- "id": 156,
- "bus": 1291,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1652.177259290862, 275.01842247357615],
- [0.0, 0.0]
- ]
- },
- {
- "id": 214,
- "bus": 1291,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1593.5955731829927, 515.5365922505279],
- [0.0, 0.0]
- ]
- },
- {
- "id": 175,
- "bus": 1292,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1647.7456283279093, 300.4316447113745],
- [0.0, 0.0]
- ]
- },
- {
- "id": 9,
- "bus": 1293,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1614.4620999921485, 445.9113774133377]
- ]
- },
- {
- "id": 22,
- "bus": 1294,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1661.0178857292512, 215.27752345576147]
- ]
- },
- {
- "id": 249,
- "bus": 1294,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1603.9771978443657, 482.2675373825765]
- ]
- },
- {
- "id": 44,
- "bus": 1295,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1612.2196806931006, 453.9521230301219]
- ]
- },
- {
- "id": 80,
- "bus": 1295,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1595.7014687802139, 508.9809931130892]
- ]
- },
- {
- "id": 192,
- "bus": 1295,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1635.6447903692324, 360.5425752330898]
- ]
- },
- {
- "id": 217,
- "bus": 1295,
- "phases": "abcn",
- "powers": [
- [1673.2959462535111, 73.52213999391373],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 221,
- "bus": 1295,
- "phases": "abcn",
- "powers": [
- [1595.3759873170673, 510.00028226444226],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 269,
- "bus": 1495,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1635.6272076029422, 360.6223323183412]
- ]
- },
- {
- "id": 90,
- "bus": 1623,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1609.0652532107129, 465.00950498636337],
- [0.0, 0.0]
- ]
- },
- {
- "id": 258,
- "bus": 1624,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1606.3931478942275, 474.15807829899177],
- [0.0, 0.0]
- ]
- },
- {
- "id": 51,
- "bus": 1625,
- "phases": "abcn",
- "powers": [
- [1633.6809402406095, 369.3391589207354],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 246,
- "bus": 1625,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1619.7414566330963, 426.33606753571036]
- ]
- },
- {
- "id": 101,
- "bus": 1626,
- "phases": "abcn",
- "powers": [
- [1662.460998465826, 203.8338965867251],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
+ "id": 0,
+ "phase": "n"
},
{
- "id": 158,
- "bus": 1626,
- "phases": "abcn",
- "powers": [
- [1623.4232663086004, 412.09431836126197],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 176,
- "bus": 1626,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1657.6366580649167, 239.92819479396871],
- [0.0, 0.0]
- ]
- },
- {
- "id": 68,
- "bus": 1627,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1601.2984338224446, 491.0887441751281],
- [0.0, 0.0]
- ]
- },
- {
- "id": 262,
- "bus": 1627,
- "phases": "abcn",
- "powers": [
- [1598.3345765453375, 500.6509864539918],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 100,
- "bus": 1628,
- "phases": "abcn",
- "powers": [
- [1595.9282845174218, 508.2693572260652],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 37,
- "bus": 1629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1653.7239344417742, 265.5597436964729],
- [0.0, 0.0]
- ]
- },
- {
- "id": 84,
- "bus": 1629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1602.9045138767722, 485.82090137332204],
- [0.0, 0.0]
- ]
- },
- {
- "id": 153,
- "bus": 1629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1669.8217770024623, 130.46095916425557],
- [0.0, 0.0]
- ]
- },
- {
- "id": 218,
- "bus": 1629,
- "phases": "abcn",
- "powers": [
- [1667.1161034922575, 161.39617806661656],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 252,
- "bus": 1629,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1630.0959701585673, 384.8531627653819],
- [0.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 1944,
- "phases": "abcn",
- "powers": [
- [1640.6159768938057, 337.20030423844725],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 55,
- "bus": 1944,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1668.0845895933892, 151.058368780987]
- ]
- },
- {
- "id": 65,
- "bus": 1944,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1648.9381979355112, 293.8156704583797]
- ]
- },
- {
- "id": 88,
- "bus": 1944,
- "phases": "abcn",
- "powers": [
- [1672.3139697184884, 93.22454345347676],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 227,
- "bus": 1944,
- "phases": "abcn",
- "powers": [
- [1674.902675315834, 5.084981571270136],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 45,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [1648.1355622962135, 298.2850936809659],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 63,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [1613.3621796960017, 449.87476695663264],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 87,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [1595.4014204994583, 509.92071568630087],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 130,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1626.9817378565717, 397.81308864707773]
- ]
- },
- {
- "id": 172,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [1616.6130401062906, 438.04920656932467],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 196,
- "bus": 1982,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1666.3020334481905, 169.5946996345801],
- [0.0, 0.0]
- ]
- },
- {
- "id": 7,
- "bus": 2055,
- "phases": "abcn",
- "powers": [
- [1651.1283091610464, 281.24746310802834],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 95,
- "bus": 2055,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1651.3283489329701, 280.07054973350745]
- ]
- },
- {
- "id": 190,
- "bus": 2055,
- "phases": "abcn",
- "powers": [
- [1667.9988777338758, 152.0018838575649],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 193,
- "bus": 2055,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1617.7371569038633, 433.87938414993147]
- ]
- },
- {
- "id": 33,
- "bus": 2056,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1617.5177372217076, 434.6966742349028]
- ]
- },
- {
- "id": 104,
- "bus": 2056,
- "phases": "abcn",
- "powers": [
- [1639.646751894824, 341.8820817452578],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 233,
- "bus": 2056,
- "phases": "abcn",
- "powers": [
- [1630.1093871790822, 384.7963287875228],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 244,
- "bus": 2056,
- "phases": "abcn",
- "powers": [
- [1620.2416343241287, 424.43123732872743],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 76,
- "bus": 2057,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1630.7489553038533, 382.076790178505]
- ]
- },
- {
- "id": 159,
- "bus": 2057,
- "phases": "abcn",
- "powers": [
- [1612.4967432112114, 452.9669766671243],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 70,
- "bus": 2059,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1610.4359524269498, 460.24001558797664]
- ]
- },
- {
- "id": 219,
- "bus": 2059,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1646.6881337579819, 306.1748176424268]
- ]
- },
- {
- "id": 277,
- "bus": 2059,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1641.1434252762363, 334.62379845178447]
- ]
- },
- {
- "id": 56,
- "bus": 2144,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1632.0834135057216, 376.33570143852904],
- [0.0, 0.0]
- ]
- },
- {
- "id": 243,
- "bus": 2144,
- "phases": "abcn",
- "powers": [
- [1657.8453366159997, 238.48200912920169],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 64,
- "bus": 2145,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1671.925947307757, 99.94226101493652],
- [0.0, 0.0]
- ]
- },
- {
- "id": 174,
- "bus": 2145,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1618.1518037734559, 432.3303930588613]
- ]
- },
- {
- "id": 235,
- "bus": 2145,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1651.3240740005224, 280.0957540628483]
- ]
- },
- {
- "id": 171,
- "bus": 2305,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1616.3680782051056, 438.9522349609946]
- ]
- },
- {
- "id": 183,
- "bus": 2305,
- "phases": "abcn",
- "powers": [
- [1629.3039382587842, 388.19261403604077],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 112,
- "bus": 2306,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1674.5834892621301, 33.09027513315446]
- ]
- },
- {
- "id": 72,
- "bus": 2428,
- "phases": "abcn",
- "powers": [
- [1610.3377232213174, 460.58359283424505],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 184,
- "bus": 2428,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1607.4479545033093, 470.5697635641767]
- ]
- },
- {
- "id": 1,
- "bus": 2429,
- "phases": "abcn",
- "powers": [
- [1593.2594132465147, 516.5745550441775],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 26,
- "bus": 2429,
- "phases": "abcn",
- "powers": [
- [1635.896696153402, 359.397869125712],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 53,
- "bus": 2429,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1642.163401398756, 329.5818440451275]
- ]
- },
- {
- "id": 125,
- "bus": 2429,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1633.4906187901772, 370.17999289832244],
- [0.0, 0.0]
- ]
- },
- {
- "id": 179,
- "bus": 2429,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1619.2353892030467, 428.25411051171073]
- ]
- },
- {
- "id": 35,
- "bus": 2578,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1603.129730145802, 485.0772074014263],
- [0.0, 0.0]
- ]
- },
- {
- "id": 265,
- "bus": 2578,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1632.2689623444844, 375.53010982420335]
- ]
- },
- {
- "id": 34,
- "bus": 2579,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1624.2972737214423, 408.6357735181884],
- [0.0, 0.0]
- ]
- },
- {
- "id": 81,
- "bus": 2579,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1599.406930320665, 497.2145412796632]
- ]
- },
- {
- "id": 251,
- "bus": 2579,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1642.7447747400045, 326.6717525010854],
- [0.0, 0.0]
- ]
- },
- {
- "id": 106,
- "bus": 2580,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1638.500097045223, 347.335948039522]
- ]
- },
- {
- "id": 120,
- "bus": 2580,
- "phases": "abcn",
- "powers": [
- [1669.7960557052215, 130.78975941947022],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 149,
- "bus": 2580,
- "phases": "abcn",
- "powers": [
- [1624.5346150149323, 407.69119862464964],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 165,
- "bus": 2580,
- "phases": "abcn",
- "powers": [
- [1651.4410693739103, 279.4051237949543],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 24,
- "bus": 2581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1649.939181447882, 288.1415040233038],
- [0.0, 0.0]
- ]
- },
- {
- "id": 67,
- "bus": 2581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1622.4371686078744, 415.9596888370101]
- ]
- },
- {
- "id": 119,
- "bus": 2581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1616.2365037460663, 439.43644907587026]
- ]
- },
- {
- "id": 164,
- "bus": 2581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1643.351348220064, 323.6065127914087],
- [0.0, 0.0]
- ]
- },
- {
- "id": 257,
- "bus": 2581,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1619.3365843145589, 427.8713071919821],
- [0.0, 0.0]
- ]
- },
- {
- "id": 170,
- "bus": 2582,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1666.7707941793612, 164.92406885721527]
- ]
- },
- {
- "id": 25,
- "bus": 2610,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1597.144514825458, 504.43456223842435]
- ]
- },
- {
- "id": 42,
- "bus": 2610,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1641.1114587923032, 334.78053802202584],
- [0.0, 0.0]
- ]
- },
- {
- "id": 132,
- "bus": 2611,
- "phases": "abcn",
- "powers": [
- [1636.8556168719965, 355.0049553630403],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 275,
- "bus": 2611,
- "phases": "abcn",
- "powers": [
- [1607.205572883123, 471.3969402861565],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 8,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1626.29777998842, 400.5999995287756]
- ]
- },
- {
- "id": 94,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1674.5270650179114, 35.832071391671136]
- ]
- },
- {
- "id": 185,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1632.5667475051214, 374.23340812688986],
- [0.0, 0.0]
- ]
- },
- {
- "id": 189,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1630.0688460683778, 384.96803230271706]
- ]
- },
- {
- "id": 242,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1662.3731237681352, 204.54932459211506],
- [0.0, 0.0]
- ]
- },
- {
- "id": 261,
- "bus": 2612,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1637.7098830370646, 351.04297147278453],
- [0.0, 0.0]
- ]
- },
- {
- "id": 117,
- "bus": 2694,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1642.3901469397376, 328.4500480331599],
- [0.0, 0.0]
- ]
- },
- {
- "id": 160,
- "bus": 2694,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1591.30651152537, 522.5594848384969],
- [0.0, 0.0]
- ]
- },
- {
- "id": 66,
- "bus": 2695,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1624.5786920768455, 407.515523713642],
- [0.0, 0.0]
- ]
- },
- {
- "id": 108,
- "bus": 2695,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1611.1537537020404, 457.72088738612683],
- [0.0, 0.0]
- ]
- },
- {
- "id": 124,
- "bus": 2695,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1608.2152372850571, 467.940786191892],
- [0.0, 0.0]
- ]
- },
- {
- "id": 201,
- "bus": 2695,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1610.8026611122293, 458.9549169270104],
- [0.0, 0.0]
- ]
- },
- {
- "id": 50,
- "bus": 2696,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1613.222527493904, 450.37529417575564]
- ]
- },
- {
- "id": 195,
- "bus": 2696,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1626.90250101793, 398.137012847741]
- ]
- },
- {
- "id": 263,
- "bus": 2696,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1632.0810802567094, 376.3458200721922],
- [0.0, 0.0]
- ]
- },
- {
- "id": 273,
- "bus": 2696,
- "phases": "abcn",
- "powers": [
- [1617.5906011172037, 434.42545504954154],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 3,
- "bus": 2698,
- "phases": "abcn",
- "powers": [
- [1647.8354248159008, 299.9387296424358],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 144,
- "bus": 2698,
- "phases": "abcn",
- "powers": [
- [1613.508657364426, 449.3491308857352],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 162,
- "bus": 2698,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1647.3270071902402, 302.7186155481101]
- ]
- },
- {
- "id": 212,
- "bus": 2698,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1658.1502502295439, 236.3526527911612]
- ]
- },
- {
- "id": 276,
- "bus": 2698,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1614.320479512987, 446.42381012069416],
- [0.0, 0.0]
- ]
- },
- {
- "id": 197,
- "bus": 2899,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1628.856200279835, 390.06705529646507],
- [0.0, 0.0]
- ]
- },
- {
- "id": 274,
- "bus": 2899,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1670.7966100307979, 117.31801535702975]
- ]
- },
- {
- "id": 47,
- "bus": 2921,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1655.5315748693233, 254.04730549331973],
- [0.0, 0.0]
- ]
- },
- {
- "id": 89,
- "bus": 2921,
- "phases": "abcn",
- "powers": [
- [1605.0926849435857, 478.5418493280491],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 111,
- "bus": 2921,
- "phases": "abcn",
- "powers": [
- [1591.945002330109, 520.6111201020465],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 194,
- "bus": 2921,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1642.4717617251922, 328.0416753296169],
- [0.0, 0.0]
- ]
- },
- {
- "id": 198,
- "bus": 2921,
- "phases": "abcn",
- "powers": [
- [1661.4996285821737, 211.52733402332848],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 12,
- "bus": 2922,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1599.7245272791622, 496.1917629699018],
- [0.0, 0.0]
- ]
- },
- {
- "id": 264,
- "bus": 2922,
- "phases": "abcn",
- "powers": [
- [1649.0003126027527, 293.466859890077],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 20,
- "bus": 3066,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1673.6727628323965, 64.37632927319429],
- [0.0, 0.0]
- ]
- },
- {
- "id": 30,
- "bus": 3066,
- "phases": "abcn",
- "powers": [
- [1610.3466243779258, 460.5524705962807],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 229,
- "bus": 3067,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1594.5363132030109, 512.6195223503178]
- ]
- },
- {
- "id": 236,
- "bus": 3067,
- "phases": "abcn",
- "powers": [
- [1671.9559170678906, 99.43963092945995],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 77,
- "bus": 3218,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1658.7891302968374, 231.8263359214834],
- [0.0, 0.0]
- ]
- },
- {
- "id": 93,
- "bus": 3218,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1615.0532194779382, 443.76562177760565],
- [0.0, 0.0]
- ]
- },
- {
- "id": 145,
- "bus": 3218,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1600.2173989638175, 494.59994426929813]
- ]
- },
- {
- "id": 136,
- "bus": 3219,
- "phases": "abcn",
- "powers": [
- [1666.4457854209356, 168.1763154267534],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 177,
- "bus": 3219,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1605.3757687174464, 477.59132114453934]
- ]
- },
- {
- "id": 266,
- "bus": 3219,
- "phases": "abcn",
- "powers": [
- [1598.9576757552327, 498.65737732549644],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 118,
- "bus": 3221,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1635.461287751441, 361.3740514814481]
- ]
- },
- {
- "id": 141,
- "bus": 3221,
- "phases": "abcn",
- "powers": [
- [1664.9795326951921, 182.12079651653724],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 161,
- "bus": 3221,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1648.6860832890966, 295.22707800365555]
- ]
- },
- {
- "id": 147,
- "bus": 3535,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1620.447201029315, 423.64572167552564],
- [0.0, 0.0]
- ]
- },
- {
- "id": 180,
- "bus": 3535,
- "phases": "abcn",
- "powers": [
- [1647.5084976436135, 301.72931413735984],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 148,
- "bus": 3536,
- "phases": "abcn",
- "powers": [
- [1609.8337228690455, 462.3420957811514],
- [0.0, 0.0],
- [0.0, 0.0]
- ]
- },
- {
- "id": 253,
- "bus": 3536,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1640.7819694423779, 336.3916728614282]
- ]
- },
- {
- "id": 58,
- "bus": 3834,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1611.2179327277734, 457.4949202714263],
- [0.0, 0.0]
- ]
- },
- {
- "id": 133,
- "bus": 3834,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1639.947440935606, 340.4368073321034],
- [0.0, 0.0]
- ]
- },
- {
- "id": 225,
- "bus": 3834,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [1612.2914850899472, 453.6970309845221],
- [0.0, 0.0]
- ]
- },
- {
- "id": 241,
- "bus": 3834,
- "phases": "abcn",
- "powers": [
- [0.0, 0.0],
- [0.0, 0.0],
- [1611.502422137097, 456.4918096351652]
- ]
- }
- ],
- "sources": [
- {
- "id": 0,
- "bus": 0,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_CU_14",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.2857142857142856,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.2857142857142856,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.2857142857142856,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.2857142857142856
- ]
- ],
- [
- [
- 0.5249999999999999,
- 0.17499999999999993,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.5249999999999999,
- 0.17499999999999993,
- 0.1749999999999999
- ],
- [
- 0.17499999999999993,
- 0.17499999999999993,
- 0.5249999999999999,
- 0.1749999999999999
- ],
- [
- 0.1749999999999999,
- 0.1749999999999999,
- 0.1749999999999999,
- 0.5249999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06,
- -2.6179938779914946e-07
- ],
- [
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- -2.6179938779914946e-07,
- 1.3089969389957474e-06
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.2
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 7.84141526336012e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- 7.84141526336012e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- 7.84141526336012e-05,
- -1.96035381584003e-05
- ],
- [
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- -1.96035381584003e-05,
- 7.84141526336012e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00010284317710785252,
- -2.5710794276947463e-05,
- -2.5710794276947463e-05,
- -2.57107942769788e-05
- ],
- [
- -2.5710794276947463e-05,
- 0.00010284317710785252,
- -2.5710794276947463e-05,
- -2.57107942769788e-05
- ],
- [
- -2.5710794276947463e-05,
- -2.5710794276947463e-05,
- 0.00010284317710785252,
- -2.57107942769788e-05
- ],
- [
- -2.57107942769788e-05,
- -2.57107942769788e-05,
- -2.57107942769788e-05,
- 0.0001028431771079
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.31578947368421
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05,
- -1.587132608593564e-05
- ],
- [
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- -1.587132608593564e-05,
- 6.348530434374256e-05
- ]
- ]
- ]
- },
- {
- "id": "S_CU_25",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.7200000000000001,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.7200000000000001,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.7200000000000001,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.7200000000000001
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.4484951974831474e-05,
- -1.1121237993707868e-05,
- -1.1121237993707868e-05,
- -1.1121237993707868e-05
- ],
- [
- -1.1121237993707868e-05,
- 4.4484951974831474e-05,
- -1.1121237993707868e-05,
- -1.1121237993707868e-05
- ],
- [
- -1.1121237993707868e-05,
- -1.1121237993707868e-05,
- 4.4484951974831474e-05,
- -1.1121237993707868e-05
- ],
- [
- -1.1121237993707868e-05,
- -1.1121237993707868e-05,
- -1.1121237993707868e-05,
- 4.4484951974831474e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_150",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.2
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 6.283185307179584e-05,
- -1.570796326794896e-05,
- -1.570796326794896e-05,
- -1.570796326794896e-05
- ],
- [
- -1.570796326794896e-05,
- 6.283185307179584e-05,
- -1.570796326794896e-05,
- -1.570796326794896e-05
- ],
- [
- -1.570796326794896e-05,
- -1.570796326794896e-05,
- 6.283185307179584e-05,
- -1.570796326794896e-05
- ],
- [
- -1.570796326794896e-05,
- -1.570796326794896e-05,
- -1.570796326794896e-05,
- 6.283185307179584e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_25",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.2,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.2,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.2,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.2
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.7123889803846906e-05,
- -1.1780972450961726e-05,
- -1.1780972450961726e-05,
- -1.1780972450961725e-05
- ],
- [
- -1.1780972450961726e-05,
- 4.7123889803846906e-05,
- -1.1780972450961726e-05,
- -1.1780972450961725e-05
- ],
- [
- -1.1780972450961726e-05,
- -1.1780972450961726e-05,
- 4.7123889803846906e-05,
- -1.1780972450961725e-05
- ],
- [
- -1.1780972450961725e-05,
- -1.1780972450961725e-05,
- -1.1780972450961725e-05,
- 4.71238898038469e-05
- ]
- ]
- ]
- },
- {
- "id": "T_AL_70",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.42857142857142855,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.42857142857142855,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.42857142857142855,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4285714285714285
- ]
- ],
- [
- [
- 0.20000000000000004,
- 0.10000000000000002,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.20000000000000004,
- 0.10000000000000002,
- 0.1
- ],
- [
- 0.10000000000000002,
- 0.10000000000000002,
- 0.20000000000000004,
- 0.1
- ],
- [
- 0.1,
- 0.1,
- 0.1,
- 0.2
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.3194689145077129e-05,
- -1.319468914507713e-05
- ],
- [
- -1.3194689145077129e-05,
- -1.3194689145077129e-05,
- 5.2778756580308516e-05,
- -1.319468914507713e-05
- ],
- [
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- -1.319468914507713e-05,
- 5.277875658030852e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 54,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 0,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85846575091946, 45.70847617823726]
+ }
+ },
+ {
+ "id": 54,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85846575091946, 45.70847617823726]
+ }
+ },
+ {
+ "id": 141,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85870560116178, 45.70860760344203]
+ }
+ },
+ {
+ "id": 142,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85869801153841, 45.70900292606039]
+ }
+ },
+ {
+ "id": 186,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858653382246263, 45.70875532583823]
+ }
+ },
+ {
+ "id": 187,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858739171164092, 45.70880757501374]
+ }
+ },
+ {
+ "id": 414,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858691784300813, 45.70839008547719]
+ }
+ },
+ {
+ "id": 426,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859386124804403, 45.70806573046651]
+ }
+ },
+ {
+ "id": 427,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859704050364739, 45.70805047840309]
+ }
+ },
+ {
+ "id": 479,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858652333258119, 45.70837026980359]
+ }
+ },
+ {
+ "id": 511,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858763809394666, 45.70844787378506]
+ }
+ },
+ {
+ "id": 535,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858723373804454, 45.70941641027449]
+ }
+ },
+ {
+ "id": 540,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858651358015089, 45.70812455944064]
+ }
+ },
+ {
+ "id": 662,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859703873051338, 45.70810268927151]
+ }
+ },
+ {
+ "id": 665,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857131615330457, 45.70818392334662]
+ }
+ },
+ {
+ "id": 666,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857097901025856, 45.70823328729713]
+ }
+ },
+ {
+ "id": 680,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858614083339599, 45.70834862687379]
+ }
+ },
+ {
+ "id": 773,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858895913447741, 45.70974381024688]
+ }
+ },
+ {
+ "id": 853,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859810591784496, 45.70807812776008]
+ }
+ },
+ {
+ "id": 854,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859913312051285, 45.70807902143925]
+ }
+ },
+ {
+ "id": 855,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859951832358216, 45.70807936104072]
+ }
+ },
+ {
+ "id": 856,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859972615464178, 45.70807954158136]
+ }
+ },
+ {
+ "id": 878,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857275781799144, 45.70723556005225]
+ }
+ },
+ {
+ "id": 879,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857256151263146, 45.70711038978346]
+ }
+ },
+ {
+ "id": 880,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857262364210815, 45.70699351390524]
+ }
+ },
+ {
+ "id": 881,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857267515697749, 45.70689639246044]
+ }
+ },
+ {
+ "id": 882,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857267614293992, 45.70689461701293]
+ }
+ },
+ {
+ "id": 883,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857267759513011, 45.70689189539422]
+ }
+ },
+ {
+ "id": 1003,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858151406473321, 45.70725098354557]
+ }
+ },
+ {
+ "id": 1004,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85812572934119, 45.707250534644]
+ }
+ },
+ {
+ "id": 1005,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858114041508144, 45.70725032932825]
+ }
+ },
+ {
+ "id": 1006,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857597397234586, 45.70724123069877]
+ }
+ },
+ {
+ "id": 1007,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857535241965201, 45.70724013433262]
+ }
+ },
+ {
+ "id": 1058,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858881739788789, 45.70785294412009]
+ }
+ },
+ {
+ "id": 1059,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858882368754885, 45.70784395579707]
+ }
+ },
+ {
+ "id": 1060,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858897218734911, 45.70763017681548]
+ }
+ },
+ {
+ "id": 1061,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858902974214498, 45.707547425535]
+ }
+ },
+ {
+ "id": 1062,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858919214046995, 45.70731378569783]
+ }
+ },
+ {
+ "id": 1063,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858922785113299, 45.70726244366002]
+ }
+ },
+ {
+ "id": 1093,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858781571296007, 45.70726034441319]
+ }
+ },
+ {
+ "id": 1094,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858768727955327, 45.70726015614733]
+ }
+ },
+ {
+ "id": 1095,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858537648453671, 45.7072567198413]
+ }
+ },
+ {
+ "id": 1096,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858511961775738, 45.70725634325208]
+ }
+ },
+ {
+ "id": 1097,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858460613677841, 45.70725558048714]
+ }
+ },
+ {
+ "id": 1098,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858157821930228, 45.70725108235426]
+ }
+ },
+ {
+ "id": 1099,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858152499451649, 45.70725100398066]
+ }
+ },
+ {
+ "id": 1106,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859703269885658, 45.70811167702172]
+ }
+ },
+ {
+ "id": 1107,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859691230963773, 45.70829140447697]
+ }
+ },
+ {
+ "id": 1108,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859691101355493, 45.70829334264744]
+ }
+ },
+ {
+ "id": 1109,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859690024623929, 45.70830937997797]
+ }
+ },
+ {
+ "id": 1110,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859689421453726, 45.70831836772848]
+ }
+ },
+ {
+ "id": 1111,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859668770979119, 45.70862644778789]
+ }
+ },
+ {
+ "id": 1163,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858738932211071, 45.70911092029043]
+ }
+ },
+ {
+ "id": 1164,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858757916934997, 45.70943452705954]
+ }
+ },
+ {
+ "id": 1165,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858773792484836, 45.70970511476557]
+ }
+ },
+ {
+ "id": 1166,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858774062588907, 45.70970960928479]
+ }
+ },
+ {
+ "id": 1290,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858739171732017, 45.70881207559292]
+ }
+ },
+ {
+ "id": 1291,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858739150677472, 45.70883237373603]
+ }
+ },
+ {
+ "id": 1292,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85873914807851, 45.70883456108218]
+ }
+ },
+ {
+ "id": 1293,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858739125404754, 45.70886155614262]
+ }
+ },
+ {
+ "id": 1294,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85873905168792, 45.70895924765031]
+ }
+ },
+ {
+ "id": 1295,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85873893164317, 45.70910641971108]
+ }
+ },
+ {
+ "id": 1495,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858691729537287, 45.70820627355009]
+ }
+ },
+ {
+ "id": 1496,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858691694044068, 45.70807954669539]
+ }
+ },
+ {
+ "id": 1623,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857860255450155, 45.70813154291512]
+ }
+ },
+ {
+ "id": 1624,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85782192849138, 45.70813430365612]
+ }
+ },
+ {
+ "id": 1625,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857821121561098, 45.70813435779852]
+ }
+ },
+ {
+ "id": 1626,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857540908874141, 45.70815449967574]
+ }
+ },
+ {
+ "id": 1627,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857477034557761, 45.70815909463102]
+ }
+ },
+ {
+ "id": 1628,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857336518230978, 45.70816919244123]
+ }
+ },
+ {
+ "id": 1629,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857310970894318, 45.70817102672679]
+ }
+ },
+ {
+ "id": 1944,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85766416853888, 45.70721602985164]
+ }
+ },
+ {
+ "id": 1982,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858491381680595, 45.70847728520197]
+ }
+ },
+ {
+ "id": 2055,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857200315625728, 45.70822020250381]
+ }
+ },
+ {
+ "id": 2056,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857275018775843, 45.70846340082636]
+ }
+ },
+ {
+ "id": 2057,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857278744071173, 45.70875669252492]
+ }
+ },
+ {
+ "id": 2058,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857278792378547, 45.7087602739085]
+ }
+ },
+ {
+ "id": 2059,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857278808693088, 45.70876119166208]
+ }
+ },
+ {
+ "id": 2144,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857882752543429, 45.70823005021285]
+ }
+ },
+ {
+ "id": 2145,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857876335254144, 45.70823019445908]
+ }
+ },
+ {
+ "id": 2305,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858609965119976, 45.70825870764124]
+ }
+ },
+ {
+ "id": 2306,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858368880856789, 45.70826862857308]
+ }
+ },
+ {
+ "id": 2428,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858231152717311, 45.70810758836546]
+ }
+ },
+ {
+ "id": 2429,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858129245824944, 45.70811379479478]
+ }
+ },
+ {
+ "id": 2578,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859000718079856, 45.70806629701848]
+ }
+ },
+ {
+ "id": 2579,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859000143989006, 45.70798532627871]
+ }
+ },
+ {
+ "id": 2580,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858999648085297, 45.70791335496535]
+ }
+ },
+ {
+ "id": 2581,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858881598777165, 45.70785743888134]
+ }
+ },
+ {
+ "id": 2582,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858881674325446, 45.70785488084649]
+ }
+ },
+ {
+ "id": 2610,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858639795155034, 45.70854534569091]
+ }
+ },
+ {
+ "id": 2611,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858535320177401, 45.70859704818644]
+ }
+ },
+ {
+ "id": 2612,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858534241242276, 45.70859705444225]
+ }
+ },
+ {
+ "id": 2694,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858867184443032, 45.71016931222483]
+ }
+ },
+ {
+ "id": 2695,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858859064573131, 45.71015332867633]
+ }
+ },
+ {
+ "id": 2696,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858857002020719, 45.71014925251106]
+ }
+ },
+ {
+ "id": 2697,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858863334716782, 45.70975820661533]
+ }
+ },
+ {
+ "id": 2698,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858868334217182, 45.70975599692036]
+ }
+ },
+ {
+ "id": 2899,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.857975831490713, 45.70812391332192]
+ }
+ },
+ {
+ "id": 2921,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858763993714154, 45.70836690399566]
+ }
+ },
+ {
+ "id": 2922,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858994304107692, 45.70806651326404]
+ }
+ },
+ {
+ "id": 3066,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858511570902601, 45.70850236763883]
+ }
+ },
+ {
+ "id": 3067,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858515038657315, 45.70850262271592]
+ }
+ },
+ {
+ "id": 3218,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859793914502443, 45.70805175138868]
+ }
+ },
+ {
+ "id": 3219,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859806757619531, 45.708051930545]
+ }
+ },
+ {
+ "id": 3220,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859935139105061, 45.70805375915022]
+ }
+ },
+ {
+ "id": 3221,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85997402865019, 45.70805430646571]
+ }
+ },
+ {
+ "id": 3535,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858735739719023, 45.70957811755016]
+ }
+ },
+ {
+ "id": 3536,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.858742606561232, 45.70966801100467]
+ }
+ },
+ {
+ "id": 3834,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859116288759923, 45.70806612834648]
+ }
+ },
+ {
+ "id": 3835,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.859373111064799, 45.70806575312553]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 0,
+ "bus2": 54,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line1484",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 54,
+ "bus2": 1982,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85846575091946, 45.70847617823726],
+ [4.858484970678613, 45.70847700628548],
+ [4.858491381680595, 45.70847728520197]
+ ]
+ },
+ "length": 0.0005001805797426,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line205",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 54,
+ "bus2": 479,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85846575091946, 45.70847617823726],
+ [4.858471417041118, 45.70846327816842],
+ [4.858492511489998, 45.70841526865618],
+ [4.858652333258119, 45.70837026980359]
+ ]
+ },
+ "length": 0.0189957245757942,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line326",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 54,
+ "bus2": 680,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85846575091946, 45.70847617823726],
+ [4.858462801847775, 45.7084628417802],
+ [4.858447926655387, 45.70839556833542],
+ [4.858614083339599, 45.70834862687379]
+ ]
+ },
+ "length": 0.0215171544221145,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2076",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 54,
+ "bus2": 2610,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85846575091946, 45.70847617823726],
+ [4.858464659141226, 45.70848965055031],
+ [4.85846163967549, 45.70852667729195],
+ [4.858639622598972, 45.70854157807495],
+ [4.858639795155034, 45.70854534569091]
+ ]
+ },
+ "length": 0.0184990001621715,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line169",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1982,
+ "bus2": 414,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858491381680595, 45.70847728520197],
+ [4.858479104158953, 45.70846645377902],
+ [4.858514241119253, 45.70844088353304],
+ [4.858691784300813, 45.70839008547719]
+ ]
+ },
+ "length": 0.0188786040178695,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line223",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1982,
+ "bus2": 511,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858491381680595, 45.70847728520197],
+ [4.858484836774053, 45.70847436294846],
+ [4.858763809394666, 45.70844787378506]
+ ]
+ },
+ "length": 0.0219219562567218,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1485",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1982,
+ "bus2": 186,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858491381680595, 45.70847728520197],
+ [4.858741235721783, 45.70848798657143],
+ [4.858739614398045, 45.70873983113913],
+ [4.858653382246263, 45.70875532583823]
+ ]
+ },
+ "length": 0.0544160543418695,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2507",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1982,
+ "bus2": 3066,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858491381680595, 45.70847728520197],
+ [4.858480412869868, 45.70848493078657],
+ [4.858509340626727, 45.70850220175434],
+ [4.858511570902601, 45.70850236763883]
+ ]
+ },
+ "length": 0.0031341964682167,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2508",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3066,
+ "bus2": 3067,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858511570902601, 45.70850236763883],
+ [4.858515038657315, 45.70850262271592]
+ ]
+ },
+ "length": 0.0002715150308807,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2509",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3067,
+ "bus2": 141,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858515038657315, 45.70850262271592],
+ [4.858705291981614, 45.70851669844131],
+ [4.85870560116178, 45.70860760344203]
+ ]
+ },
+ "length": 0.0250009436901644,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2077",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2610,
+ "bus2": 2611,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858639795155034, 45.70854534569091],
+ [4.858642134753842, 45.70859642880821],
+ [4.858535320177401, 45.70859704818644]
+ ]
+ },
+ "length": 0.0139984096271449,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line240",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 479,
+ "bus2": 540,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858652333258119, 45.70837026980359],
+ [4.858651358015089, 45.70812455944064]
+ ]
+ },
+ "length": 0.0273097357634461,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1067",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 414,
+ "bus2": 1495,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858691784300813, 45.70839008547719],
+ [4.858691729537287, 45.70820627355009]
+ ]
+ },
+ "length": 0.0204298908896905,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1785",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 680,
+ "bus2": 2305,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858614083339599, 45.70834862687379],
+ [4.858609965119976, 45.70825870764124]
+ ]
+ },
+ "length": 0.0099992723625301,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2378",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 511,
+ "bus2": 2921,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858763809394666, 45.70844787378506],
+ [4.858763993714154, 45.70836690399566]
+ ]
+ },
+ "length": 0.0089994489936721,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line26",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 141,
+ "bus2": 142,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85870560116178, 45.70860760344203],
+ [4.85869801153841, 45.70900292606039]
+ ]
+ },
+ "length": 0.0439423554981783,
+ "params_id": "S_CU_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line2379",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2921,
+ "bus2": 2922,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858763993714154, 45.70836690399566],
+ [4.858764686176953, 45.70807430496647],
+ [4.858994304107692, 45.70806651326404]
+ ]
+ },
+ "length": 0.050422376736405,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1786",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2305,
+ "bus2": 2306,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858609965119976, 45.70825870764124],
+ [4.858609594480862, 45.70825061491045],
+ [4.858368880856789, 45.70826862857308]
+ ]
+ },
+ "length": 0.0197507861351198,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2078",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2611,
+ "bus2": 2612,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858535320177401, 45.70859704818644],
+ [4.858534241242276, 45.70859705444225]
+ ]
+ },
+ "length": 8.401840908629157e-5,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1068",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1495,
+ "bus2": 1496,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858691729537287, 45.70820627355009],
+ [4.858691694044068, 45.70807954669539]
+ ]
+ },
+ "length": 0.014085134613226,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1904",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1496,
+ "bus2": 2428,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858691694044068, 45.70807954669539],
+ [4.858231152717311, 45.70810758836546]
+ ]
+ },
+ "length": 0.0359973644170521,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line49",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 186,
+ "bus2": 187,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858653382246263, 45.70875532583823],
+ [4.858736830996066, 45.70877555641476],
+ [4.858739171164092, 45.70880757501374]
+ ]
+ },
+ "length": 0.0104394739583985,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line383",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 186,
+ "bus2": 773,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858653382246263, 45.70875532583823],
+ [4.858777291977871, 45.70875317881072],
+ [4.858792773914155, 45.70919133238354],
+ [4.858806761666566, 45.70958732202981],
+ [4.858856354113938, 45.7096203934093],
+ [4.858891454451695, 45.70964646367737],
+ [4.858895913447741, 45.70974381024688]
+ ]
+ },
+ "length": 0.1225312422779096,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line887",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 187,
+ "bus2": 1290,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858739171164092, 45.70880757501374],
+ [4.858739171732017, 45.70881207559292]
+ ]
+ },
+ "length": 0.0005002197054336,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line888",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1290,
+ "bus2": 1291,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858739171732017, 45.70881207559292],
+ [4.858739150677472, 45.70883237373603]
+ ]
+ },
+ "length": 0.0022560504862093,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line889",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1291,
+ "bus2": 1292,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858739150677472, 45.70883237373603],
+ [4.85873914807851, 45.70883456108218]
+ ]
+ },
+ "length": 0.000243114049454,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line890",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1292,
+ "bus2": 1293,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85873914807851, 45.70883456108218],
+ [4.858739125404754, 45.70886155614262]
+ ]
+ },
+ "length": 0.0030003835161266,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line891",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1293,
+ "bus2": 1294,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858739125404754, 45.70886155614262],
+ [4.85873905168792, 45.70895924765031]
+ ]
+ },
+ "length": 0.0108579857937378,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line237",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 142,
+ "bus2": 535,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85869801153841, 45.70900292606039],
+ [4.858723373804454, 45.70941641027449]
+ ]
+ },
+ "length": 0.045999380754809,
+ "params_id": "S_CU_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line2380",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2922,
+ "bus2": 2578,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858994304107692, 45.70806651326404],
+ [4.859000718079856, 45.70806629701848]
+ ]
+ },
+ "length": 0.0005000318906638,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line892",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1294,
+ "bus2": 1295,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85873905168792, 45.70895924765031],
+ [4.85873893164317, 45.70910641971108]
+ ]
+ },
+ "length": 0.0163575345977811,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line2046",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2578,
+ "bus2": 2579,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859000718079856, 45.70806629701848],
+ [4.859000143989006, 45.70798532627871]
+ ]
+ },
+ "length": 0.0089996536049888,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line3260",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2578,
+ "bus2": 3834,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859000718079856, 45.70806629701848],
+ [4.859116288759923, 45.70806612834648]
+ ]
+ },
+ "length": 0.0089994707921524,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1905",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2428,
+ "bus2": 2429,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858231152717311, 45.70810758836546],
+ [4.858129245824944, 45.70811379479478]
+ ]
+ },
+ "length": 0.0079653762628655,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line3261",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3834,
+ "bus2": 3835,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859116288759923, 45.70806612834648],
+ [4.859373111064799, 45.70806575312553]
+ ]
+ },
+ "length": 0.0199987129260412,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2047",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2579,
+ "bus2": 2580,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859000143989006, 45.70798532627871],
+ [4.858999648085297, 45.70791335496535]
+ ]
+ },
+ "length": 0.0079993889005269,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2358",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2429,
+ "bus2": 2899,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858129245824944, 45.70811379479478],
+ [4.857975831490713, 45.70812391332192]
+ ]
+ },
+ "length": 0.0119991328428249,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line893",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1295,
+ "bus2": 1163,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85873893164317, 45.70910641971108],
+ [4.858738932211071, 45.70911092029043]
+ ]
+ },
+ "length": 0.0005002197530754,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line751",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1163,
+ "bus2": 1164,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858738932211071, 45.70911092029043],
+ [4.858757916934997, 45.70943452705954]
+ ]
+ },
+ "length": 0.0359978479701025,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line2048",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2580,
+ "bus2": 2581,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858999648085297, 45.70791335496535],
+ [4.858999556689571, 45.70790070135651],
+ [4.858880154686606, 45.70790248627098],
+ [4.858881598777165, 45.70785743888134]
+ ]
+ },
+ "length": 0.015714432025861,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2359",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2899,
+ "bus2": 1623,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857975831490713, 45.70812391332192],
+ [4.857860255450155, 45.70813154291512]
+ ]
+ },
+ "length": 0.0090397209912012,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line3262",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3835,
+ "bus2": 426,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859373111064799, 45.70806575312553],
+ [4.859386124804403, 45.70806573046651]
+ ]
+ },
+ "length": 0.0010133788079987,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line176",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 426,
+ "bus2": 427,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859386124804403, 45.70806573046651],
+ [4.859704050364739, 45.70805047840309]
+ ]
+ },
+ "length": 0.024814734423431,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2049",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2581,
+ "bus2": 2582,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858881598777165, 45.70785743888134],
+ [4.858881674325446, 45.70785488084649]
+ ]
+ },
+ "length": 0.0002843752030909,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2050",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2582,
+ "bus2": 1058,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858881674325446, 45.70785488084649],
+ [4.858881739788789, 45.70785294412009]
+ ]
+ },
+ "length": 0.0002153189890175,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line640",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1058,
+ "bus2": 1059,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858881739788789, 45.70785294412009],
+ [4.858882368754885, 45.70784395579707]
+ ]
+ },
+ "length": 0.0010002125153599,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line641",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1059,
+ "bus2": 1060,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858882368754885, 45.70784395579707],
+ [4.858897218734911, 45.70763017681548]
+ ]
+ },
+ "length": 0.0237887171241015,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line2967",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 535,
+ "bus2": 3535,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858723373804454, 45.70941641027449],
+ [4.858735739719023, 45.70957811755016]
+ ]
+ },
+ "length": 0.0179988343639828,
+ "params_id": "S_CU_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line1179",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1623,
+ "bus2": 1624,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857860255450155, 45.70813154291512],
+ [4.85782192849138, 45.70813430365612]
+ ]
+ },
+ "length": 0.0030002365069316,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1635",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1623,
+ "bus2": 2144,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857860255450155, 45.70813154291512],
+ [4.857913824052103, 45.70815104152228],
+ [4.857917405904961, 45.70822927127691],
+ [4.857882752543429, 45.70823005021285]
+ ]
+ },
+ "length": 0.0160999345263066,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1180",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1624,
+ "bus2": 1625,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85782192849138, 45.70813430365612],
+ [4.857821121561098, 45.70813435779852]
+ ]
+ },
+ "length": 6.312281936731819e-5,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1181",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1625,
+ "bus2": 1626,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857821121561098, 45.70813435779852],
+ [4.857540908874141, 45.70815449967574]
+ ]
+ },
+ "length": 0.0219345812676839,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1636",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2144,
+ "bus2": 2145,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857882752543429, 45.70823005021285],
+ [4.857876335254144, 45.70823019445908]
+ ]
+ },
+ "length": 0.0004999678872504,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line752",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1164,
+ "bus2": 1165,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858757916934997, 45.70943452705954],
+ [4.858773792484836, 45.70970511476557]
+ ]
+ },
+ "length": 0.0301000403657492,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line2968",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3535,
+ "bus2": 3536,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858735739719023, 45.70957811755016],
+ [4.858742606561232, 45.70966801100467]
+ ]
+ },
+ "length": 0.0100055636677337,
+ "params_id": "S_CU_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line315",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 427,
+ "bus2": 662,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859704050364739, 45.70805047840309],
+ [4.859703873051338, 45.70810268927151]
+ ]
+ },
+ "length": 0.0058030254958827,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2653",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 427,
+ "bus2": 3218,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859704050364739, 45.70805047840309],
+ [4.859793914502443, 45.70805175138868]
+ ]
+ },
+ "length": 0.0069991232756766,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line642",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1060,
+ "bus2": 1061,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858897218734911, 45.70763017681548],
+ [4.858902974214498, 45.707547425535]
+ ]
+ },
+ "length": 0.0092083543694753,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line446",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 662,
+ "bus2": 853,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859703873051338, 45.70810268927151],
+ [4.859770824881562, 45.70807778014717],
+ [4.859810591784496, 45.70807812776008]
+ ]
+ },
+ "length": 0.0089998882895087,
+ "params_id": "T_AL_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line691",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 662,
+ "bus2": 1106,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859703873051338, 45.70810268927151],
+ [4.859703269885658, 45.70811167702172]
+ ]
+ },
+ "length": 0.001000052589444,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line1182",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1626,
+ "bus2": 1627,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857540908874141, 45.70815449967574],
+ [4.857477034557761, 45.70815909463102]
+ ]
+ },
+ "length": 0.0050000148965564,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line692",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1106,
+ "bus2": 1107,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859703269885658, 45.70811167702172],
+ [4.859691230963773, 45.70829140447697]
+ ]
+ },
+ "length": 0.0199979043405383,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line2654",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3218,
+ "bus2": 3219,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859793914502443, 45.70805175138868],
+ [4.859806757619531, 45.708051930545]
+ ]
+ },
+ "length": 0.0010002878216915,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2655",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3219,
+ "bus2": 3220,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859806757619531, 45.708051930545],
+ [4.859935139105061, 45.70805375915022]
+ ]
+ },
+ "length": 0.0099990926583539,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1183",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1627,
+ "bus2": 1628,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857477034557761, 45.70815909463102],
+ [4.857336518230978, 45.70816919244123]
+ ]
+ },
+ "length": 0.0109993501457698,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line643",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1061,
+ "bus2": 1062,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858902974214498, 45.707547425535],
+ [4.858919214046995, 45.70731378569783]
+ ]
+ },
+ "length": 0.0259988143444644,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line447",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 853,
+ "bus2": 854,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859810591784496, 45.70807812776008],
+ [4.859913312051285, 45.70807902143925]
+ ]
+ },
+ "length": 0.0079994087043107,
+ "params_id": "T_AL_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line2656",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3220,
+ "bus2": 3221,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859935139105061, 45.70805375915022],
+ [4.85997402865019, 45.70805430646571]
+ ]
+ },
+ "length": 0.0030289278084544,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1184",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1628,
+ "bus2": 1629,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857336518230978, 45.70816919244123],
+ [4.857310970894318, 45.70817102672679]
+ ]
+ },
+ "length": 0.0019997784351482,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line448",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 854,
+ "bus2": 855,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859913312051285, 45.70807902143925],
+ [4.859951832358216, 45.70807936104072]
+ ]
+ },
+ "length": 0.0029998005526106,
+ "params_id": "T_AL_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line1185",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1629,
+ "bus2": 665,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857310970894318, 45.70817102672679],
+ [4.857131615330457, 45.70818392334662]
+ ]
+ },
+ "length": 0.0140396960419226,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line449",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 855,
+ "bus2": 856,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859951832358216, 45.70807936104072],
+ [4.859972615464178, 45.70807954158136]
+ ]
+ },
+ "length": 0.0016184977160301,
+ "params_id": "T_AL_25",
+ "ground": "ground"
+ },
+ {
+ "id": "line693",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1107,
+ "bus2": 1108,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859691230963773, 45.70829140447697],
+ [4.859691101355493, 45.70829334264744]
+ ]
+ },
+ "length": 0.0002156554459493,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line694",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1108,
+ "bus2": 1109,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859691101355493, 45.70829334264744],
+ [4.859690024623929, 45.70830937997797]
+ ]
+ },
+ "length": 0.0017844498815044,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line753",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1165,
+ "bus2": 1166,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858773792484836, 45.70970511476557],
+ [4.858774062588907, 45.70970960928479]
+ ]
+ },
+ "length": 0.0004999888077918,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line695",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1109,
+ "bus2": 1110,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859690024623929, 45.70830937997797],
+ [4.859689421453726, 45.70831836772848]
+ ]
+ },
+ "length": 0.0010000526676574,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line696",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1110,
+ "bus2": 1111,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.859689421453726, 45.70831836772848],
+ [4.859668770979119, 45.70862644778789]
+ ]
+ },
+ "length": 0.0342794868178623,
+ "params_id": "A_CU_14",
+ "ground": "ground"
+ },
+ {
+ "id": "line644",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1062,
+ "bus2": 1063,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858919214046995, 45.70731378569783],
+ [4.858922785113299, 45.70726244366002]
+ ]
+ },
+ "length": 0.0057132131731552,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line317",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 665,
+ "bus2": 666,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857131615330457, 45.70818392334662],
+ [4.857097901025856, 45.70823328729713]
+ ]
+ },
+ "length": 0.0060823444883348,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2159",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2698,
+ "bus2": 2697,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858863334716782, 45.70975820661533],
+ [4.858868334217182, 45.70975599692036]
+ ]
+ },
+ "length": 0.0004602945698527,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2158",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2697,
+ "bus2": 2696,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858857002020719, 45.71014925251106],
+ [4.858834575884895, 45.71010508389108],
+ [4.858812307407221, 45.70978076782136],
+ [4.858863334716782, 45.70975820661533]
+ ]
+ },
+ "length": 0.0459969488636987,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2157",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2696,
+ "bus2": 2695,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858859064573131, 45.71015332867633],
+ [4.858857002020719, 45.71014925251106]
+ ]
+ },
+ "length": 0.0004806727477676,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line678",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1063,
+ "bus2": 1093,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858922785113299, 45.70726244366002],
+ [4.858781571296007, 45.70726034441319]
+ ]
+ },
+ "length": 0.0109989068607356,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1551",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 666,
+ "bus2": 2055,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857097901025856, 45.70823328729713],
+ [4.857129156762444, 45.70824248624743],
+ [4.857165471572625, 45.70822186761867],
+ [4.857200315625728, 45.70822020250381]
+ ]
+ },
+ "length": 0.0089993081940269,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1552",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2055,
+ "bus2": 2056,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857200315625728, 45.70822020250381],
+ [4.857271875104469, 45.70821677618032],
+ [4.857275018775843, 45.70846340082636]
+ ]
+ },
+ "length": 0.0329976382636671,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line679",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1093,
+ "bus2": 1094,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858781571296007, 45.70726034441319],
+ [4.858768727955327, 45.70726015614733]
+ ]
+ },
+ "length": 0.0010003400099169,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line680",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1094,
+ "bus2": 1095,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858768727955327, 45.70726015614733],
+ [4.858537648453671, 45.7072567198413]
+ ]
+ },
+ "length": 0.017998397595807,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line681",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1095,
+ "bus2": 1096,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858537648453671, 45.7072567198413],
+ [4.858511961775738, 45.70725634325208]
+ ]
+ },
+ "length": 0.0020006800193537,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line682",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1096,
+ "bus2": 1097,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858511961775738, 45.70725634325208],
+ [4.858460613677841, 45.70725558048714]
+ ]
+ },
+ "length": 0.003999416095814,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line683",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1097,
+ "bus2": 1098,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858460613677841, 45.70725558048714],
+ [4.858157821930228, 45.70725108235426]
+ ]
+ },
+ "length": 0.0235839363651171,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1553",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2056,
+ "bus2": 2057,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857275018775843, 45.70846340082636],
+ [4.857278744071173, 45.70875669252492]
+ ]
+ },
+ "length": 0.0325993798943446,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2156",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2695,
+ "bus2": 2694,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858867184443032, 45.71016931222483],
+ [4.858859064573131, 45.71015332867633]
+ ]
+ },
+ "length": 0.0018856622450659,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line2160",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 773,
+ "bus2": 2698,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858868334217182, 45.70975599692036],
+ [4.858895913447741, 45.70974381024688]
+ ]
+ },
+ "length": 0.0025389970649123,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line684",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1098,
+ "bus2": 1099,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858157821930228, 45.70725108235426],
+ [4.858152499451649, 45.70725100398066]
+ ]
+ },
+ "length": 0.0004145572289478,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line685",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1099,
+ "bus2": 1003,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858152499451649, 45.70725100398066],
+ [4.858151406473321, 45.70725098354557]
+ ]
+ },
+ "length": 8.514140420113163e-5,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line584",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1003,
+ "bus2": 1004,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858151406473321, 45.70725098354557],
+ [4.85812572934119, 45.707250534644]
+ ]
+ },
+ "length": 0.0020001213984857,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line585",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1004,
+ "bus2": 1005,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85812572934119, 45.707250534644],
+ [4.858114041508144, 45.70725032932825]
+ ]
+ },
+ "length": 0.0009104270337889,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line586",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1005,
+ "bus2": 1006,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.858114041508144, 45.70725032932825],
+ [4.857597397234586, 45.70724123069877]
+ ]
+ },
+ "length": 0.0402442179264523,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line1554",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2057,
+ "bus2": 2058,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857278744071173, 45.70875669252492],
+ [4.857278792378547, 45.7087602739085]
+ ]
+ },
+ "length": 0.0003980729009457,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1555",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2058,
+ "bus2": 2059,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857278792378547, 45.7087602739085],
+ [4.857278808693088, 45.70876119166208]
+ ]
+ },
+ "length": 0.0001020122088556,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line588",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1007,
+ "bus2": 878,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857535241965201, 45.70724013433262],
+ [4.857275781799144, 45.70723556005225]
+ ]
+ },
+ "length": 0.0202107728374538,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line587",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1006,
+ "bus2": 1007,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857597397234586, 45.70724123069877],
+ [4.857535241965201, 45.70724013433262]
+ ]
+ },
+ "length": 0.0048416155701097,
+ "params_id": "T_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line468",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 878,
+ "bus2": 879,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857275781799144, 45.70723556005225],
+ [4.857256025201153, 45.70711268791645],
+ [4.857256151263146, 45.70711038978346]
+ ]
+ },
+ "length": 0.0139986957482644,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line469",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 879,
+ "bus2": 880,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857256151263146, 45.70711038978346],
+ [4.857262364210815, 45.70699351390524]
+ ]
+ },
+ "length": 0.0129992453778308,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line470",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 880,
+ "bus2": 881,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857262364210815, 45.70699351390524],
+ [4.857267515697749, 45.70689639246044]
+ ]
+ },
+ "length": 0.0108020718458042,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line471",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 881,
+ "bus2": 882,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857267515697749, 45.70689639246044],
+ [4.857267614293992, 45.70689461701293]
+ ]
+ },
+ "length": 0.0001974824702347,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line472",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 882,
+ "bus2": 883,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857267614293992, 45.70689461701293],
+ [4.857267759513011, 45.70689189539422]
+ ]
+ },
+ "length": 0.0003027072235622,
+ "params_id": "T_AL_70",
+ "ground": "ground"
+ },
+ {
+ "id": "line1455",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1944,
+ "bus2": 1006,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.857597397234586, 45.70724123069877],
+ [4.857598359433462, 45.70721425954639],
+ [4.85766416853888, 45.70721602985164]
+ ]
+ },
+ "length": 0.005128387383998,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 10,
+ "bus": 141,
+ "phases": "abcn",
+ "powers": [
+ [1649.6309210175623, 289.90110941572357],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 92,
+ "bus": 141,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1613.3744424881445, 449.83078723425234],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 187,
+ "bus": 141,
+ "phases": "abcn",
+ "powers": [
+ [1656.3540960721095, 248.6281103231552],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 210,
+ "bus": 141,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1616.172346317852, 439.67235052385007],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 131,
+ "bus": 142,
+ "phases": "abcn",
+ "powers": [
+ [1597.466210719081, 503.4148730704519],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 209,
+ "bus": 186,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1623.0200815085877, 413.6793974052557]
+ ]
+ },
+ {
+ "id": 231,
+ "bus": 186,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1603.9262132948445, 482.43707478113595]
+ ]
+ },
+ {
+ "id": 142,
+ "bus": 187,
+ "phases": "abcn",
+ "powers": [
+ [1652.8488490414247, 270.95296831766905],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 230,
+ "bus": 187,
+ "phases": "abcn",
+ "powers": [
+ [1607.860438506812, 469.1584371003045],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 414,
+ "phases": "abcn",
+ "powers": [
+ [1599.0114311088391, 498.4849767053975],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 414,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1624.7606281318162, 406.7895402913211],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 73,
+ "bus": 414,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1597.098860143901, 504.57909166430034],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 146,
+ "bus": 414,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1609.792701829586, 462.48490348758475],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 426,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1629.6396498692925, 386.7808686990708]
+ ]
+ },
+ {
+ "id": 105,
+ "bus": 426,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1598.0306174530028, 501.6203489697093]
+ ]
+ },
+ {
+ "id": 182,
+ "bus": 426,
+ "phases": "abcn",
+ "powers": [
+ [1673.565108144437, 67.11674619062352],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 99,
+ "bus": 427,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1631.0937767105743, 380.6020499074502]
+ ]
+ },
+ {
+ "id": 97,
+ "bus": 479,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1652.7795669620286, 271.37526020351805]
+ ]
+ },
+ {
+ "id": 98,
+ "bus": 479,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1617.427872330716, 435.0309260563573]
+ ]
+ },
+ {
+ "id": 207,
+ "bus": 479,
+ "phases": "abcn",
+ "powers": [
+ [1660.9157783929766, 216.06389310333773],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [1646.5427148327403, 306.9558877900004],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [1667.635933840843, 155.93338635615305],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 61,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1655.3000768485942, 255.55133418308813]
+ ]
+ },
+ {
+ "id": 102,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1596.856292375536, 505.346228162806]
+ ]
+ },
+ {
+ "id": 115,
+ "bus": 511,
+ "phases": "abcn",
+ "powers": [
+ [1622.1111126465375, 417.22939379474434],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 86,
+ "bus": 535,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1658.833117376904, 231.51137663480102],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 113,
+ "bus": 535,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1609.0155932118976, 465.181308329004]
+ ]
+ },
+ {
+ "id": 60,
+ "bus": 540,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1631.86439847811, 377.28426126383084]
+ ]
+ },
+ {
+ "id": 178,
+ "bus": 540,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1634.3316710095662, 366.44892952879115],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 203,
+ "bus": 540,
+ "phases": "abcn",
+ "powers": [
+ [1603.7962663959704, 482.86888977450593],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 220,
+ "bus": 540,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1627.0592737029801, 397.49584736805645]
+ ]
+ },
+ {
+ "id": 226,
+ "bus": 540,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1592.7881379997257, 518.0258451709577],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 40,
+ "bus": 662,
+ "phases": "abcn",
+ "powers": [
+ [1663.278385248608, 197.0528913325079],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 255,
+ "bus": 662,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1664.9975362517018, 181.95612958480237],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 278,
+ "bus": 665,
+ "phases": "abcn",
+ "powers": [
+ [1615.9741885813264, 440.4001029253305],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 52,
+ "bus": 666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1616.158288717553, 439.72402098051083]
+ ]
+ },
+ {
+ "id": 83,
+ "bus": 666,
+ "phases": "abcn",
+ "powers": [
+ [1607.2096847153755, 471.38292096216423],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 122,
+ "bus": 666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1637.4948758755331, 352.04454306108863]
+ ]
+ },
+ {
+ "id": 138,
+ "bus": 666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1656.4961146642518, 247.6801383235168],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 237,
+ "bus": 666,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1593.315327640675, 516.4020676982298]
+ ]
+ },
+ {
+ "id": 46,
+ "bus": 680,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1665.261943144325, 179.52016469718814]
+ ]
+ },
+ {
+ "id": 57,
+ "bus": 680,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1664.7538948936872, 184.1719258030843],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 154,
+ "bus": 680,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1606.1191291213963, 475.0854364091214],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 773,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1597.7640380935597, 502.4688123582196],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 191,
+ "bus": 773,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1602.331427244946, 487.70772608283755],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 62,
+ "bus": 853,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1630.9676443164044, 381.1421939522266]
+ ]
+ },
+ {
+ "id": 232,
+ "bus": 853,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1647.2290534213055, 303.2511737528281],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 854,
+ "phases": "abcn",
+ "powers": [
+ [1653.5543640378867, 266.61356677592045],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 121,
+ "bus": 854,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1600.8315085460297, 492.608678429401],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 134,
+ "bus": 855,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1601.8378657993806, 489.3263537854917],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 41,
+ "bus": 856,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1604.5626504309857, 480.31607266424925]
+ ]
+ },
+ {
+ "id": 54,
+ "bus": 856,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1655.0217377912397, 257.3477729769253],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 96,
+ "bus": 856,
+ "phases": "abcn",
+ "powers": [
+ [1616.0128256010053, 440.2583063506845],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 878,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1620.9172039814193, 421.8438652567747],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 49,
+ "bus": 878,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1591.4366552355445, 522.1630025101559],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 116,
+ "bus": 878,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1660.9872790865918, 215.51354372808868],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 250,
+ "bus": 880,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1634.8588270330379, 364.0898851793023]
+ ]
+ },
+ {
+ "id": 85,
+ "bus": 881,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1629.9079025741526, 385.6488790908703],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 78,
+ "bus": 882,
+ "phases": "abcn",
+ "powers": [
+ [1599.2823959657937, 497.61495834794636],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 240,
+ "bus": 883,
+ "phases": "abcn",
+ "powers": [
+ [1640.750417663451, 336.54553295940525],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 137,
+ "bus": 1003,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1612.0618722471097, 454.51220980834097]
+ ]
+ },
+ {
+ "id": 173,
+ "bus": 1003,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1656.9686559283643, 244.49887952436086],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 75,
+ "bus": 1004,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1602.2453990876709, 487.9902764606162]
+ ]
+ },
+ {
+ "id": 205,
+ "bus": 1004,
+ "phases": "abcn",
+ "powers": [
+ [1625.908202106315, 402.1782529440506],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 259,
+ "bus": 1004,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1657.9797599185965, 237.5456682787351],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1618.32210067962, 431.6924915603932]
+ ]
+ },
+ {
+ "id": 39,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [1633.835418823479, 368.65519529178727],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 69,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [1619.4780256615602, 427.33564468348874],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 71,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [1597.110227435846, 504.54311038556307],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 181,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [1603.5051087020518, 483.83488421582325],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 188,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [1658.5054723637472, 233.84701613923147],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 213,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1609.5404533796768, 463.36201587102755],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 267,
+ "bus": 1005,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1649.0989494031269, 292.91207536600695],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 1006,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1641.581245893379, 332.46930978491736]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 1006,
+ "phases": "abcn",
+ "powers": [
+ [1622.9987428245165, 413.7631080796804],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 59,
+ "bus": 1007,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1670.4676479906368, 121.91253354084823]
+ ]
+ },
+ {
+ "id": 74,
+ "bus": 1007,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1647.1887662720164, 303.4699278099737],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 103,
+ "bus": 1007,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1601.2048413436364, 491.3938185156775],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 140,
+ "bus": 1007,
+ "phases": "abcn",
+ "powers": [
+ [1672.9177561269962, 81.67625146108232],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 200,
+ "bus": 1007,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1628.0022334825608, 393.6160014449516],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 1058,
+ "phases": "abcn",
+ "powers": [
+ [1629.8770962362053, 385.7790559145918],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 186,
+ "bus": 1058,
+ "phases": "abcn",
+ "powers": [
+ [1646.1067936545764, 309.2850670529829],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 256,
+ "bus": 1058,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1638.8872292039748, 345.5046725730875],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 126,
+ "bus": 1059,
+ "phases": "abcn",
+ "powers": [
+ [1598.8944576993117, 498.860042452933],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 234,
+ "bus": 1059,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1605.2164635655508, 478.12648317764706],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 114,
+ "bus": 1060,
+ "phases": "abcn",
+ "powers": [
+ [1669.3211661893297, 136.71749313827573],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 129,
+ "bus": 1060,
+ "phases": "abcn",
+ "powers": [
+ [1653.2396421991018, 268.5582139483058],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 155,
+ "bus": 1060,
+ "phases": "abcn",
+ "powers": [
+ [1600.2431022067087, 494.51677692224706],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 1061,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1648.795355407865, 294.6161991526779]
+ ]
+ },
+ {
+ "id": 123,
+ "bus": 1061,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1641.8166627546996, 331.3048063622674],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 1062,
+ "phases": "abcn",
+ "powers": [
+ [1609.8577738238253, 462.25834430188064],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 150,
+ "bus": 1062,
+ "phases": "abcn",
+ "powers": [
+ [1672.1375050755914, 96.33791017712122],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 151,
+ "bus": 1062,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1644.8860961382336, 315.71278014809536],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 199,
+ "bus": 1062,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1631.747703598017, 377.7886454359314]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 1093,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1642.9631326666329, 325.571764002903]
+ ]
+ },
+ {
+ "id": 168,
+ "bus": 1093,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1601.8246574373372, 489.36959002728764]
+ ]
+ },
+ {
+ "id": 110,
+ "bus": 1094,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1617.6432981752396, 434.22918912303794],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 166,
+ "bus": 1094,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1617.0660793279756, 436.3738350366206]
+ ]
+ },
+ {
+ "id": 135,
+ "bus": 1095,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1666.4505465393213, 168.1291311953869],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 238,
+ "bus": 1095,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1647.8896751156265, 299.64053041107945]
+ ]
+ },
+ {
+ "id": 268,
+ "bus": 1095,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1639.8675492877805, 340.82143361386056]
+ ]
+ },
+ {
+ "id": 272,
+ "bus": 1095,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1610.4714026341921, 460.1159529022831],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 107,
+ "bus": 1096,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1608.2706673639102, 467.7502424527016],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 157,
+ "bus": 1096,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1641.9321500268745, 330.73198140766993],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 223,
+ "bus": 1097,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1654.914452060731, 258.0367903579807],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 254,
+ "bus": 1097,
+ "phases": "abcn",
+ "powers": [
+ [1660.7348754708923, 217.449999338694],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 128,
+ "bus": 1098,
+ "phases": "abcn",
+ "powers": [
+ [1644.5202654503466, 317.6128544955946],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 143,
+ "bus": 1098,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1658.3484731945027, 234.9578052995472],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 202,
+ "bus": 1098,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1665.9518707818845, 173.00055796458477],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 206,
+ "bus": 1098,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1630.1839474831527, 384.48033263869763]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 1099,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1604.1855860684668, 481.5739136081686],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 48,
+ "bus": 1099,
+ "phases": "abcn",
+ "powers": [
+ [1615.744195361459, 441.2431574239642],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 215,
+ "bus": 1099,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1648.0399646727146, 298.81282378652253]
+ ]
+ },
+ {
+ "id": 260,
+ "bus": 1099,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1664.887728770792, 182.95813566538203],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 1106,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1613.3173120524814, 450.03564242121354]
+ ]
+ },
+ {
+ "id": 228,
+ "bus": 1106,
+ "phases": "abcn",
+ "powers": [
+ [1645.6115295296893, 311.90947836940535],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 271,
+ "bus": 1107,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1629.1640074070413, 388.77945648805644]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 1108,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1607.2681824779456, 471.1834233202177]
+ ]
+ },
+ {
+ "id": 163,
+ "bus": 1108,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1597.0248677310617, 504.81323345005836],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 248,
+ "bus": 1108,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1665.8302875301836, 174.1673963887154]
+ ]
+ },
+ {
+ "id": 279,
+ "bus": 1108,
+ "phases": "abcn",
+ "powers": [
+ [1616.4784308668634, 438.5456776208398],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 1110,
+ "phases": "abcn",
+ "powers": [
+ [1621.2277893370012, 420.64864661517436],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 222,
+ "bus": 1110,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1608.8904750559184, 465.61386157637037],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 224,
+ "bus": 1110,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1654.1423280550448, 262.9410339873837],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 239,
+ "bus": 1110,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1670.0088191215686, 128.04441758195404],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 43,
+ "bus": 1111,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1641.0678606761926, 334.99418722327493],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 204,
+ "bus": 1111,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1603.9616310163979, 482.31930818176306]
+ ]
+ },
+ {
+ "id": 208,
+ "bus": 1111,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1670.3933312359595, 122.92659508890925]
+ ]
+ },
+ {
+ "id": 211,
+ "bus": 1111,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1636.2384357068568, 357.83880495733865],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 109,
+ "bus": 1163,
+ "phases": "abcn",
+ "powers": [
+ [1647.4159213600706, 302.2343641399299],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 82,
+ "bus": 1164,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1619.5799475808362, 426.9492033155392]
+ ]
+ },
+ {
+ "id": 91,
+ "bus": 1164,
+ "phases": "abcn",
+ "powers": [
+ [1604.9524958478376, 479.01181080377887],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 152,
+ "bus": 1164,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1673.3317650228937, 72.70235885502635]
+ ]
+ },
+ {
+ "id": 216,
+ "bus": 1164,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1604.9866313425448, 478.89742328543446]
+ ]
+ },
+ {
+ "id": 139,
+ "bus": 1165,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1653.930266610641, 264.27164434909093]
+ ]
+ },
+ {
+ "id": 167,
+ "bus": 1165,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1624.864104098938, 406.3760229497721],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 169,
+ "bus": 1166,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1669.916118876741, 129.24776490663368]
+ ]
+ },
+ {
+ "id": 247,
+ "bus": 1166,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1600.0032821240038, 495.29216227408034],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 38,
+ "bus": 1290,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1624.612877428693, 407.3792180641775]
+ ]
+ },
+ {
+ "id": 127,
+ "bus": 1290,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1594.8569433313073, 511.62110895235463],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 245,
+ "bus": 1290,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1622.1985251714511, 416.88940229908326]
+ ]
+ },
+ {
+ "id": 270,
+ "bus": 1290,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1637.2574432471677, 353.1471270582071]
+ ]
+ },
+ {
+ "id": 79,
+ "bus": 1291,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1626.6376864762021, 399.2175669394656],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 156,
+ "bus": 1291,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1652.177259290862, 275.01842247357615],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 214,
+ "bus": 1291,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1593.5955731829927, 515.5365922505279],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 175,
+ "bus": 1292,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1647.7456283279093, 300.4316447113745],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 1293,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1614.4620999921485, 445.9113774133377]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 1294,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1661.0178857292512, 215.27752345576147]
+ ]
+ },
+ {
+ "id": 249,
+ "bus": 1294,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1603.9771978443657, 482.2675373825765]
+ ]
+ },
+ {
+ "id": 44,
+ "bus": 1295,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1612.2196806931006, 453.9521230301219]
+ ]
+ },
+ {
+ "id": 80,
+ "bus": 1295,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1595.7014687802139, 508.9809931130892]
+ ]
+ },
+ {
+ "id": 192,
+ "bus": 1295,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1635.6447903692324, 360.5425752330898]
+ ]
+ },
+ {
+ "id": 217,
+ "bus": 1295,
+ "phases": "abcn",
+ "powers": [
+ [1673.2959462535111, 73.52213999391373],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 221,
+ "bus": 1295,
+ "phases": "abcn",
+ "powers": [
+ [1595.3759873170673, 510.00028226444226],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 269,
+ "bus": 1495,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1635.6272076029422, 360.6223323183412]
+ ]
+ },
+ {
+ "id": 90,
+ "bus": 1623,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1609.0652532107129, 465.00950498636337],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 258,
+ "bus": 1624,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1606.3931478942275, 474.15807829899177],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 51,
+ "bus": 1625,
+ "phases": "abcn",
+ "powers": [
+ [1633.6809402406095, 369.3391589207354],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 246,
+ "bus": 1625,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1619.7414566330963, 426.33606753571036]
+ ]
+ },
+ {
+ "id": 101,
+ "bus": 1626,
+ "phases": "abcn",
+ "powers": [
+ [1662.460998465826, 203.8338965867251],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 158,
+ "bus": 1626,
+ "phases": "abcn",
+ "powers": [
+ [1623.4232663086004, 412.09431836126197],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 176,
+ "bus": 1626,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1657.6366580649167, 239.92819479396871],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 68,
+ "bus": 1627,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1601.2984338224446, 491.0887441751281],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 262,
+ "bus": 1627,
+ "phases": "abcn",
+ "powers": [
+ [1598.3345765453375, 500.6509864539918],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 100,
+ "bus": 1628,
+ "phases": "abcn",
+ "powers": [
+ [1595.9282845174218, 508.2693572260652],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 37,
+ "bus": 1629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1653.7239344417742, 265.5597436964729],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 84,
+ "bus": 1629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1602.9045138767722, 485.82090137332204],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 153,
+ "bus": 1629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1669.8217770024623, 130.46095916425557],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 218,
+ "bus": 1629,
+ "phases": "abcn",
+ "powers": [
+ [1667.1161034922575, 161.39617806661656],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 252,
+ "bus": 1629,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1630.0959701585673, 384.8531627653819],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 1944,
+ "phases": "abcn",
+ "powers": [
+ [1640.6159768938057, 337.20030423844725],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 55,
+ "bus": 1944,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1668.0845895933892, 151.058368780987]
+ ]
+ },
+ {
+ "id": 65,
+ "bus": 1944,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1648.9381979355112, 293.8156704583797]
+ ]
+ },
+ {
+ "id": 88,
+ "bus": 1944,
+ "phases": "abcn",
+ "powers": [
+ [1672.3139697184884, 93.22454345347676],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 227,
+ "bus": 1944,
+ "phases": "abcn",
+ "powers": [
+ [1674.902675315834, 5.084981571270136],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 45,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [1648.1355622962135, 298.2850936809659],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 63,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [1613.3621796960017, 449.87476695663264],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 87,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [1595.4014204994583, 509.92071568630087],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 130,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1626.9817378565717, 397.81308864707773]
+ ]
+ },
+ {
+ "id": 172,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [1616.6130401062906, 438.04920656932467],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 196,
+ "bus": 1982,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1666.3020334481905, 169.5946996345801],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 2055,
+ "phases": "abcn",
+ "powers": [
+ [1651.1283091610464, 281.24746310802834],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 95,
+ "bus": 2055,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1651.3283489329701, 280.07054973350745]
+ ]
+ },
+ {
+ "id": 190,
+ "bus": 2055,
+ "phases": "abcn",
+ "powers": [
+ [1667.9988777338758, 152.0018838575649],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 193,
+ "bus": 2055,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1617.7371569038633, 433.87938414993147]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 2056,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1617.5177372217076, 434.6966742349028]
+ ]
+ },
+ {
+ "id": 104,
+ "bus": 2056,
+ "phases": "abcn",
+ "powers": [
+ [1639.646751894824, 341.8820817452578],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 233,
+ "bus": 2056,
+ "phases": "abcn",
+ "powers": [
+ [1630.1093871790822, 384.7963287875228],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 244,
+ "bus": 2056,
+ "phases": "abcn",
+ "powers": [
+ [1620.2416343241287, 424.43123732872743],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 76,
+ "bus": 2057,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1630.7489553038533, 382.076790178505]
+ ]
+ },
+ {
+ "id": 159,
+ "bus": 2057,
+ "phases": "abcn",
+ "powers": [
+ [1612.4967432112114, 452.9669766671243],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 70,
+ "bus": 2059,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1610.4359524269498, 460.24001558797664]
+ ]
+ },
+ {
+ "id": 219,
+ "bus": 2059,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1646.6881337579819, 306.1748176424268]
+ ]
+ },
+ {
+ "id": 277,
+ "bus": 2059,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1641.1434252762363, 334.62379845178447]
+ ]
+ },
+ {
+ "id": 56,
+ "bus": 2144,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1632.0834135057216, 376.33570143852904],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 243,
+ "bus": 2144,
+ "phases": "abcn",
+ "powers": [
+ [1657.8453366159997, 238.48200912920169],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 64,
+ "bus": 2145,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1671.925947307757, 99.94226101493652],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 174,
+ "bus": 2145,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1618.1518037734559, 432.3303930588613]
+ ]
+ },
+ {
+ "id": 235,
+ "bus": 2145,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1651.3240740005224, 280.0957540628483]
+ ]
+ },
+ {
+ "id": 171,
+ "bus": 2305,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1616.3680782051056, 438.9522349609946]
+ ]
+ },
+ {
+ "id": 183,
+ "bus": 2305,
+ "phases": "abcn",
+ "powers": [
+ [1629.3039382587842, 388.19261403604077],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 112,
+ "bus": 2306,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1674.5834892621301, 33.09027513315446]
+ ]
+ },
+ {
+ "id": 72,
+ "bus": 2428,
+ "phases": "abcn",
+ "powers": [
+ [1610.3377232213174, 460.58359283424505],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 184,
+ "bus": 2428,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1607.4479545033093, 470.5697635641767]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 2429,
+ "phases": "abcn",
+ "powers": [
+ [1593.2594132465147, 516.5745550441775],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 2429,
+ "phases": "abcn",
+ "powers": [
+ [1635.896696153402, 359.397869125712],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 53,
+ "bus": 2429,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1642.163401398756, 329.5818440451275]
+ ]
+ },
+ {
+ "id": 125,
+ "bus": 2429,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1633.4906187901772, 370.17999289832244],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 179,
+ "bus": 2429,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1619.2353892030467, 428.25411051171073]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 2578,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1603.129730145802, 485.0772074014263],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 265,
+ "bus": 2578,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1632.2689623444844, 375.53010982420335]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 2579,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1624.2972737214423, 408.6357735181884],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 81,
+ "bus": 2579,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1599.406930320665, 497.2145412796632]
+ ]
+ },
+ {
+ "id": 251,
+ "bus": 2579,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1642.7447747400045, 326.6717525010854],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 106,
+ "bus": 2580,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1638.500097045223, 347.335948039522]
+ ]
+ },
+ {
+ "id": 120,
+ "bus": 2580,
+ "phases": "abcn",
+ "powers": [
+ [1669.7960557052215, 130.78975941947022],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 149,
+ "bus": 2580,
+ "phases": "abcn",
+ "powers": [
+ [1624.5346150149323, 407.69119862464964],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 165,
+ "bus": 2580,
+ "phases": "abcn",
+ "powers": [
+ [1651.4410693739103, 279.4051237949543],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 2581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1649.939181447882, 288.1415040233038],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 67,
+ "bus": 2581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1622.4371686078744, 415.9596888370101]
+ ]
+ },
+ {
+ "id": 119,
+ "bus": 2581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1616.2365037460663, 439.43644907587026]
+ ]
+ },
+ {
+ "id": 164,
+ "bus": 2581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1643.351348220064, 323.6065127914087],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 257,
+ "bus": 2581,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1619.3365843145589, 427.8713071919821],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 170,
+ "bus": 2582,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1666.7707941793612, 164.92406885721527]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 2610,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1597.144514825458, 504.43456223842435]
+ ]
+ },
+ {
+ "id": 42,
+ "bus": 2610,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1641.1114587923032, 334.78053802202584],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 132,
+ "bus": 2611,
+ "phases": "abcn",
+ "powers": [
+ [1636.8556168719965, 355.0049553630403],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 275,
+ "bus": 2611,
+ "phases": "abcn",
+ "powers": [
+ [1607.205572883123, 471.3969402861565],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1626.29777998842, 400.5999995287756]
+ ]
+ },
+ {
+ "id": 94,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1674.5270650179114, 35.832071391671136]
+ ]
+ },
+ {
+ "id": 185,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1632.5667475051214, 374.23340812688986],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 189,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1630.0688460683778, 384.96803230271706]
+ ]
+ },
+ {
+ "id": 242,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1662.3731237681352, 204.54932459211506],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 261,
+ "bus": 2612,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1637.7098830370646, 351.04297147278453],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 117,
+ "bus": 2694,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1642.3901469397376, 328.4500480331599],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 160,
+ "bus": 2694,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1591.30651152537, 522.5594848384969],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 66,
+ "bus": 2695,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1624.5786920768455, 407.515523713642],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 108,
+ "bus": 2695,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1611.1537537020404, 457.72088738612683],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 124,
+ "bus": 2695,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1608.2152372850571, 467.940786191892],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 201,
+ "bus": 2695,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1610.8026611122293, 458.9549169270104],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 50,
+ "bus": 2696,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1613.222527493904, 450.37529417575564]
+ ]
+ },
+ {
+ "id": 195,
+ "bus": 2696,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1626.90250101793, 398.137012847741]
+ ]
+ },
+ {
+ "id": 263,
+ "bus": 2696,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1632.0810802567094, 376.3458200721922],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 273,
+ "bus": 2696,
+ "phases": "abcn",
+ "powers": [
+ [1617.5906011172037, 434.42545504954154],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 2698,
+ "phases": "abcn",
+ "powers": [
+ [1647.8354248159008, 299.9387296424358],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 144,
+ "bus": 2698,
+ "phases": "abcn",
+ "powers": [
+ [1613.508657364426, 449.3491308857352],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 162,
+ "bus": 2698,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1647.3270071902402, 302.7186155481101]
+ ]
+ },
+ {
+ "id": 212,
+ "bus": 2698,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1658.1502502295439, 236.3526527911612]
+ ]
+ },
+ {
+ "id": 276,
+ "bus": 2698,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1614.320479512987, 446.42381012069416],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 197,
+ "bus": 2899,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1628.856200279835, 390.06705529646507],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 274,
+ "bus": 2899,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1670.7966100307979, 117.31801535702975]
+ ]
+ },
+ {
+ "id": 47,
+ "bus": 2921,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1655.5315748693233, 254.04730549331973],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 89,
+ "bus": 2921,
+ "phases": "abcn",
+ "powers": [
+ [1605.0926849435857, 478.5418493280491],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 111,
+ "bus": 2921,
+ "phases": "abcn",
+ "powers": [
+ [1591.945002330109, 520.6111201020465],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 194,
+ "bus": 2921,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1642.4717617251922, 328.0416753296169],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 198,
+ "bus": 2921,
+ "phases": "abcn",
+ "powers": [
+ [1661.4996285821737, 211.52733402332848],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 2922,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1599.7245272791622, 496.1917629699018],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 264,
+ "bus": 2922,
+ "phases": "abcn",
+ "powers": [
+ [1649.0003126027527, 293.466859890077],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 3066,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1673.6727628323965, 64.37632927319429],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 3066,
+ "phases": "abcn",
+ "powers": [
+ [1610.3466243779258, 460.5524705962807],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 229,
+ "bus": 3067,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1594.5363132030109, 512.6195223503178]
+ ]
+ },
+ {
+ "id": 236,
+ "bus": 3067,
+ "phases": "abcn",
+ "powers": [
+ [1671.9559170678906, 99.43963092945995],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 77,
+ "bus": 3218,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1658.7891302968374, 231.8263359214834],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 93,
+ "bus": 3218,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1615.0532194779382, 443.76562177760565],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 145,
+ "bus": 3218,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1600.2173989638175, 494.59994426929813]
+ ]
+ },
+ {
+ "id": 136,
+ "bus": 3219,
+ "phases": "abcn",
+ "powers": [
+ [1666.4457854209356, 168.1763154267534],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 177,
+ "bus": 3219,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1605.3757687174464, 477.59132114453934]
+ ]
+ },
+ {
+ "id": 266,
+ "bus": 3219,
+ "phases": "abcn",
+ "powers": [
+ [1598.9576757552327, 498.65737732549644],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 118,
+ "bus": 3221,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1635.461287751441, 361.3740514814481]
+ ]
+ },
+ {
+ "id": 141,
+ "bus": 3221,
+ "phases": "abcn",
+ "powers": [
+ [1664.9795326951921, 182.12079651653724],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 161,
+ "bus": 3221,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1648.6860832890966, 295.22707800365555]
+ ]
+ },
+ {
+ "id": 147,
+ "bus": 3535,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1620.447201029315, 423.64572167552564],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 180,
+ "bus": 3535,
+ "phases": "abcn",
+ "powers": [
+ [1647.5084976436135, 301.72931413735984],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 148,
+ "bus": 3536,
+ "phases": "abcn",
+ "powers": [
+ [1609.8337228690455, 462.3420957811514],
+ [0.0, 0.0],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 253,
+ "bus": 3536,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1640.7819694423779, 336.3916728614282]
+ ]
+ },
+ {
+ "id": 58,
+ "bus": 3834,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1611.2179327277734, 457.4949202714263],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 133,
+ "bus": 3834,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1639.947440935606, 340.4368073321034],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 225,
+ "bus": 3834,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [1612.2914850899472, 453.6970309845221],
+ [0.0, 0.0]
+ ]
+ },
+ {
+ "id": 241,
+ "bus": 3834,
+ "phases": "abcn",
+ "powers": [
+ [0.0, 0.0],
+ [0.0, 0.0],
+ [1611.502422137097, 456.4918096351652]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 0,
+ "bus": 0,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_CU_14",
+ "z_line": [
+ [
+ [1.2857142857142856, 0.0, 0.0, 0.0],
+ [0.0, 1.2857142857142856, 0.0, 0.0],
+ [0.0, 0.0, 1.2857142857142856, 0.0],
+ [0.0, 0.0, 0.0, 1.2857142857142856]
+ ],
+ [
+ [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999],
+ [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999],
+ [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7],
+ [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.0, 0.2]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5],
+ [-1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0, 0.0],
+ [0.0, 0.125, 0.0, 0.0],
+ [0.0, 0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.0, 0.125]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00010284317710785252, -2.5710794276947463e-5, -2.5710794276947463e-5, -2.57107942769788e-5],
+ [-2.5710794276947463e-5, 0.00010284317710785252, -2.5710794276947463e-5, -2.57107942769788e-5],
+ [-2.5710794276947463e-5, -2.5710794276947463e-5, 0.00010284317710785252, -2.57107942769788e-5],
+ [-2.57107942769788e-5, -2.57107942769788e-5, -2.57107942769788e-5, 0.0001028431771079]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.31578947368421]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5],
+ [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_CU_25",
+ "z_line": [
+ [
+ [0.7200000000000001, 0.0, 0.0, 0.0],
+ [0.0, 0.7200000000000001, 0.0, 0.0],
+ [0.0, 0.0, 0.7200000000000001, 0.0],
+ [0.0, 0.0, 0.0, 0.7200000000000001]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.4484951974831474e-5, -1.1121237993707868e-5, -1.1121237993707868e-5, -1.1121237993707868e-5],
+ [-1.1121237993707868e-5, 4.4484951974831474e-5, -1.1121237993707868e-5, -1.1121237993707868e-5],
+ [-1.1121237993707868e-5, -1.1121237993707868e-5, 4.4484951974831474e-5, -1.1121237993707868e-5],
+ [-1.1121237993707868e-5, -1.1121237993707868e-5, -1.1121237993707868e-5, 4.4484951974831474e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_150",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.0, 0.2]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [6.283185307179584e-5, -1.570796326794896e-5, -1.570796326794896e-5, -1.570796326794896e-5],
+ [-1.570796326794896e-5, 6.283185307179584e-5, -1.570796326794896e-5, -1.570796326794896e-5],
+ [-1.570796326794896e-5, -1.570796326794896e-5, 6.283185307179584e-5, -1.570796326794896e-5],
+ [-1.570796326794896e-5, -1.570796326794896e-5, -1.570796326794896e-5, 6.283185307179584e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_25",
+ "z_line": [
+ [
+ [1.2, 0.0, 0.0, 0.0],
+ [0.0, 1.2, 0.0, 0.0],
+ [0.0, 0.0, 1.2, 0.0],
+ [0.0, 0.0, 0.0, 1.2]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.7123889803846906e-5, -1.1780972450961726e-5, -1.1780972450961726e-5, -1.1780972450961725e-5],
+ [-1.1780972450961726e-5, 4.7123889803846906e-5, -1.1780972450961726e-5, -1.1780972450961725e-5],
+ [-1.1780972450961726e-5, -1.1780972450961726e-5, 4.7123889803846906e-5, -1.1780972450961725e-5],
+ [-1.1780972450961725e-5, -1.1780972450961725e-5, -1.1780972450961725e-5, 4.71238898038469e-5]
+ ]
+ ]
+ },
+ {
+ "id": "T_AL_70",
+ "z_line": [
+ [
+ [0.42857142857142855, 0.0, 0.0, 0.0],
+ [0.0, 0.42857142857142855, 0.0, 0.0],
+ [0.0, 0.0, 0.42857142857142855, 0.0],
+ [0.0, 0.0, 0.0, 0.4285714285714285]
+ ],
+ [
+ [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1],
+ [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1],
+ [0.1, 0.1, 0.1, 0.2]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [0.0, 0.0, 0.0, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5],
+ [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5],
+ [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json b/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json
index e232eb10..5a746e77 100644
--- a/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json
+++ b/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json
@@ -1,70 +1,555 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "LV Line", "9", "59", "47", "49", 1, 1, 0.4, "0", "0"],
["3", "C", "Line", "9", "60", "54", "58", 10, 1, 20, "0", "0"]
]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:i", "c:ss:i", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:i",
+ "c:ss:i",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["4", "C", "LV Load", null, null, "50", 3, 10, 5, null, 1, 0, 0, null, 0, 10, -5, null, 0, 0, 0, null, 1, null, null, null, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.84554997186925, 0.84554997186925, 0.84554997186925, 0.84554997186925, 0.53389817975015, 0.53389817975015, 0.53389817975015, 0.53389817975015, 0.01443374192743, 0.01443374192743, 0.01443374192743, 0.01443374192743, 92.2691829316895, 92.2691829316895, 92.2691829316895, 92.2691829316895],
- ["5", "C", "Low-Voltage Load", null, null, "48", 2, 10, 8, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, null, null, null, 0.008, 0.00599999962250, 0.008, 0.00599999962250, 0.008, 0.00599999962250, null, null, 0.85629522140861, 0.85629522140861, 0.85629522140861, null, 0.50289892669302, 0.50289892669302, 0.50289892669302, null, 0.01453476892251, 0.01453476892251, 0.01453476892251, null, -6.44434176657393, -6.44434176657393, -6.44434176657393, null]
+ [
+ "4",
+ "C",
+ "LV Load",
+ null,
+ null,
+ "50",
+ 3,
+ 10,
+ 5,
+ null,
+ 1,
+ 0,
+ 0,
+ null,
+ 0,
+ 10,
+ -5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 1,
+ null,
+ null,
+ null,
+ 0.005,
+ -0.00866025403784,
+ 0.005,
+ -0.00866025403784,
+ 0.005,
+ -0.00866025403784,
+ 0.005,
+ -0.00866025403784,
+ 0.84554997186925,
+ 0.84554997186925,
+ 0.84554997186925,
+ 0.84554997186925,
+ 0.53389817975015,
+ 0.53389817975015,
+ 0.53389817975015,
+ 0.53389817975015,
+ 0.01443374192743,
+ 0.01443374192743,
+ 0.01443374192743,
+ 0.01443374192743,
+ 92.2691829316895,
+ 92.2691829316895,
+ 92.2691829316895,
+ 92.2691829316895
+ ],
+ [
+ "5",
+ "C",
+ "Low-Voltage Load",
+ null,
+ null,
+ "48",
+ 2,
+ 10,
+ 8,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ null,
+ null,
+ null,
+ 0.008,
+ 0.0059999996225,
+ 0.008,
+ 0.0059999996225,
+ 0.008,
+ 0.0059999996225,
+ null,
+ null,
+ 0.85629522140861,
+ 0.85629522140861,
+ 0.85629522140861,
+ null,
+ 0.50289892669302,
+ 0.50289892669302,
+ 0.50289892669302,
+ null,
+ 0.01453476892251,
+ 0.01453476892251,
+ 0.01453476892251,
+ null,
+ -6.44434176657393,
+ -6.44434176657393,
+ -6.44434176657393,
+ null
+ ]
]
},
"ElmLodmv": {
- "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "bus1",
+ "phtech",
+ "fold_id",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "sgini",
+ "pgini",
+ "cosgini",
+ "pfg_recap",
+ "sginir",
+ "pginir",
+ "cosginir",
+ "pfg_recapr",
+ "sginis",
+ "pginis",
+ "cosginis",
+ "pfg_recaps",
+ "sginit",
+ "pginit",
+ "cosginit",
+ "pfg_recapt",
+ "n:ur:bus1",
+ "n:ui:bus1",
+ "n:u:bus1",
+ "n:Ul:bus1",
+ "n:Pload:bus1",
+ "n:Qload:bus1"
+ ],
"Values": [
- ["6", "C", "MV Load Balanced", "52", null, "9", 1, 0.9, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.5, 0.5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.99963211559994, 0.00016044663370, 0.99963212847624, 19.9926425695248, 1.179999982843, 0.29598600973486],
- ["7", "C", "MV Load Unbalanced", "53", null, "9", 0.313006, 0.28, null, 1, 0.2, 0.18, null, 0, 0.3, 0.03, null, 1, 0.1, 0.07, null, 0, 0.336716, 0.22, null, 1, 0.1, 0.1, null, 0, 0.1, 0.09, null, 0, 0.3, 0.03, null, 1, 0.99963211559994, 0.00016044663370, 0.99963212847624, 19.9926425695248, 1.179999982843, 0.29598600973486],
- ["8", "C", "MV Load", "57", null, "9", 1, 0.9, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 1, 0, 1, 20, 0.89999997615814, 0.43588995933532]
+ [
+ "6",
+ "C",
+ "MV Load Balanced",
+ "52",
+ null,
+ "9",
+ 1,
+ 0.9,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.5,
+ 0.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.99963211559994,
+ 0.0001604466337,
+ 0.99963212847624,
+ 19.9926425695248,
+ 1.179999982843,
+ 0.29598600973486
+ ],
+ [
+ "7",
+ "C",
+ "MV Load Unbalanced",
+ "53",
+ null,
+ "9",
+ 0.313006,
+ 0.28,
+ null,
+ 1,
+ 0.2,
+ 0.18,
+ null,
+ 0,
+ 0.3,
+ 0.03,
+ null,
+ 1,
+ 0.1,
+ 0.07,
+ null,
+ 0,
+ 0.336716,
+ 0.22,
+ null,
+ 1,
+ 0.1,
+ 0.1,
+ null,
+ 0,
+ 0.1,
+ 0.09,
+ null,
+ 0,
+ 0.3,
+ 0.03,
+ null,
+ 1,
+ 0.99963211559994,
+ 0.0001604466337,
+ 0.99963212847624,
+ 19.9926425695248,
+ 1.179999982843,
+ 0.29598600973486
+ ],
+ [
+ "8",
+ "C",
+ "MV Load",
+ "57",
+ null,
+ "9",
+ 1,
+ 0.9,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 1,
+ 0,
+ 1,
+ 20,
+ 0.89999997615814,
+ 0.43588995933532
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["9", "C", "Exemple exhaustif", null, 50]
- ]
+ "Values": [["9", "C", "Exemple exhaustif", null, 50]]
},
"ElmPvsys": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "bus1", "mode_pgi", "phtech", "sgn", "cosn", "Inom", "pgini", "qgini", "cosgini", "pf_recap", "usetp", "phiini", "av_mode", "usp_min", "usp_max", "ddroop", "Qfu_min", "Qfu_max", "q_min", "q_max"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "bus1",
+ "mode_pgi",
+ "phtech",
+ "sgn",
+ "cosn",
+ "Inom",
+ "pgini",
+ "qgini",
+ "cosgini",
+ "pf_recap",
+ "usetp",
+ "phiini",
+ "av_mode",
+ "usp_min",
+ "usp_max",
+ "ddroop",
+ "Qfu_min",
+ "Qfu_max",
+ "q_min",
+ "q_max"
+ ],
"Values": [
- ["10", "C", "PV System", null, "51", null, 0, 18, 1, 0.025980, 20, 34.64102, 0.5, 0, 1, 0, "constv", 0.9, 1.1, 1, -9999, 9999, -1, 1]
+ [
+ "10",
+ "C",
+ "PV System",
+ null,
+ "51",
+ null,
+ 0,
+ 18,
+ 1,
+ 0.02598,
+ 20,
+ 34.64102,
+ 0.5,
+ 0,
+ 1,
+ 0,
+ "constv",
+ 0.9,
+ 1.1,
+ 1,
+ -9999,
+ 9999,
+ -1,
+ 1
+ ]
]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:phiuln:A", "m:phiuln:B", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:phiuln:A",
+ "m:phiuln:B",
+ "m:phiuln:C"
+ ],
"Values": [
- ["11", "C", "Bus LV 1", "9", null, 0, 1, 0.4, 0, 0, 0, 0.85629522140861, 0.50289892669302, 0.85629522140861, 0.50289892669302, 0.85629522140861, 0.50289892669302, null, null, null],
- ["12", "C", "Bus LV 2", "9", null, 0, 1, 0.4, 0, 0, 0, 0.84554997186925, 0.53389817975015, 0.84554997186925, 0.53389817975015, 0.84554997186925, 0.53389817975015, null, null, null],
- ["13", "C", "Bus MV", "9", null, 0, 0, 20, 0, 0, 0, 0.99963211559994, 0.00016044663370, 0.99963211559994, 0.00016044663370, 0.99963211559994, 0.00016044663370, null, null, null],
+ [
+ "11",
+ "C",
+ "Bus LV 1",
+ "9",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.85629522140861,
+ 0.50289892669302,
+ 0.85629522140861,
+ 0.50289892669302,
+ 0.85629522140861,
+ 0.50289892669302,
+ null,
+ null,
+ null
+ ],
+ [
+ "12",
+ "C",
+ "Bus LV 2",
+ "9",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.84554997186925,
+ 0.53389817975015,
+ 0.84554997186925,
+ 0.53389817975015,
+ 0.84554997186925,
+ 0.53389817975015,
+ null,
+ null,
+ null
+ ],
+ [
+ "13",
+ "C",
+ "Bus MV",
+ "9",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.99963211559994,
+ 0.0001604466337,
+ 0.99963211559994,
+ 0.0001604466337,
+ 0.99963211559994,
+ 0.0001604466337,
+ null,
+ null,
+ null
+ ],
["14", "C", "Terminal", "9", null, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 1, 0, null, null, null]
]
},
"ElmTr2": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"],
- "Values": [
- ["15", "C", "MV/LV Transformer", "9", "61", "56", "46", 0]
- ]
+ "Values": [["15", "C", "MV/LV Transformer", "9", "61", "56", "46", 0]]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["16", "C", "External Grid", "9", "55", null, 0, 0, 0, 0, "PV", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["16", "C", "External Grid", "9", "55", null, 0, 0, 0, 0, "PV", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["17", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -86,7 +571,20 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1"
+ ],
"Values": [
["32", "C", "GCO_1", "21", 1, 0, "2", 96.25, 96.25, "2", 43.75, 65.625],
["33", "C", "GCO_1", "22", 1, 0, "2", 240.625, 240.625, "2", 91.875, 109.375],
@@ -104,10 +602,18 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
- "Values": [
- ["45", "C", "Exemple exhaustif", null, "0", 1, null, "0", "0"]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
+ "Values": [["45", "C", "Exemple exhaustif", null, "0", 1, null, "0", "0"]]
},
"StaCubic": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "cterm", "obj_bus", "obj_id", "chr_name", "nphase"],
@@ -128,16 +634,183 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["59", "C", "Ligne BT", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ["60", "C", "Ligne HTA", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "59",
+ "C",
+ "Ligne BT",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "60",
+ "C",
+ "Ligne HTA",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
},
"TypTr2": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "frnom",
+ "strn",
+ "nt2ph",
+ "tr2cn_h",
+ "tr2cn_l",
+ "nt2ag",
+ "utrn_h",
+ "utrn_l",
+ "uktr",
+ "pcutr",
+ "uk0tr",
+ "ur0tr",
+ "pfe",
+ "curmg",
+ "zx0hl_n",
+ "rtox0_n",
+ "tapchtype",
+ "tap_side",
+ "dutap",
+ "phitr",
+ "nntap0",
+ "ntpmn",
+ "ntpmx"
+ ],
"Values": [
- ["61", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "61",
+ "C",
+ "Transformer 100 kVA Dyn11",
+ null,
+ 50,
+ 0.1,
+ 3,
+ "D",
+ "YN",
+ 11,
+ 20,
+ 0.4,
+ 4,
+ 2.15,
+ 4,
+ 2.15,
+ 0.21,
+ 2.5,
+ 100,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/LV_Line.json b/roseau/load_flow/tests/data/dgs/LV_Line.json
index d3ce3e8d..a377ab4a 100644
--- a/roseau/load_flow/tests/data/dgs/LV_Line.json
+++ b/roseau/load_flow/tests/data/dgs/LV_Line.json
@@ -1,12 +1,23 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "Line Z diagonal", "10", "35", "31", "22", 1, 1, 0.4, "0", "0"],
["3", "C", "Line Z full", "10", "36", "32", "24", 1, 1, 0.4, "0", "0"],
@@ -15,41 +26,464 @@
]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:r",
+ "c:sr:i",
+ "c:ss:r",
+ "c:ss:i",
+ "c:st:r",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["6", "C", "Load Z diagonal - unbalanced", null, null, "23", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, -1.511381e-09, 0.008, 0.006, 0.005, 0.008660, 0.02324882725793, 0.00483147507757, 0.00624012010726, 0.00542540413934, 0.00684097641295, 0.00731426810005, -0.00332992628635, -0.00291089589363, 0.84986899434786, -0.48705782258293, -0.44834869486582, 0.17063895758965, -0.12609471319312, -0.80505034668571, 0.80920249545298, 0.12353414497497, 0.11967475429183, 0.03805340645916, 0.04687627451728, 0.09091146829323, -20.1792541417952, -162.179031839304, 72.0741735316207, 174.743945904441],
- ["7", "C", "Load Z full - unbalanced", null, null, "25", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, 2.741065e-14, 0.008, 0.006, 0.005, 0.008660, 0.02377857737142, 0.00222855274754, 0.00650247379715, 0.00587350087257, 0.00612798178310, 0.00744747555247, -0.00340903295167, -0.00088927612461, 0.90246850530253, -0.47410163959640, -0.49745908446248, 0.15223300504694, -0.02835080697117, -0.84277681585006, 0.82777276299092, 0.06580770763747, 0.11453527489030, 0.03923818418417, 0.04324313264636, 0.09198499004374, -7.15351945046479, -161.450414536849, 70.4526827620966, -171.242297256495],
- ["8", "C", "Load ZY diagonal - unbalanced", null, null, "27", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, -1.509101e-09, 0.008, 0.006, 0.005, 0.008660, 0.02324881091923, 0.00483123824610, 0.00624015672780, 0.00542543069327, 0.00684091884141, 0.00731430750127, -0.00332988899332, -0.00291072501489, 0.84989090453945, -0.48707847111124, -0.44835059224706, 0.17064030456846, -0.12610488878792, -0.80506320194249, 0.80922668601200, 0.12353025235790, 0.11967120404921, 0.03805273673203, 0.04687510638017, 0.09090909372307, -20.1791594454903, -162.179674771802, 72.0731556989139, 174.744222203308],
- ["9", "C", "Load ZY full - unbalanced", null, null, "29", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, 2.740632e-14, 0.008, 0.006, 0.005, 0.008660, 0.02377862006528, 0.00222845107548, 0.00650247265257, 0.00587352781677, 0.00612795480156, 0.00744746390735, -0.00340904751941, -0.00088918975163, 0.90247690807059, -0.47411980030740, -0.49744719293233, 0.15223624252527, -0.02836639719981, -0.84277523650655, 0.82778926859464, 0.06580233739574, 0.11453430577307, 0.03923795579811, 0.04324265625346, 0.09198432248025, -7.15423910428928, -161.451534024413, 70.451493840927, -171.243025018104]
+ [
+ "6",
+ "C",
+ "Load Z diagonal - unbalanced",
+ null,
+ null,
+ "23",
+ 3,
+ 36.10987,
+ 33,
+ null,
+ 0,
+ 20,
+ 20,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 10,
+ 5,
+ null,
+ 0,
+ 0.02,
+ -1.511381e-9,
+ 0.008,
+ 0.006,
+ 0.005,
+ 0.00866,
+ 0.02324882725793,
+ 0.00483147507757,
+ 0.00624012010726,
+ 0.00542540413934,
+ 0.00684097641295,
+ 0.00731426810005,
+ -0.00332992628635,
+ -0.00291089589363,
+ 0.84986899434786,
+ -0.48705782258293,
+ -0.44834869486582,
+ 0.17063895758965,
+ -0.12609471319312,
+ -0.80505034668571,
+ 0.80920249545298,
+ 0.12353414497497,
+ 0.11967475429183,
+ 0.03805340645916,
+ 0.04687627451728,
+ 0.09091146829323,
+ -20.1792541417952,
+ -162.179031839304,
+ 72.0741735316207,
+ 174.743945904441
+ ],
+ [
+ "7",
+ "C",
+ "Load Z full - unbalanced",
+ null,
+ null,
+ "25",
+ 3,
+ 36.10987,
+ 33,
+ null,
+ 0,
+ 20,
+ 20,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 10,
+ 5,
+ null,
+ 0,
+ 0.02,
+ 2.741065e-14,
+ 0.008,
+ 0.006,
+ 0.005,
+ 0.00866,
+ 0.02377857737142,
+ 0.00222855274754,
+ 0.00650247379715,
+ 0.00587350087257,
+ 0.0061279817831,
+ 0.00744747555247,
+ -0.00340903295167,
+ -0.00088927612461,
+ 0.90246850530253,
+ -0.4741016395964,
+ -0.49745908446248,
+ 0.15223300504694,
+ -0.02835080697117,
+ -0.84277681585006,
+ 0.82777276299092,
+ 0.06580770763747,
+ 0.1145352748903,
+ 0.03923818418417,
+ 0.04324313264636,
+ 0.09198499004374,
+ -7.15351945046479,
+ -161.450414536849,
+ 70.4526827620966,
+ -171.242297256495
+ ],
+ [
+ "8",
+ "C",
+ "Load ZY diagonal - unbalanced",
+ null,
+ null,
+ "27",
+ 3,
+ 36.10987,
+ 33,
+ null,
+ 0,
+ 20,
+ 20,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 10,
+ 5,
+ null,
+ 0,
+ 0.02,
+ -1.509101e-9,
+ 0.008,
+ 0.006,
+ 0.005,
+ 0.00866,
+ 0.02324881091923,
+ 0.0048312382461,
+ 0.0062401567278,
+ 0.00542543069327,
+ 0.00684091884141,
+ 0.00731430750127,
+ -0.00332988899332,
+ -0.00291072501489,
+ 0.84989090453945,
+ -0.48707847111124,
+ -0.44835059224706,
+ 0.17064030456846,
+ -0.12610488878792,
+ -0.80506320194249,
+ 0.809226686012,
+ 0.1235302523579,
+ 0.11967120404921,
+ 0.03805273673203,
+ 0.04687510638017,
+ 0.09090909372307,
+ -20.1791594454903,
+ -162.179674771802,
+ 72.0731556989139,
+ 174.744222203308
+ ],
+ [
+ "9",
+ "C",
+ "Load ZY full - unbalanced",
+ null,
+ null,
+ "29",
+ 3,
+ 36.10987,
+ 33,
+ null,
+ 0,
+ 20,
+ 20,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 10,
+ 5,
+ null,
+ 0,
+ 0.02,
+ 2.740632e-14,
+ 0.008,
+ 0.006,
+ 0.005,
+ 0.00866,
+ 0.02377862006528,
+ 0.00222845107548,
+ 0.00650247265257,
+ 0.00587352781677,
+ 0.00612795480156,
+ 0.00744746390735,
+ -0.00340904751941,
+ -0.00088918975163,
+ 0.90247690807059,
+ -0.4741198003074,
+ -0.49744719293233,
+ 0.15223624252527,
+ -0.02836639719981,
+ -0.84277523650655,
+ 0.82778926859464,
+ 0.06580233739574,
+ 0.11453430577307,
+ 0.03923795579811,
+ 0.04324265625346,
+ 0.09198432248025,
+ -7.15423910428928,
+ -161.451534024413,
+ 70.451493840927,
+ -171.243025018104
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["10", "C", "LV Line", null, 50]
- ]
+ "Values": [["10", "C", "LV Line", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["11", "C", "Bus Z diagonal - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.84986899434786, -0.12609471319312, -0.48705782258293, -0.80505034668571, -0.44834869486582, 0.80920249545298, 0.72364909290682, -20.1792584715848, 1.13790782262981, -125.309135680196, 0.92373524385485, 132.074170434883],
- ["12", "C", "Bus Z full - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.90246850530253, -0.02835080697117, -0.47410163959640, -0.84277681585006, -0.49745908446248, 0.82777276299092, 0.75612110915981, -7.15351945038626, 1.10354923922841, -124.580519076648, 1.00134437470379, 130.452681292249],
- ["13", "C", "Bus ZY diagonal - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.84989090453945, -0.12610488878792, -0.48707847111124, -0.80506320194249, -0.44835059224706, 0.80922668601200, 0.72367056127484, -20.1791637687481, 1.13792784975637, -125.309778613709, 0.92375826354433, 132.07315260447],
- ["14", "C", "Bus ZY full - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.90247690807058, -0.02836639719981, -0.47411980030740, -0.84277523650655, -0.49744719293233, 0.82778926859464, 0.75612750698093, -7.15423910421077, 1.10355566247979, -124.581638564211, 1.00135540624991, 130.451492371079],
- ["15", "C", "Bus source", "10", null, 0, 1, 0.4, 0, 0, 0, 0.99999871822799, -1.69702167489433e-05, -0.49999357664694, -0.86603128495699, -0.50000703260344, 0.86602065092383, 0.99999871837199, -0.00097232304333, 1.00000188160446, -119.999512793516, 0.99999940023954, 120.000485114687]
+ [
+ "11",
+ "C",
+ "Bus Z diagonal - unbalanced",
+ "10",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.84986899434786,
+ -0.12609471319312,
+ -0.48705782258293,
+ -0.80505034668571,
+ -0.44834869486582,
+ 0.80920249545298,
+ 0.72364909290682,
+ -20.1792584715848,
+ 1.13790782262981,
+ -125.309135680196,
+ 0.92373524385485,
+ 132.074170434883
+ ],
+ [
+ "12",
+ "C",
+ "Bus Z full - unbalanced",
+ "10",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.90246850530253,
+ -0.02835080697117,
+ -0.4741016395964,
+ -0.84277681585006,
+ -0.49745908446248,
+ 0.82777276299092,
+ 0.75612110915981,
+ -7.15351945038626,
+ 1.10354923922841,
+ -124.580519076648,
+ 1.00134437470379,
+ 130.452681292249
+ ],
+ [
+ "13",
+ "C",
+ "Bus ZY diagonal - unbalanced",
+ "10",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.84989090453945,
+ -0.12610488878792,
+ -0.48707847111124,
+ -0.80506320194249,
+ -0.44835059224706,
+ 0.809226686012,
+ 0.72367056127484,
+ -20.1791637687481,
+ 1.13792784975637,
+ -125.309778613709,
+ 0.92375826354433,
+ 132.07315260447
+ ],
+ [
+ "14",
+ "C",
+ "Bus ZY full - unbalanced",
+ "10",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.90247690807058,
+ -0.02836639719981,
+ -0.4741198003074,
+ -0.84277523650655,
+ -0.49744719293233,
+ 0.82778926859464,
+ 0.75612750698093,
+ -7.15423910421077,
+ 1.10355566247979,
+ -124.581638564211,
+ 1.00135540624991,
+ 130.451492371079
+ ],
+ [
+ "15",
+ "C",
+ "Bus source",
+ "10",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99999871822799,
+ -1.69702167489433e-5,
+ -0.49999357664694,
+ -0.86603128495699,
+ -0.50000703260344,
+ 0.86602065092383,
+ 0.99999871837199,
+ -0.00097232304333,
+ 1.00000188160446,
+ -119.999512793516,
+ 0.99999940023954,
+ 120.000485114687
+ ]
]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["16", "C", "LV source", "10", "30", null, 0, 0, 0, 0, "SL", 0, 1, 1]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["16", "C", "LV source", "10", "30", null, 0, 0, 0, 0, "SL", 0, 1, 1]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["17", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -59,7 +493,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["20", "C", "MV Line", null, "0", 1, null, "0", "0"],
["21", "C", "MV network", null, "0", 1, null, "0", "0"]
@@ -84,12 +528,197 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["35", "C", "Z diagonal 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0.4029, 0.3522, 1.121087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ["36", "C", "Z full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ["37", "C", "ZY diagonal 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0.4029, 0.3522, 1.121087, 0, 0, 0, 135.4058, 0.431010, 0.002731, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0],
- ["38", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0]
+ [
+ "35",
+ "C",
+ "Z diagonal 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "36",
+ "C",
+ "Z full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2471,
+ 0.786543,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "37",
+ "C",
+ "ZY diagonal 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0,
+ 0,
+ 135.4058,
+ 0.43101,
+ 0.002731,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 116.5693,
+ 0.371051,
+ 0,
+ 0
+ ],
+ [
+ "38",
+ "C",
+ "ZY full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2471,
+ 0.786543,
+ 199.5807,
+ 0.635285,
+ 0.001853,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 116.5693,
+ 0.371051,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/LV_network.json b/roseau/load_flow/tests/data/dgs/LV_network.json
index 2893de8b..4ec4f76e 100644
--- a/roseau/load_flow/tests/data/dgs/LV_network.json
+++ b/roseau/load_flow/tests/data/dgs/LV_network.json
@@ -1,20 +1,31 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "Line(0)", "72", "521", "455", "409", 0.183941, 1, 0.4, "0", "0"],
["3", "C", "Line(10)", "72", "520", "499", "415", 0.143065, 1, 0.4, "0", "0"],
["4", "C", "Line(11)", "72", "521", "502", "421", 0.153284, 1, 0.4, "0", "0"],
["5", "C", "Line(12)", "72", "520", "506", "458", 0.163503, 1, 0.4, "0", "0"],
- ["6", "C", "Line(13)", "72", "521", "465", "491", 0.091970, 1, 0.4, "0", "0"],
+ ["6", "C", "Line(13)", "72", "521", "465", "491", 0.09197, 1, 0.4, "0", "0"],
["7", "C", "Line(14)", "72", "520", "509", "516", 0.173722, 1, 0.4, "0", "0"],
- ["8", "C", "Line(15)", "72", "521", "471", "517", 0.091970, 1, 0.4, "0", "0"],
+ ["8", "C", "Line(15)", "72", "521", "471", "517", 0.09197, 1, 0.4, "0", "0"],
["9", "C", "Line(16)", "72", "520", "481", "518", 0.143065, 1, 0.4, "0", "0"],
["10", "C", "Line(17)", "72", "521", "425", "419", 0.122627, 1, 0.4, "0", "0"],
["11", "C", "Line(18)", "72", "520", "513", "519", 0.183941, 1, 0.4, "0", "0"],
@@ -23,15 +34,15 @@
["14", "C", "Line(21)", "72", "521", "437", "414", 0.112408, 1, 0.4, "0", "0"],
["15", "C", "Line(22)", "72", "520", "440", "399", 0.081751, 1, 0.4, "0", "0"],
["16", "C", "Line(23)", "72", "521", "444", "401", 0.112408, 1, 0.4, "0", "0"],
- ["17", "C", "Line(24)", "72", "520", "448", "402", 0.091970, 1, 0.4, "0", "0"],
+ ["17", "C", "Line(24)", "72", "520", "448", "402", 0.09197, 1, 0.4, "0", "0"],
["18", "C", "Line(25)", "72", "521", "477", "403", 0.081751, 1, 0.4, "0", "0"],
["19", "C", "Line(26)", "72", "520", "484", "404", 0.163503, 1, 0.4, "0", "0"],
["20", "C", "Line(27)", "72", "521", "452", "405", 0.204379, 1, 0.4, "0", "0"],
["21", "C", "Line(28)", "72", "520", "487", "406", 0.153284, 1, 0.4, "0", "0"],
["22", "C", "Line(29)", "72", "521", "423", "392", 0.051094, 1, 0.4, "0", "0"],
- ["23", "C", "Line(30)", "72", "520", "393", "428", 0.091970, 1, 0.4, "0", "0"],
- ["24", "C", "Line(31)", "72", "521", "427", "413", 0.091970, 1, 0.4, "0", "0"],
- ["25", "C", "Line(32)", "72", "520", "429", "394", 0.091970, 1, 0.4, "0", "0"],
+ ["23", "C", "Line(30)", "72", "520", "393", "428", 0.09197, 1, 0.4, "0", "0"],
+ ["24", "C", "Line(31)", "72", "521", "427", "413", 0.09197, 1, 0.4, "0", "0"],
+ ["25", "C", "Line(32)", "72", "520", "429", "394", 0.09197, 1, 0.4, "0", "0"],
["26", "C", "Line(33)", "72", "521", "395", "431", 0.071532, 1, 0.4, "0", "0"],
["27", "C", "Line(34)", "72", "520", "396", "469", 0.112408, 1, 0.4, "0", "0"],
["28", "C", "Line(35)", "72", "521", "430", "407", 0.081751, 1, 0.4, "0", "0"],
@@ -48,12 +59,12 @@
["39", "C", "Line(45)", "72", "520", "508", "510", 0.071532, 1, 0.4, "0", "0"],
["40", "C", "Line(46)", "72", "521", "511", "472", 0.132846, 1, 0.4, "0", "0"],
["41", "C", "Line(47)", "72", "520", "512", "482", 0.071532, 1, 0.4, "0", "0"],
- ["42", "C", "Line(48)", "72", "521", "420", "514", 0.194160, 1, 0.4, "0", "0"],
+ ["42", "C", "Line(48)", "72", "521", "420", "514", 0.19416, 1, 0.4, "0", "0"],
["43", "C", "Line(49)", "72", "520", "515", "434", 0.102189, 1, 0.4, "0", "0"],
["44", "C", "Line(5)", "72", "521", "492", "410", 0.112408, 1, 0.4, "0", "0"],
["45", "C", "Line(50)", "72", "520", "435", "475", 0.183941, 1, 0.4, "0", "0"],
["46", "C", "Line(51)", "72", "521", "436", "438", 0.061313, 1, 0.4, "0", "0"],
- ["47", "C", "Line(52)", "72", "520", "439", "441", 0.194160, 1, 0.4, "0", "0"],
+ ["47", "C", "Line(52)", "72", "520", "439", "441", 0.19416, 1, 0.4, "0", "0"],
["48", "C", "Line(53)", "72", "521", "442", "445", 0.061313, 1, 0.4, "0", "0"],
["49", "C", "Line(54)", "72", "520", "446", "449", 0.153284, 1, 0.4, "0", "0"],
["50", "C", "Line(55)", "72", "521", "450", "478", 0.051094, 1, 0.4, "0", "0"],
@@ -61,109 +72,2320 @@
["52", "C", "Line(57)", "72", "521", "451", "453", 0.102189, 1, 0.4, "0", "0"],
["53", "C", "Line(58)", "72", "520", "454", "488", 0.173722, 1, 0.4, "0", "0"],
["54", "C", "Line(6)", "72", "521", "495", "411", 0.163503, 1, 0.4, "0", "0"],
- ["55", "C", "Line(7)", "72", "520", "462", "412", 0.194160, 1, 0.4, "0", "0"],
+ ["55", "C", "Line(7)", "72", "520", "462", "412", 0.19416, 1, 0.4, "0", "0"],
["56", "C", "Line(8)", "72", "521", "459", "408", 0.173722, 1, 0.4, "0", "0"],
["57", "C", "Line(9)", "72", "520", "424", "416", 0.081751, 1, 0.4, "0", "0"]
]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:r",
+ "c:sr:i",
+ "c:ss:r",
+ "c:ss:i",
+ "c:st:r",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["58", "C", "Low-Voltage Load(1)", null, null, "461", 3, 17, 13.6000003814697, null, 0, 5, 4, null, 0, 10, 8, null, 0, 2, 1.60000002384186, null, 0, 0.004, 0.003, 0.008, 0.006, 0.0016, 0.0012, 0.00401589747067, 0.00271449347196, 0.00854937827558, 0.00634866395469, 0.00148988903716, 0.00124351652763, -0.00045516476286, -0.00010667473913, 0.99222206306548, -0.44409924005425, -0.47398967487535, -0.03085841035119, -0.01631931852092, -0.84891724687403, 0.83429009706148, -0.04974731641954, 0.02115091339087, 0.04812914377066, 0.00875762168029, 0.03457968813815, -34.9984864113676, -154.212817841814, 79.7528117638401, 44.9984745965493],
- ["59", "C", "Low-Voltage Load(10)", null, null, "443", 3, 6, 3, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 3, null, 0, 0, -0, -0, 0, 0.003, 0.005196, 0, 0, 0, 0, 0.00324420082420, 0.00527633881551, -0.00024420082439, -8.01866052915209e-05, 0.95469192428326, -0.50139467520404, -0.49113697678145, 0.00666992745475, 0.01208878493189, -0.84226199407470, 0.82927596618559, 0.03943481846378, 0, 0, 0.02782775176978, 0.02782775176978, 0, 0, 62.2216759797301, -117.778324020263],
- ["60", "C", "Low-Voltage Load(11)", null, null, "418", 3, 9.925281, 8.10000038146973, null, 0, 5, 4, null, 0, 2, 1.39999997615814, null, 0, 3, 2.69999980926514, null, 0, 0.004, 0.003, 0.0014, 0.001428, 0.0027, 0.001307, 0.00397124833980, 0.00300119740450, 0.00140670378329, 0.00141899343131, 0.00271205857104, 0.00132029406499, 9.98909128450498e-06, -4.52954325597433e-06, 0.99408262834892, -0.50237904407708, -0.49823774547825, -0.00443266095824, -0.00108488479732, -0.86713079944944, 0.85887093185241, 0.00365754986412, 0.02168258232513, 0.00863343288850, 0.01315429540556, 0.00826422450965, -37.1420189324257, -165.335386635246, 94.1604443575332, 164.864586566968],
- ["61", "C", "Low-Voltage Load(12)", null, null, "426", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00480000019073, 0.00359999990463, 0, 0, 0, 0, 5.39117943178107e-21, 4.25604104712596e-22, 0.99999759792981, -0.49999873071990, -0.49999982780086, -7.61382466490777e-19, -8.82135154296959e-08, -0.86602634485305, 0.86602806862597, 4.82369605821715e-19, 0.02598082454710, 0, 0, 0.02598082454710, -36.8699008787331, 0, 0, 143.13009912126],
- ["62", "C", "Low-Voltage Load(13)", null, null, "480", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, -0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00435134528161, 0.00207328589605, 0, 0, 0.00014865471851, 0.00010616390068, 0.94664315176139, -0.49511802384280, -0.48247597832997, 0.01294722785072, 0.01702910924561, -0.83541179702292, 0.82733325309672, 0.03445101494895, 0, 0.02149226624219, 0, 0.02149226624219, 0, -146.13007506129, 0, 33.8699249387025],
- ["63", "C", "Low-Voltage Load(2)", null, null, "464", 3, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 0, 0, 0.0056, 0.005713, 0, 0, 0, -0, 0.00606696101812, 0.00604530838002, 0, 0, -0.00046696111638, -0.00033216550671, 0.99409925048167, -0.44217350658995, -0.47416970398350, -0.03851984504409, -0.01670675180690, -0.84807354692459, 0.83506241117502, -0.05110100660813, 0, 0.03877587011955, 0, 0.03877587011955, 0, -162.434471303073, 0, 17.5655286969195],
- ["64", "C", "Low-Voltage Load(3)", null, null, "467", 3, 13.74773, 13.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 10, 10, null, 0, 0.0015, 0.002598, 0.002, 2.027169e-15, 0.01, 2.37235e-14, 0.00139485069782, 0.00254079247828, 0.00199331279833, -7.98976519233205e-05, 0.01038478384688, 0.00020611705591, -0.00027294734303, -6.89357771413562e-05, 0.97988259468373, -0.50909238475909, -0.48322427534924, -0.03400740194812, -0.00336771010540, -0.86907900126429, 0.83325765902928, 0.02195836056370, 0.01280842072680, 0.00857638672999, 0.04669289595787, 0.03011346121882, -61.4308990595115, -118.065730919998, 118.973323437868, -47.0243184115529],
- ["65", "C", "Low-Voltage Load(4)", null, null, "473", 3, 6, 6, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0, -0, -0, 0, 0.006, 2.056052e-14, 0, -0, 0, 0, 0.00625602986855, 0.00012856320987, -0.00025602986855, -0.00012856320985, 0.97762466253366, -0.51116674261515, -0.48389565428438, -0.03633029261193, -0.00618398983484, -0.87194415391841, 0.82893555978195, 0.02472683573178, 0, 0, 0.02822884739722, 0.02822884739722, 0, 0, 119.097200164723, -60.9027998352697],
- ["66", "C", "Low-Voltage Load(5)", null, null, "476", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, -0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00447911125522, 0.00209999002570, 0, 0, 2.08887447968066e-05, 7.9459770993649e-05, 0.97918093624554, -0.48992984819742, -0.48685879278254, -0.00566292714917, 7.76219912849786e-05, -0.85301294244419, 0.83591782063003, 0.01532450743511, 0, 0.02177594215985, 0, 0.02177594215985, 0, -144.990098793267, 0, 35.0099012067261],
- ["67", "C", "Low-Voltage Load(6)", null, null, "479", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00472951760901, 0.00382571252808, 0, 0, 0, 0, 7.04825808344433e-05, -0.00022571262340, 0.94664315176139, -0.49511802384280, -0.48247597832997, 0.01294722785072, 0.01702910924561, -0.83541179702292, 0.82733325309672, 0.03445101494895, 0.02782087819485, 0, 0, 0.02782087819485, -37.9388582420395, 0, 0, 142.061141757953],
- ["68", "C", "Low-Voltage Load(7)", null, null, "483", 3, 5.196152, 4.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 1, 1, null, 0, 0.0015, 0.002598, 0.002, 4.235906e-15, 0.001, 2.781846e-15, 0.00140838792358, 0.00254188832646, 0.00199806616385, -7.1625877980423e-05, 0.00103331527521, 2.00280108676171e-05, 6.02306373447746e-05, 0.00010778564577, 0.97832173010964, -0.50978802941921, -0.48499527068464, -0.03139013560135, -0.00568036307171, -0.87142613623169, 0.83076229546152, 0.01799282985834, 0.01286189855582, 0.00857522068321, 0.00465214757388, 0.01477704500669, -61.3430807512423, -118.274780203477, 119.165805382075, 89.3751257133931],
- ["69", "C", "Low-Voltage Load(8)", null, null, "486", 3, 7, 6.29999971389771, null, 0, 0, 0, null, 0, 0, 0, null, 0, 7, 6.29999971389771, null, 0, 0, -0, -0, 0, 0.0063, 0.003051, 0, 0, 0, 0, 0.00663001629760, 0.00296379062985, -0.00033001658396, 8.74390856414929e-05, 0.94922466861202, -0.50324207162358, -0.49063905572920, 0.00642540841204, 0.01228416507318, -0.84156794993458, 0.82503595028204, 0.04466550274347, 0, 0, 0.03276037140882, 0.03276037140882, 0, 0, 96.6535534916036, -83.3464465083891],
- ["70", "C", "Low-Voltage Load(9)", null, null, "489", 3, 11.69615, 11.3999996185303, null, 0, 6, 5.39999961853027, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0.0054, 0.002615, -0, 0, 0.006, 1.67062e-13, 0.00536224667050, 0.00291095180461, 0, 0, 0.00618155416795, -0.00023529710419, -0.00014380122132, -6.03149439740281e-05, 0.93873967246797, -0.49797831571010, -0.47927567780975, 0.01570684685222, 0.01948869431380, -0.83407255672331, 0.82553313381368, 0.04308737396836, 0.02813797443590, 0, 0.02806101885728, 0.01472345541682, -27.3064687918902, 0, 122.317828988623, -132.783331040929],
- ["71", "C", "Low-Voltage Load", null, null, "457", 3, 40, 36, null, 0, 20, 18, null, 0, 10, 9, null, 0, 10, 9, null, 0, 0.018, 0.008717, 0.009, 0.004358, 0.009, 0.004358, 0.01853246557716, 0.00829261068185, 0.00903624321757, 0.00470730021277, 0.00870471914721, 0.00422481557023, -0.00027342794367, 0.00021087190903, 0.97451790320422, -0.45932948762864, -0.47521676709091, 0.01519090070994, 0.00663811333026, -0.83312954416839, 0.85231315758314, -0.02896492464771, 0.09021216157966, 0.04637454617996, 0.04293465548550, 0.04571470147363, -23.7165210736341, -146.385884377234, 93.2528308703884, 155.315116825548]
+ [
+ "58",
+ "C",
+ "Low-Voltage Load(1)",
+ null,
+ null,
+ "461",
+ 3,
+ 17,
+ 13.6000003814697,
+ null,
+ 0,
+ 5,
+ 4,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 2,
+ 1.60000002384186,
+ null,
+ 0,
+ 0.004,
+ 0.003,
+ 0.008,
+ 0.006,
+ 0.0016,
+ 0.0012,
+ 0.00401589747067,
+ 0.00271449347196,
+ 0.00854937827558,
+ 0.00634866395469,
+ 0.00148988903716,
+ 0.00124351652763,
+ -0.00045516476286,
+ -0.00010667473913,
+ 0.99222206306548,
+ -0.44409924005425,
+ -0.47398967487535,
+ -0.03085841035119,
+ -0.01631931852092,
+ -0.84891724687403,
+ 0.83429009706148,
+ -0.04974731641954,
+ 0.02115091339087,
+ 0.04812914377066,
+ 0.00875762168029,
+ 0.03457968813815,
+ -34.9984864113676,
+ -154.212817841814,
+ 79.7528117638401,
+ 44.9984745965493
+ ],
+ [
+ "59",
+ "C",
+ "Low-Voltage Load(10)",
+ null,
+ null,
+ "443",
+ 3,
+ 6,
+ 3,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 3,
+ null,
+ 0,
+ 0,
+ -0,
+ -0,
+ 0,
+ 0.003,
+ 0.005196,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.0032442008242,
+ 0.00527633881551,
+ -0.00024420082439,
+ -8.01866052915209e-5,
+ 0.95469192428326,
+ -0.50139467520404,
+ -0.49113697678145,
+ 0.00666992745475,
+ 0.01208878493189,
+ -0.8422619940747,
+ 0.82927596618559,
+ 0.03943481846378,
+ 0,
+ 0,
+ 0.02782775176978,
+ 0.02782775176978,
+ 0,
+ 0,
+ 62.2216759797301,
+ -117.778324020263
+ ],
+ [
+ "60",
+ "C",
+ "Low-Voltage Load(11)",
+ null,
+ null,
+ "418",
+ 3,
+ 9.925281,
+ 8.10000038146973,
+ null,
+ 0,
+ 5,
+ 4,
+ null,
+ 0,
+ 2,
+ 1.39999997615814,
+ null,
+ 0,
+ 3,
+ 2.69999980926514,
+ null,
+ 0,
+ 0.004,
+ 0.003,
+ 0.0014,
+ 0.001428,
+ 0.0027,
+ 0.001307,
+ 0.0039712483398,
+ 0.0030011974045,
+ 0.00140670378329,
+ 0.00141899343131,
+ 0.00271205857104,
+ 0.00132029406499,
+ 9.98909128450498e-6,
+ -4.52954325597433e-6,
+ 0.99408262834892,
+ -0.50237904407708,
+ -0.49823774547825,
+ -0.00443266095824,
+ -0.00108488479732,
+ -0.86713079944944,
+ 0.85887093185241,
+ 0.00365754986412,
+ 0.02168258232513,
+ 0.0086334328885,
+ 0.01315429540556,
+ 0.00826422450965,
+ -37.1420189324257,
+ -165.335386635246,
+ 94.1604443575332,
+ 164.864586566968
+ ],
+ [
+ "61",
+ "C",
+ "Low-Voltage Load(12)",
+ null,
+ null,
+ "426",
+ 3,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.0048,
+ 0.0036,
+ -0,
+ 0,
+ 0,
+ 0,
+ 0.00480000019073,
+ 0.00359999990463,
+ 0,
+ 0,
+ 0,
+ 0,
+ 5.39117943178107e-21,
+ 4.25604104712596e-22,
+ 0.99999759792981,
+ -0.4999987307199,
+ -0.49999982780086,
+ -7.61382466490777e-19,
+ -8.82135154296959e-8,
+ -0.86602634485305,
+ 0.86602806862597,
+ 4.82369605821715e-19,
+ 0.0259808245471,
+ 0,
+ 0,
+ 0.0259808245471,
+ -36.8699008787331,
+ 0,
+ 0,
+ 143.13009912126
+ ],
+ [
+ "62",
+ "C",
+ "Low-Voltage Load(13)",
+ null,
+ null,
+ "480",
+ 3,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ -0,
+ 0.0045,
+ 0.002179,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00435134528161,
+ 0.00207328589605,
+ 0,
+ 0,
+ 0.00014865471851,
+ 0.00010616390068,
+ 0.94664315176139,
+ -0.4951180238428,
+ -0.48247597832997,
+ 0.01294722785072,
+ 0.01702910924561,
+ -0.83541179702292,
+ 0.82733325309672,
+ 0.03445101494895,
+ 0,
+ 0.02149226624219,
+ 0,
+ 0.02149226624219,
+ 0,
+ -146.13007506129,
+ 0,
+ 33.8699249387025
+ ],
+ [
+ "63",
+ "C",
+ "Low-Voltage Load(2)",
+ null,
+ null,
+ "464",
+ 3,
+ 8,
+ 5.59999990463257,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 8,
+ 5.59999990463257,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ 0.0056,
+ 0.005713,
+ 0,
+ 0,
+ 0,
+ -0,
+ 0.00606696101812,
+ 0.00604530838002,
+ 0,
+ 0,
+ -0.00046696111638,
+ -0.00033216550671,
+ 0.99409925048167,
+ -0.44217350658995,
+ -0.4741697039835,
+ -0.03851984504409,
+ -0.0167067518069,
+ -0.84807354692459,
+ 0.83506241117502,
+ -0.05110100660813,
+ 0,
+ 0.03877587011955,
+ 0,
+ 0.03877587011955,
+ 0,
+ -162.434471303073,
+ 0,
+ 17.5655286969195
+ ],
+ [
+ "64",
+ "C",
+ "Low-Voltage Load(3)",
+ null,
+ null,
+ "467",
+ 3,
+ 13.74773,
+ 13.5,
+ null,
+ 0,
+ 3,
+ 1.5,
+ null,
+ 0,
+ 2,
+ 2,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ 0.0015,
+ 0.002598,
+ 0.002,
+ 2.027169e-15,
+ 0.01,
+ 2.37235e-14,
+ 0.00139485069782,
+ 0.00254079247828,
+ 0.00199331279833,
+ -7.98976519233205e-5,
+ 0.01038478384688,
+ 0.00020611705591,
+ -0.00027294734303,
+ -6.89357771413562e-5,
+ 0.97988259468373,
+ -0.50909238475909,
+ -0.48322427534924,
+ -0.03400740194812,
+ -0.0033677101054,
+ -0.86907900126429,
+ 0.83325765902928,
+ 0.0219583605637,
+ 0.0128084207268,
+ 0.00857638672999,
+ 0.04669289595787,
+ 0.03011346121882,
+ -61.4308990595115,
+ -118.065730919998,
+ 118.973323437868,
+ -47.0243184115529
+ ],
+ [
+ "65",
+ "C",
+ "Low-Voltage Load(4)",
+ null,
+ null,
+ "473",
+ 3,
+ 6,
+ 6,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 6,
+ null,
+ 0,
+ 0,
+ -0,
+ -0,
+ 0,
+ 0.006,
+ 2.056052e-14,
+ 0,
+ -0,
+ 0,
+ 0,
+ 0.00625602986855,
+ 0.00012856320987,
+ -0.00025602986855,
+ -0.00012856320985,
+ 0.97762466253366,
+ -0.51116674261515,
+ -0.48389565428438,
+ -0.03633029261193,
+ -0.00618398983484,
+ -0.87194415391841,
+ 0.82893555978195,
+ 0.02472683573178,
+ 0,
+ 0,
+ 0.02822884739722,
+ 0.02822884739722,
+ 0,
+ 0,
+ 119.097200164723,
+ -60.9027998352697
+ ],
+ [
+ "66",
+ "C",
+ "Low-Voltage Load(5)",
+ null,
+ null,
+ "476",
+ 3,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ -0,
+ 0.0045,
+ 0.002179,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00447911125522,
+ 0.0020999900257,
+ 0,
+ 0,
+ 2.08887447968066e-5,
+ 7.9459770993649e-5,
+ 0.97918093624554,
+ -0.48992984819742,
+ -0.48685879278254,
+ -0.00566292714917,
+ 7.76219912849786e-5,
+ -0.85301294244419,
+ 0.83591782063003,
+ 0.01532450743511,
+ 0,
+ 0.02177594215985,
+ 0,
+ 0.02177594215985,
+ 0,
+ -144.990098793267,
+ 0,
+ 35.0099012067261
+ ],
+ [
+ "67",
+ "C",
+ "Low-Voltage Load(6)",
+ null,
+ null,
+ "479",
+ 3,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.0048,
+ 0.0036,
+ -0,
+ 0,
+ 0,
+ 0,
+ 0.00472951760901,
+ 0.00382571252808,
+ 0,
+ 0,
+ 0,
+ 0,
+ 7.04825808344433e-5,
+ -0.0002257126234,
+ 0.94664315176139,
+ -0.4951180238428,
+ -0.48247597832997,
+ 0.01294722785072,
+ 0.01702910924561,
+ -0.83541179702292,
+ 0.82733325309672,
+ 0.03445101494895,
+ 0.02782087819485,
+ 0,
+ 0,
+ 0.02782087819485,
+ -37.9388582420395,
+ 0,
+ 0,
+ 142.061141757953
+ ],
+ [
+ "68",
+ "C",
+ "Low-Voltage Load(7)",
+ null,
+ null,
+ "483",
+ 3,
+ 5.196152,
+ 4.5,
+ null,
+ 0,
+ 3,
+ 1.5,
+ null,
+ 0,
+ 2,
+ 2,
+ null,
+ 0,
+ 1,
+ 1,
+ null,
+ 0,
+ 0.0015,
+ 0.002598,
+ 0.002,
+ 4.235906e-15,
+ 0.001,
+ 2.781846e-15,
+ 0.00140838792358,
+ 0.00254188832646,
+ 0.00199806616385,
+ -7.1625877980423e-5,
+ 0.00103331527521,
+ 2.00280108676171e-5,
+ 6.02306373447746e-5,
+ 0.00010778564577,
+ 0.97832173010964,
+ -0.50978802941921,
+ -0.48499527068464,
+ -0.03139013560135,
+ -0.00568036307171,
+ -0.87142613623169,
+ 0.83076229546152,
+ 0.01799282985834,
+ 0.01286189855582,
+ 0.00857522068321,
+ 0.00465214757388,
+ 0.01477704500669,
+ -61.3430807512423,
+ -118.274780203477,
+ 119.165805382075,
+ 89.3751257133931
+ ],
+ [
+ "69",
+ "C",
+ "Low-Voltage Load(8)",
+ null,
+ null,
+ "486",
+ 3,
+ 7,
+ 6.29999971389771,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 7,
+ 6.29999971389771,
+ null,
+ 0,
+ 0,
+ -0,
+ -0,
+ 0,
+ 0.0063,
+ 0.003051,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.0066300162976,
+ 0.00296379062985,
+ -0.00033001658396,
+ 8.74390856414929e-5,
+ 0.94922466861202,
+ -0.50324207162358,
+ -0.4906390557292,
+ 0.00642540841204,
+ 0.01228416507318,
+ -0.84156794993458,
+ 0.82503595028204,
+ 0.04466550274347,
+ 0,
+ 0,
+ 0.03276037140882,
+ 0.03276037140882,
+ 0,
+ 0,
+ 96.6535534916036,
+ -83.3464465083891
+ ],
+ [
+ "70",
+ "C",
+ "Low-Voltage Load(9)",
+ null,
+ null,
+ "489",
+ 3,
+ 11.69615,
+ 11.3999996185303,
+ null,
+ 0,
+ 6,
+ 5.39999961853027,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 6,
+ null,
+ 0,
+ 0.0054,
+ 0.002615,
+ -0,
+ 0,
+ 0.006,
+ 1.67062e-13,
+ 0.0053622466705,
+ 0.00291095180461,
+ 0,
+ 0,
+ 0.00618155416795,
+ -0.00023529710419,
+ -0.00014380122132,
+ -6.03149439740281e-5,
+ 0.93873967246797,
+ -0.4979783157101,
+ -0.47927567780975,
+ 0.01570684685222,
+ 0.0194886943138,
+ -0.83407255672331,
+ 0.82553313381368,
+ 0.04308737396836,
+ 0.0281379744359,
+ 0,
+ 0.02806101885728,
+ 0.01472345541682,
+ -27.3064687918902,
+ 0,
+ 122.317828988623,
+ -132.783331040929
+ ],
+ [
+ "71",
+ "C",
+ "Low-Voltage Load",
+ null,
+ null,
+ "457",
+ 3,
+ 40,
+ 36,
+ null,
+ 0,
+ 20,
+ 18,
+ null,
+ 0,
+ 10,
+ 9,
+ null,
+ 0,
+ 10,
+ 9,
+ null,
+ 0,
+ 0.018,
+ 0.008717,
+ 0.009,
+ 0.004358,
+ 0.009,
+ 0.004358,
+ 0.01853246557716,
+ 0.00829261068185,
+ 0.00903624321757,
+ 0.00470730021277,
+ 0.00870471914721,
+ 0.00422481557023,
+ -0.00027342794367,
+ 0.00021087190903,
+ 0.97451790320422,
+ -0.45932948762864,
+ -0.47521676709091,
+ 0.01519090070994,
+ 0.00663811333026,
+ -0.83312954416839,
+ 0.85231315758314,
+ -0.02896492464771,
+ 0.09021216157966,
+ 0.04637454617996,
+ 0.0429346554855,
+ 0.04571470147363,
+ -23.7165210736341,
+ -146.385884377234,
+ 93.2528308703884,
+ 155.315116825548
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["72", "C", "LV network", null, 50]
- ]
+ "Values": [["72", "C", "LV network", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["73", "C", "Bus(0)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99497334575815, 0.00021554972599, -0.49610219899793, -0.86146433420968, -0.49903605045913, 0.86390450345023, 0.99547695536684, 0.32246400830799, 0.98919257538569, -120.068114083016, 1.00210681718844, 119.834742999313],
- ["74", "C", "Bus(1)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98980396637557, -0.00292801089093, -0.46909372677591, -0.85032096895691, -0.48326874884683, 0.85171203312259, 0.99413493684726, 1.2209164804074, 0.94807072376230, -119.370660053427, 0.99832992697452, 118.6831195265],
- ["75", "C", "Bus(10)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97632699150388, 0.00415213307556, -0.49472377243507, -0.85185223215947, -0.48971285867756, 0.83999185956988, 0.97702350778330, -0.94265215320271, 1.0023540511135, -119.537884475194, 0.95461131327449, 120.824225894772],
- ["76", "C", "Bus(11)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97918098141820, 7.74853371280218e-05, -0.48992999950765, -0.85301290433259, -0.48685869560203, 0.83591793996366, 0.98496191860935, -0.88696363845950, 0.99424568420224, -119.148171505664, 0.95127437797405, 120.387348896851],
- ["77", "C", "Bus(12)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95469193530796, 0.01208875775715, -0.50139470696474, -0.84226198218865, -0.49113695364313, 0.82927599470095, 0.94841632467580, -1.65226095028512, 1.01760450705447, -119.952055667118, 0.93362774903880, 122.22167321956],
- ["78", "C", "Bus(13)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99283331852904, -0.01101525731862, -0.45786870052207, -0.85303892327162, -0.47805397201474, 0.84229662634362, 1.00812013599261, 1.25402577610438, 0.93189498363248, -118.371453219155, 0.99028171760068, 117.875535367437],
- ["79", "C", "Bus(14)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95170244107321, 0.01257306885580, -0.50076449356158, -0.84127892211260, -0.48898485150911, 0.82687527847871, 0.94476373760060, -1.7392791627902, 1.01836072023121, -119.93233440631, 0.92929124402224, 122.284673192076],
- ["80", "C", "Bus(15)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94786280511817, 0.01671194886623, -0.49564513272862, -0.83623065391725, -0.48247628833454, 0.82733308026738, 0.93617572128863, -1.2385949760653, 1.00997489867354, -120.168067648218, 0.93226708466445, 122.025790286059],
- ["81", "C", "Bus(16)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94664320186892, 0.01702899480497, -0.49511815731239, -0.83541177495262, -0.48247590172424, 0.82733336147769, 0.93385849663838, -1.06896960160527, 1.00736871055582, -120.28814621737, 0.93493662392520, 121.998714113528],
- ["82", "C", "Bus(17)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94922471441113, 0.01228406006974, -0.50324219911869, -0.84156790215211, -0.49063896552841, 0.82503606760633, 0.94335520804359, -1.96711217299901, 1.02233593839907, -119.902954404146, 0.92523035280449, 122.495483738855],
- ["83", "C", "Bus(18)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94531973741401, 0.01688574366506, -0.49564746303645, -0.83623011735217, -0.48037514176081, 0.82590127922693, 0.93240382891693, -1.37992947610575, 1.01268683888029, -120.162830677195, 0.92859127277850, 122.10796698454],
- ["84", "C", "Bus(19)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.93873971633006, 0.01948860271766, -0.49797842339625, -0.83407251565246, -0.47927559465615, 0.82553323483762, 0.92333446655154, -1.46453745675079, 1.01650483203851, -120.354234667847, 0.92586670082086, 122.317822919772],
- ["85", "C", "Bus(2)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98408243246721, -0.00289304678445, -0.46749135595383, -0.84785410219272, -0.48204782923330, 0.84927845081593, 0.98263436308284, 1.29734345225956, 0.94709956251971, -119.696004222831, 0.99931028116356, 118.952323249849],
- ["86", "C", "Bus(20)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99222231678140, -0.01631991778088, -0.44409980544008, -0.84891723172818, -0.47398929206799, 0.83429053524586, 1.02362669072275, 1.87137639669121, 0.89968936361366, -117.342954530294, 0.98888216153313, 116.622674626103],
- ["87", "C", "Bus(21)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97451819822318, 0.00663749725590, -0.45933011495374, -0.83312947514535, -0.47521632628385, 0.85231369280611, 0.95998769694760, 2.125378718688, 0.93372951098580, -120.54398463923, 1.00853918652922, 119.094730321971],
- ["88", "C", "Bus(22)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99189574339061, -0.01082417130786, -0.45511630022299, -0.85023900091785, -0.47796254077692, 0.84191104364662, 1.01193323665197, 1.52353934816319, 0.92183367877443, -118.187540992371, 0.99186182271644, 117.519015233637],
- ["89", "C", "Bus(23)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409876602587, -0.01670522202400, -0.44695204206885, -0.85221576840550, -0.47417032125295, 0.83506307417551, 1.02210616246396, 1.54430877146045, 0.91029275318392, -117.428316705266, 0.98619774617608, 116.922417964786],
- ["90", "C", "Bus(24)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409928390866, -0.01670696347727, -0.44217371295109, -0.84807354541920, -0.47416960333226, 0.83506252072183, 1.03319181219276, 1.90767890812874, 0.89336533177994, -116.86148339317, 0.98745961063787, 116.179341242148],
- ["91", "C", "Bus(25)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.9923887975434, -0.00135659271554, -0.48259833769608, -0.85589260446417, -0.49115215948991, 0.85780856133592, 0.99477550916126, 0.77136659700779, 0.96861385472079, -119.726810155805, 1.00016800414947, 119.259997924428],
- ["92", "C", "Bus(26)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97333743773726, 0.00463618611675, -0.49409419633951, -0.85086897669327, -0.48767726713363, 0.83608310312845, 0.97271127940233, -1.20161750317455, 1.00606507940149, -119.468865905389, 0.94680985935665, 121.061737410985],
- ["93", "C", "Bus(27)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98363448273998, -0.00629777583592, -0.50935040369519, -0.87225375701575, -0.49567598067595, 0.84285366872351, 1.00087919643083, -1.05785483430701, 1.01220541966688, -119.100321921117, 0.95868541228554, 119.948886502853],
- ["94", "C", "Bus(28)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99408262834892, -0.00108488479732, -0.50237904407708, -0.86713079944944, -0.49823774547825, 0.85887093185241, 0.99852655130782, -0.27212347224417, 1.00310664924593, -119.762389501434, 0.98753905757172, 120.002382059369],
- ["95", "C", "Bus(29)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99401971238506, 0.00096529779150, -0.49750018086989, -0.86204358878462, -0.49592683320417, 0.85821235265890, 0.99434192157189, -0.28720092728600, 1.00030514788372, -119.804280761075, 0.98589465293133, 120.179321258561],
- ["96", "C", "Bus(3)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98125347543452, -0.00444027906815, -0.50918693521261, -0.87024043204082, -0.48824806910439, 0.83713594468506, 1.00847294108365, -1.24653335141051, 1.01024900674307, -118.510130293915, 0.94051747888706, 119.369496591144],
- ["97", "C", "Bus(30)", "72", null, 0, 1, 0.4, 0, 0, 0, 0.99999759792981, -8.82135154296959e-08, -0.49999873071990, -0.86602634485305, -0.49999982780086, 0.86602806862597, 0.99999759792982, -5.05427427088269e-06, 1.00000018035051, -119.99991005921, 1.000002221722, 119.999915113645],
- ["98", "C", "Bus(31)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99238872902866, -0.00135643307134, -0.48259817114966, -0.85589262252578, -0.49115226541266, 0.85780842699537, 0.99477544205240, 0.77137572907196, 0.96861378992484, -119.726801049048, 1.00016793732106, 119.260007072059],
- ["99", "C", "Bus(32)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98408237700642, -0.00289292052298, -0.46749122826077, -0.84785411407340, -0.48204791450843, 0.84927834738124, 0.98263431049068, 1.29735065968804, 0.94709951290591, -119.69599703587, 0.99931022850483, 118.95233050227],
- ["100", "C", "Bus(33)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97632691095689, 0.00415232310135, -0.49472356265852, -0.85185226040885, -0.48971298199983, 0.83999169199534, 0.97702342753887, -0.94264090497047, 1.00235396788499, -119.537873160687, 0.95461123342636, 120.824237131303],
- ["101", "C", "Bus(34)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97333734006340, 0.00463641485291, -0.49409394304432, -0.85086901104267, -0.48767741576021, 0.83608290077556, 0.97271118278838, -1.20160390952952, 1.00606497828678, -119.468852203094, 0.94680976309192, 121.061751001123],
- ["102", "C", "Bus(35)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95469192428326, 0.01208878493189, -0.50139467520404, -0.84226199407470, -0.49113697678145, 0.82927596618559, 0.94841631787978, -1.65225909528683, 1.01760449572285, -119.952053638334, 0.93362773766621, 122.221674966728],
- ["103", "C", "Bus(36)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95170234858219, 0.01257328772492, -0.50076423698065, -0.84127896293551, -0.48898499291741, 0.82687507281704, 0.94476364447989, -1.73926556739926, 1.01836061751847, -119.932320672172, 0.92929114915390, 122.28468674704],
- ["104", "C", "Bus(37)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94786279027645, 0.01671198321288, -0.49564509347506, -0.83623066829264, -0.48247631817455, 0.82733304482077, 0.93617571284942, -1.23859265328301, 1.00997488447695, -120.168065066558, 0.93226706980975, 122.025792496499],
- ["105", "C", "Bus(38)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94531942077989, 0.01688645495991, -0.49564662779498, -0.83623025255608, -0.48037561709187, 0.82590060024219, 0.93240352328462, -1.37988466295889, 1.0126864999869, -120.162785288312, 0.92859095634196, 122.108011773759],
- ["106", "C", "Bus(39)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97451790320422, 0.00663811333026, -0.45932948762864, -0.83312954416839, -0.47521676709091, 0.85231315758314, 0.95998743430731, 2.12541504166052, 0.93372926174445, -120.543948256048, 1.00853891291232, 119.094766981373],
- ["107", "C", "Bus(4)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97911896867433, -0.00546539961140, -0.51035078466560, -0.87124247613633, -0.48723880647912, 0.83350397426291, 1.00914435151189, -1.38214663831429, 1.01158551027595, -118.366809498717, 0.93430813023573, 119.319201137979],
- ["108", "C", "Bus(40)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99222206306548, -0.01631931852092, -0.44409924005425, -0.84891724687403, -0.47398967487535, 0.83429009706148, 1.02362643876075, 1.87140905272302, 0.89968914691482, -117.342922361953, 0.98888192724561, 116.622707353217],
- ["109", "C", "Bus(41)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409925048167, -0.01670675180690, -0.44217350658995, -0.84807354692459, -0.47416970398350, 0.83506241117502, 1.03319173496878, 1.90769024365455, 0.89336527159826, -116.861474147156, 0.98745957011468, 116.179352174711],
- ["110", "C", "Bus(42)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97988259468373, -0.00336771010540, -0.50909238475909, -0.86907900126429, -0.48322427534924, 0.83325765902928, 1.01420625867014, -1.43090007400217, 1.00977884760273, -118.06573091994, 0.92736311714398, 118.973323438004],
- ["111", "C", "Bus(43)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99283327987219, -0.01101509600299, -0.45786854521353, -0.85303893455004, -0.47805406501405, 0.84229653011377, 1.0081200809582, 1.25403430747461, 0.93189494004440, -118.371445187122, 0.99028167420387, 117.875544068685],
- ["112", "C", "Bus(44)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762466253366, -0.00618398983484, -0.51116674261515, -0.87194415391841, -0.48389565428438, 0.82893555978195, 1.01442601021539, -1.74614413822902, 1.01463713608952, -117.903673029106, 0.92036211613004, 119.097200164919],
- ["113", "C", "Bus(45)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97918093624554, 7.76219912849786e-05, -0.48992984819742, -0.85301294244419, -0.48685879278254, 0.83591782063003, 0.98496187884708, -0.8869552184354, 0.99424563246938, -119.148162679174, 0.95127432781656, 120.3873569192],
- ["114", "C", "Bus(46)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94664315176139, 0.01702910924561, -0.49511802384280, -0.83541179702292, -0.48247597832997, 0.82733325309672, 0.93385844812034, -1.06896241214565, 1.00736865726012, -120.2881389473, 0.93493657367362, 121.998721300051],
- ["115", "C", "Bus(47)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97832173010964, -0.00568036307171, -0.50978802941921, -0.87142613623169, -0.48499527068464, 0.83076229546152, 1.00998934242945, -1.34308176573782, 1.0099161559506, -118.274780203356, 0.93078022260403, 119.165805382234],
- ["116", "C", "Bus(48)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94922466861202, 0.01228416507318, -0.50324207162358, -0.84156794993458, -0.49063905572920, 0.82503595028204, 0.94335518022796, -1.96710481308216, 1.02233589042523, -119.902946275072, 0.92523030479096, 122.495490628399],
- ["117", "C", "Bus(49)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.93873967246797, 0.01948869431380, -0.49797831571010, -0.83407255672331, -0.47927567780975, 0.82553313381368, 0.92333444365822, -1.46453108273148, 1.0165047910599, -120.354227444841, 0.92586665714921, 122.317828990219],
- ["118", "C", "Bus(5)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97988265467635, -0.00336786915994, -0.50909256254615, -0.86907898113367, -0.48322418016955, 0.83325778919231, 1.01420632595629, -1.43090925389363, 1.00977891644704, -118.065740062581, 0.92736317891811, 118.973314375898],
- ["119", "C", "Bus(50)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99189563773213, -0.01082392496863, -0.45511606079190, -0.85023901442394, -0.47796270156324, 0.84191085465382, 1.01193313340475, 1.52355300739898, 0.92183358644104, -118.187527463665, 0.99186172420025, 117.519028929767],
- ["120", "C", "Bus(51)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409854029526, -0.01670469091951, -0.44695153988736, -0.85221578348598, -0.47417066170518, 0.83506268504329, 1.02210594002838, 1.54433765991876, 0.91029255956307, -117.428288163954, 0.98619753856542, 116.922446958732],
- ["121", "C", "Bus(52)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98363445650615, -0.00629768149610, -0.50935029498507, -0.87225378363380, -0.49567604366463, 0.84285358778090, 1.00087916459338, -1.05784902355725, 1.01220538510609, -119.100316208759, 0.95868538215948, 119.94889214175],
- ["122", "C", "Bus(53)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98125330678511, -0.00443983583225, -0.50918644157589, -0.87024048517953, -0.48824833407450, 0.83713558051328, 1.00847275303165, -1.24650790342386, 1.01024881479423, -118.510104967749, 0.94051730373751, 119.369521790391],
- ["123", "C", "Bus(54)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97911893926732, -0.00546528018363, -0.51035063764409, -0.87124251380658, -0.48723888257229, 0.83350386679099, 1.00914431235661, -1.38213879829989, 1.0115854594016, -118.366802003353, 0.93430809398431, 119.319208188982],
- ["124", "C", "Bus(55)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762484169999, -0.00618293149519, -0.51116537767890, -0.87194398317613, -0.48653236761552, 0.83096152264790, 1.00961771107555, -1.47696222833199, 1.01252479836991, -118.266705452338, 0.92996203114442, 119.283598382598],
- ["125", "C", "Bus(56)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98455423419364, 0.00249497166000, -0.49354290233990, -0.85573771029933, -0.48947867309762, 0.84583646953353, 0.98543845194993, -0.74858225166698, 1.00081135572619, -119.494718238799, 0.96357770322512, 120.474187355581],
- ["126", "C", "Bus(6)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762487399805, -0.00618306559651, -0.51116554467847, -0.87194394023073, -0.48653228302678, 0.83096164432064, 1.00961775538812, -1.4769710901982, 1.01252485624127, -118.26671390861, 0.92996207180512, 119.283590439241],
- ["127", "C", "Bus(7)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762472112788, -0.00618414979405, -0.51116692179610, -0.87194413472501, -0.48389556063664, 0.82893568868653, 1.01442607757625, -1.74615332128154, 1.01463720528153, -117.903682167774, 0.92036217736403, 119.097191102104],
- ["128", "C", "Bus(8)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97832175182686, -0.00568045475658, -0.50978814246664, -0.87142610743863, -0.48499521296222, 0.83076237704947, 1.00998937230594, -1.34308777964823, 1.00991619466743, -118.274785939318, 0.93078024986009, 119.165799977308],
- ["129", "C", "Bus(9)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98455428815460, 0.00249481763883, -0.49354307015205, -0.85573766738745, -0.48947856027923, 0.84583660426393, 0.98543849655028, -0.74859165020491, 1.0008114137797, -119.494728151275, 0.96357776088538, 120.474178346264]
+ [
+ "73",
+ "C",
+ "Bus(0)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99497334575815,
+ 0.00021554972599,
+ -0.49610219899793,
+ -0.86146433420968,
+ -0.49903605045913,
+ 0.86390450345023,
+ 0.99547695536684,
+ 0.32246400830799,
+ 0.98919257538569,
+ -120.068114083016,
+ 1.00210681718844,
+ 119.834742999313
+ ],
+ [
+ "74",
+ "C",
+ "Bus(1)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98980396637557,
+ -0.00292801089093,
+ -0.46909372677591,
+ -0.85032096895691,
+ -0.48326874884683,
+ 0.85171203312259,
+ 0.99413493684726,
+ 1.2209164804074,
+ 0.9480707237623,
+ -119.370660053427,
+ 0.99832992697452,
+ 118.6831195265
+ ],
+ [
+ "75",
+ "C",
+ "Bus(10)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97632699150388,
+ 0.00415213307556,
+ -0.49472377243507,
+ -0.85185223215947,
+ -0.48971285867756,
+ 0.83999185956988,
+ 0.9770235077833,
+ -0.94265215320271,
+ 1.0023540511135,
+ -119.537884475194,
+ 0.95461131327449,
+ 120.824225894772
+ ],
+ [
+ "76",
+ "C",
+ "Bus(11)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.9791809814182,
+ 7.74853371280218e-5,
+ -0.48992999950765,
+ -0.85301290433259,
+ -0.48685869560203,
+ 0.83591793996366,
+ 0.98496191860935,
+ -0.8869636384595,
+ 0.99424568420224,
+ -119.148171505664,
+ 0.95127437797405,
+ 120.387348896851
+ ],
+ [
+ "77",
+ "C",
+ "Bus(12)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.95469193530796,
+ 0.01208875775715,
+ -0.50139470696474,
+ -0.84226198218865,
+ -0.49113695364313,
+ 0.82927599470095,
+ 0.9484163246758,
+ -1.65226095028512,
+ 1.01760450705447,
+ -119.952055667118,
+ 0.9336277490388,
+ 122.22167321956
+ ],
+ [
+ "78",
+ "C",
+ "Bus(13)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99283331852904,
+ -0.01101525731862,
+ -0.45786870052207,
+ -0.85303892327162,
+ -0.47805397201474,
+ 0.84229662634362,
+ 1.00812013599261,
+ 1.25402577610438,
+ 0.93189498363248,
+ -118.371453219155,
+ 0.99028171760068,
+ 117.875535367437
+ ],
+ [
+ "79",
+ "C",
+ "Bus(14)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.95170244107321,
+ 0.0125730688558,
+ -0.50076449356158,
+ -0.8412789221126,
+ -0.48898485150911,
+ 0.82687527847871,
+ 0.9447637376006,
+ -1.7392791627902,
+ 1.01836072023121,
+ -119.93233440631,
+ 0.92929124402224,
+ 122.284673192076
+ ],
+ [
+ "80",
+ "C",
+ "Bus(15)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94786280511817,
+ 0.01671194886623,
+ -0.49564513272862,
+ -0.83623065391725,
+ -0.48247628833454,
+ 0.82733308026738,
+ 0.93617572128863,
+ -1.2385949760653,
+ 1.00997489867354,
+ -120.168067648218,
+ 0.93226708466445,
+ 122.025790286059
+ ],
+ [
+ "81",
+ "C",
+ "Bus(16)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94664320186892,
+ 0.01702899480497,
+ -0.49511815731239,
+ -0.83541177495262,
+ -0.48247590172424,
+ 0.82733336147769,
+ 0.93385849663838,
+ -1.06896960160527,
+ 1.00736871055582,
+ -120.28814621737,
+ 0.9349366239252,
+ 121.998714113528
+ ],
+ [
+ "82",
+ "C",
+ "Bus(17)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94922471441113,
+ 0.01228406006974,
+ -0.50324219911869,
+ -0.84156790215211,
+ -0.49063896552841,
+ 0.82503606760633,
+ 0.94335520804359,
+ -1.96711217299901,
+ 1.02233593839907,
+ -119.902954404146,
+ 0.92523035280449,
+ 122.495483738855
+ ],
+ [
+ "83",
+ "C",
+ "Bus(18)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94531973741401,
+ 0.01688574366506,
+ -0.49564746303645,
+ -0.83623011735217,
+ -0.48037514176081,
+ 0.82590127922693,
+ 0.93240382891693,
+ -1.37992947610575,
+ 1.01268683888029,
+ -120.162830677195,
+ 0.9285912727785,
+ 122.10796698454
+ ],
+ [
+ "84",
+ "C",
+ "Bus(19)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.93873971633006,
+ 0.01948860271766,
+ -0.49797842339625,
+ -0.83407251565246,
+ -0.47927559465615,
+ 0.82553323483762,
+ 0.92333446655154,
+ -1.46453745675079,
+ 1.01650483203851,
+ -120.354234667847,
+ 0.92586670082086,
+ 122.317822919772
+ ],
+ [
+ "85",
+ "C",
+ "Bus(2)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98408243246721,
+ -0.00289304678445,
+ -0.46749135595383,
+ -0.84785410219272,
+ -0.4820478292333,
+ 0.84927845081593,
+ 0.98263436308284,
+ 1.29734345225956,
+ 0.94709956251971,
+ -119.696004222831,
+ 0.99931028116356,
+ 118.952323249849
+ ],
+ [
+ "86",
+ "C",
+ "Bus(20)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.9922223167814,
+ -0.01631991778088,
+ -0.44409980544008,
+ -0.84891723172818,
+ -0.47398929206799,
+ 0.83429053524586,
+ 1.02362669072275,
+ 1.87137639669121,
+ 0.89968936361366,
+ -117.342954530294,
+ 0.98888216153313,
+ 116.622674626103
+ ],
+ [
+ "87",
+ "C",
+ "Bus(21)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97451819822318,
+ 0.0066374972559,
+ -0.45933011495374,
+ -0.83312947514535,
+ -0.47521632628385,
+ 0.85231369280611,
+ 0.9599876969476,
+ 2.125378718688,
+ 0.9337295109858,
+ -120.54398463923,
+ 1.00853918652922,
+ 119.094730321971
+ ],
+ [
+ "88",
+ "C",
+ "Bus(22)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99189574339061,
+ -0.01082417130786,
+ -0.45511630022299,
+ -0.85023900091785,
+ -0.47796254077692,
+ 0.84191104364662,
+ 1.01193323665197,
+ 1.52353934816319,
+ 0.92183367877443,
+ -118.187540992371,
+ 0.99186182271644,
+ 117.519015233637
+ ],
+ [
+ "89",
+ "C",
+ "Bus(23)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99409876602587,
+ -0.016705222024,
+ -0.44695204206885,
+ -0.8522157684055,
+ -0.47417032125295,
+ 0.83506307417551,
+ 1.02210616246396,
+ 1.54430877146045,
+ 0.91029275318392,
+ -117.428316705266,
+ 0.98619774617608,
+ 116.922417964786
+ ],
+ [
+ "90",
+ "C",
+ "Bus(24)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99409928390866,
+ -0.01670696347727,
+ -0.44217371295109,
+ -0.8480735454192,
+ -0.47416960333226,
+ 0.83506252072183,
+ 1.03319181219276,
+ 1.90767890812874,
+ 0.89336533177994,
+ -116.86148339317,
+ 0.98745961063787,
+ 116.179341242148
+ ],
+ [
+ "91",
+ "C",
+ "Bus(25)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.9923887975434,
+ -0.00135659271554,
+ -0.48259833769608,
+ -0.85589260446417,
+ -0.49115215948991,
+ 0.85780856133592,
+ 0.99477550916126,
+ 0.77136659700779,
+ 0.96861385472079,
+ -119.726810155805,
+ 1.00016800414947,
+ 119.259997924428
+ ],
+ [
+ "92",
+ "C",
+ "Bus(26)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97333743773726,
+ 0.00463618611675,
+ -0.49409419633951,
+ -0.85086897669327,
+ -0.48767726713363,
+ 0.83608310312845,
+ 0.97271127940233,
+ -1.20161750317455,
+ 1.00606507940149,
+ -119.468865905389,
+ 0.94680985935665,
+ 121.061737410985
+ ],
+ [
+ "93",
+ "C",
+ "Bus(27)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98363448273998,
+ -0.00629777583592,
+ -0.50935040369519,
+ -0.87225375701575,
+ -0.49567598067595,
+ 0.84285366872351,
+ 1.00087919643083,
+ -1.05785483430701,
+ 1.01220541966688,
+ -119.100321921117,
+ 0.95868541228554,
+ 119.948886502853
+ ],
+ [
+ "94",
+ "C",
+ "Bus(28)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99408262834892,
+ -0.00108488479732,
+ -0.50237904407708,
+ -0.86713079944944,
+ -0.49823774547825,
+ 0.85887093185241,
+ 0.99852655130782,
+ -0.27212347224417,
+ 1.00310664924593,
+ -119.762389501434,
+ 0.98753905757172,
+ 120.002382059369
+ ],
+ [
+ "95",
+ "C",
+ "Bus(29)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99401971238506,
+ 0.0009652977915,
+ -0.49750018086989,
+ -0.86204358878462,
+ -0.49592683320417,
+ 0.8582123526589,
+ 0.99434192157189,
+ -0.287200927286,
+ 1.00030514788372,
+ -119.804280761075,
+ 0.98589465293133,
+ 120.179321258561
+ ],
+ [
+ "96",
+ "C",
+ "Bus(3)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98125347543452,
+ -0.00444027906815,
+ -0.50918693521261,
+ -0.87024043204082,
+ -0.48824806910439,
+ 0.83713594468506,
+ 1.00847294108365,
+ -1.24653335141051,
+ 1.01024900674307,
+ -118.510130293915,
+ 0.94051747888706,
+ 119.369496591144
+ ],
+ [
+ "97",
+ "C",
+ "Bus(30)",
+ "72",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99999759792981,
+ -8.82135154296959e-8,
+ -0.4999987307199,
+ -0.86602634485305,
+ -0.49999982780086,
+ 0.86602806862597,
+ 0.99999759792982,
+ -5.05427427088269e-6,
+ 1.00000018035051,
+ -119.99991005921,
+ 1.000002221722,
+ 119.999915113645
+ ],
+ [
+ "98",
+ "C",
+ "Bus(31)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99238872902866,
+ -0.00135643307134,
+ -0.48259817114966,
+ -0.85589262252578,
+ -0.49115226541266,
+ 0.85780842699537,
+ 0.9947754420524,
+ 0.77137572907196,
+ 0.96861378992484,
+ -119.726801049048,
+ 1.00016793732106,
+ 119.260007072059
+ ],
+ [
+ "99",
+ "C",
+ "Bus(32)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98408237700642,
+ -0.00289292052298,
+ -0.46749122826077,
+ -0.8478541140734,
+ -0.48204791450843,
+ 0.84927834738124,
+ 0.98263431049068,
+ 1.29735065968804,
+ 0.94709951290591,
+ -119.69599703587,
+ 0.99931022850483,
+ 118.95233050227
+ ],
+ [
+ "100",
+ "C",
+ "Bus(33)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97632691095689,
+ 0.00415232310135,
+ -0.49472356265852,
+ -0.85185226040885,
+ -0.48971298199983,
+ 0.83999169199534,
+ 0.97702342753887,
+ -0.94264090497047,
+ 1.00235396788499,
+ -119.537873160687,
+ 0.95461123342636,
+ 120.824237131303
+ ],
+ [
+ "101",
+ "C",
+ "Bus(34)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.9733373400634,
+ 0.00463641485291,
+ -0.49409394304432,
+ -0.85086901104267,
+ -0.48767741576021,
+ 0.83608290077556,
+ 0.97271118278838,
+ -1.20160390952952,
+ 1.00606497828678,
+ -119.468852203094,
+ 0.94680976309192,
+ 121.061751001123
+ ],
+ [
+ "102",
+ "C",
+ "Bus(35)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.95469192428326,
+ 0.01208878493189,
+ -0.50139467520404,
+ -0.8422619940747,
+ -0.49113697678145,
+ 0.82927596618559,
+ 0.94841631787978,
+ -1.65225909528683,
+ 1.01760449572285,
+ -119.952053638334,
+ 0.93362773766621,
+ 122.221674966728
+ ],
+ [
+ "103",
+ "C",
+ "Bus(36)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.95170234858219,
+ 0.01257328772492,
+ -0.50076423698065,
+ -0.84127896293551,
+ -0.48898499291741,
+ 0.82687507281704,
+ 0.94476364447989,
+ -1.73926556739926,
+ 1.01836061751847,
+ -119.932320672172,
+ 0.9292911491539,
+ 122.28468674704
+ ],
+ [
+ "104",
+ "C",
+ "Bus(37)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94786279027645,
+ 0.01671198321288,
+ -0.49564509347506,
+ -0.83623066829264,
+ -0.48247631817455,
+ 0.82733304482077,
+ 0.93617571284942,
+ -1.23859265328301,
+ 1.00997488447695,
+ -120.168065066558,
+ 0.93226706980975,
+ 122.025792496499
+ ],
+ [
+ "105",
+ "C",
+ "Bus(38)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94531942077989,
+ 0.01688645495991,
+ -0.49564662779498,
+ -0.83623025255608,
+ -0.48037561709187,
+ 0.82590060024219,
+ 0.93240352328462,
+ -1.37988466295889,
+ 1.0126864999869,
+ -120.162785288312,
+ 0.92859095634196,
+ 122.108011773759
+ ],
+ [
+ "106",
+ "C",
+ "Bus(39)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97451790320422,
+ 0.00663811333026,
+ -0.45932948762864,
+ -0.83312954416839,
+ -0.47521676709091,
+ 0.85231315758314,
+ 0.95998743430731,
+ 2.12541504166052,
+ 0.93372926174445,
+ -120.543948256048,
+ 1.00853891291232,
+ 119.094766981373
+ ],
+ [
+ "107",
+ "C",
+ "Bus(4)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97911896867433,
+ -0.0054653996114,
+ -0.5103507846656,
+ -0.87124247613633,
+ -0.48723880647912,
+ 0.83350397426291,
+ 1.00914435151189,
+ -1.38214663831429,
+ 1.01158551027595,
+ -118.366809498717,
+ 0.93430813023573,
+ 119.319201137979
+ ],
+ [
+ "108",
+ "C",
+ "Bus(40)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99222206306548,
+ -0.01631931852092,
+ -0.44409924005425,
+ -0.84891724687403,
+ -0.47398967487535,
+ 0.83429009706148,
+ 1.02362643876075,
+ 1.87140905272302,
+ 0.89968914691482,
+ -117.342922361953,
+ 0.98888192724561,
+ 116.622707353217
+ ],
+ [
+ "109",
+ "C",
+ "Bus(41)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99409925048167,
+ -0.0167067518069,
+ -0.44217350658995,
+ -0.84807354692459,
+ -0.4741697039835,
+ 0.83506241117502,
+ 1.03319173496878,
+ 1.90769024365455,
+ 0.89336527159826,
+ -116.861474147156,
+ 0.98745957011468,
+ 116.179352174711
+ ],
+ [
+ "110",
+ "C",
+ "Bus(42)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97988259468373,
+ -0.0033677101054,
+ -0.50909238475909,
+ -0.86907900126429,
+ -0.48322427534924,
+ 0.83325765902928,
+ 1.01420625867014,
+ -1.43090007400217,
+ 1.00977884760273,
+ -118.06573091994,
+ 0.92736311714398,
+ 118.973323438004
+ ],
+ [
+ "111",
+ "C",
+ "Bus(43)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99283327987219,
+ -0.01101509600299,
+ -0.45786854521353,
+ -0.85303893455004,
+ -0.47805406501405,
+ 0.84229653011377,
+ 1.0081200809582,
+ 1.25403430747461,
+ 0.9318949400444,
+ -118.371445187122,
+ 0.99028167420387,
+ 117.875544068685
+ ],
+ [
+ "112",
+ "C",
+ "Bus(44)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97762466253366,
+ -0.00618398983484,
+ -0.51116674261515,
+ -0.87194415391841,
+ -0.48389565428438,
+ 0.82893555978195,
+ 1.01442601021539,
+ -1.74614413822902,
+ 1.01463713608952,
+ -117.903673029106,
+ 0.92036211613004,
+ 119.097200164919
+ ],
+ [
+ "113",
+ "C",
+ "Bus(45)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97918093624554,
+ 7.76219912849786e-5,
+ -0.48992984819742,
+ -0.85301294244419,
+ -0.48685879278254,
+ 0.83591782063003,
+ 0.98496187884708,
+ -0.8869552184354,
+ 0.99424563246938,
+ -119.148162679174,
+ 0.95127432781656,
+ 120.3873569192
+ ],
+ [
+ "114",
+ "C",
+ "Bus(46)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94664315176139,
+ 0.01702910924561,
+ -0.4951180238428,
+ -0.83541179702292,
+ -0.48247597832997,
+ 0.82733325309672,
+ 0.93385844812034,
+ -1.06896241214565,
+ 1.00736865726012,
+ -120.2881389473,
+ 0.93493657367362,
+ 121.998721300051
+ ],
+ [
+ "115",
+ "C",
+ "Bus(47)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97832173010964,
+ -0.00568036307171,
+ -0.50978802941921,
+ -0.87142613623169,
+ -0.48499527068464,
+ 0.83076229546152,
+ 1.00998934242945,
+ -1.34308176573782,
+ 1.0099161559506,
+ -118.274780203356,
+ 0.93078022260403,
+ 119.165805382234
+ ],
+ [
+ "116",
+ "C",
+ "Bus(48)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.94922466861202,
+ 0.01228416507318,
+ -0.50324207162358,
+ -0.84156794993458,
+ -0.4906390557292,
+ 0.82503595028204,
+ 0.94335518022796,
+ -1.96710481308216,
+ 1.02233589042523,
+ -119.902946275072,
+ 0.92523030479096,
+ 122.495490628399
+ ],
+ [
+ "117",
+ "C",
+ "Bus(49)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.93873967246797,
+ 0.0194886943138,
+ -0.4979783157101,
+ -0.83407255672331,
+ -0.47927567780975,
+ 0.82553313381368,
+ 0.92333444365822,
+ -1.46453108273148,
+ 1.0165047910599,
+ -120.354227444841,
+ 0.92586665714921,
+ 122.317828990219
+ ],
+ [
+ "118",
+ "C",
+ "Bus(5)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97988265467635,
+ -0.00336786915994,
+ -0.50909256254615,
+ -0.86907898113367,
+ -0.48322418016955,
+ 0.83325778919231,
+ 1.01420632595629,
+ -1.43090925389363,
+ 1.00977891644704,
+ -118.065740062581,
+ 0.92736317891811,
+ 118.973314375898
+ ],
+ [
+ "119",
+ "C",
+ "Bus(50)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99189563773213,
+ -0.01082392496863,
+ -0.4551160607919,
+ -0.85023901442394,
+ -0.47796270156324,
+ 0.84191085465382,
+ 1.01193313340475,
+ 1.52355300739898,
+ 0.92183358644104,
+ -118.187527463665,
+ 0.99186172420025,
+ 117.519028929767
+ ],
+ [
+ "120",
+ "C",
+ "Bus(51)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.99409854029526,
+ -0.01670469091951,
+ -0.44695153988736,
+ -0.85221578348598,
+ -0.47417066170518,
+ 0.83506268504329,
+ 1.02210594002838,
+ 1.54433765991876,
+ 0.91029255956307,
+ -117.428288163954,
+ 0.98619753856542,
+ 116.922446958732
+ ],
+ [
+ "121",
+ "C",
+ "Bus(52)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98363445650615,
+ -0.0062976814961,
+ -0.50935029498507,
+ -0.8722537836338,
+ -0.49567604366463,
+ 0.8428535877809,
+ 1.00087916459338,
+ -1.05784902355725,
+ 1.01220538510609,
+ -119.100316208759,
+ 0.95868538215948,
+ 119.94889214175
+ ],
+ [
+ "122",
+ "C",
+ "Bus(53)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98125330678511,
+ -0.00443983583225,
+ -0.50918644157589,
+ -0.87024048517953,
+ -0.4882483340745,
+ 0.83713558051328,
+ 1.00847275303165,
+ -1.24650790342386,
+ 1.01024881479423,
+ -118.510104967749,
+ 0.94051730373751,
+ 119.369521790391
+ ],
+ [
+ "123",
+ "C",
+ "Bus(54)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97911893926732,
+ -0.00546528018363,
+ -0.51035063764409,
+ -0.87124251380658,
+ -0.48723888257229,
+ 0.83350386679099,
+ 1.00914431235661,
+ -1.38213879829989,
+ 1.0115854594016,
+ -118.366802003353,
+ 0.93430809398431,
+ 119.319208188982
+ ],
+ [
+ "124",
+ "C",
+ "Bus(55)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97762484169999,
+ -0.00618293149519,
+ -0.5111653776789,
+ -0.87194398317613,
+ -0.48653236761552,
+ 0.8309615226479,
+ 1.00961771107555,
+ -1.47696222833199,
+ 1.01252479836991,
+ -118.266705452338,
+ 0.92996203114442,
+ 119.283598382598
+ ],
+ [
+ "125",
+ "C",
+ "Bus(56)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.98455423419364,
+ 0.00249497166,
+ -0.4935429023399,
+ -0.85573771029933,
+ -0.48947867309762,
+ 0.84583646953353,
+ 0.98543845194993,
+ -0.74858225166698,
+ 1.00081135572619,
+ -119.494718238799,
+ 0.96357770322512,
+ 120.474187355581
+ ],
+ [
+ "126",
+ "C",
+ "Bus(6)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97762487399805,
+ -0.00618306559651,
+ -0.51116554467847,
+ -0.87194394023073,
+ -0.48653228302678,
+ 0.83096164432064,
+ 1.00961775538812,
+ -1.4769710901982,
+ 1.01252485624127,
+ -118.26671390861,
+ 0.92996207180512,
+ 119.283590439241
+ ],
+ [
+ "127",
+ "C",
+ "Bus(7)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97762472112788,
+ -0.00618414979405,
+ -0.5111669217961,
+ -0.87194413472501,
+ -0.48389556063664,
+ 0.82893568868653,
+ 1.01442607757625,
+ -1.74615332128154,
+ 1.01463720528153,
+ -117.903682167774,
+ 0.92036217736403,
+ 119.097191102104
+ ],
+ [
+ "128",
+ "C",
+ "Bus(8)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.97832175182686,
+ -0.00568045475658,
+ -0.50978814246664,
+ -0.87142610743863,
+ -0.48499521296222,
+ 0.83076237704947,
+ 1.00998937230594,
+ -1.34308777964823,
+ 1.00991619466743,
+ -118.274785939318,
+ 0.93078024986009,
+ 119.165799977308
+ ],
+ [
+ "129",
+ "C",
+ "Bus(9)",
+ "72",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.9845542881546,
+ 0.00249481763883,
+ -0.49354307015205,
+ -0.85573766738745,
+ -0.48947856027923,
+ 0.84583660426393,
+ 0.98543849655028,
+ -0.74859165020491,
+ 1.0008114137797,
+ -119.494728151275,
+ 0.96357776088538,
+ 120.474178346264
+ ]
]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["130", "C", "LV source", "72", "422", null, 0, 0, 0, 0, "SL", 0, 1, 1]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["130", "C", "LV source", "72", "422", null, 0, 0, 0, 0, "SL", 0, 1, 1]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["131", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["131", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -301,7 +2523,26 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rX:4", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3", "rY:4"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rX:2",
+ "rX:3",
+ "rX:4",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1",
+ "rY:2",
+ "rY:3",
+ "rY:4"
+ ],
"Values": [
["262", "C", "GCO_1", "133", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 105, 105, null, null, null],
["263", "C", "GCO_2", "133", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 105, 105, null, null, null],
@@ -317,22 +2558,250 @@
["273", "C", "GCO_2", "143", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 105, 105, null, null, null],
["274", "C", "GCO_1", "145", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null],
["275", "C", "GCO_2", "145", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null],
- ["276", "C", "GCO_1", "147", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["277", "C", "GCO_2", "147", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["278", "C", "GCO_1", "149", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["279", "C", "GCO_2", "149", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null],
+ [
+ "276",
+ "C",
+ "GCO_1",
+ "147",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "277",
+ "C",
+ "GCO_2",
+ "147",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "278",
+ "C",
+ "GCO_1",
+ "149",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "279",
+ "C",
+ "GCO_2",
+ "149",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["280", "C", "GCO_1", "151", 1, 0, "2", 175, 175, null, null, null, "2", 144.375, 144.375, null, null, null],
["281", "C", "GCO_2", "151", 1, 0, "2", 175, 175, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["282", "C", "GCO_1", "152", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["283", "C", "GCO_2", "152", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["284", "C", "GCO_1", "154", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["285", "C", "GCO_2", "154", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["286", "C", "GCO_1", "156", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["287", "C", "GCO_2", "156", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null],
+ [
+ "282",
+ "C",
+ "GCO_1",
+ "152",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 144.375,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "283",
+ "C",
+ "GCO_2",
+ "152",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 144.375,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "284",
+ "C",
+ "GCO_1",
+ "154",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 144.375,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "285",
+ "C",
+ "GCO_2",
+ "154",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 144.375,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "286",
+ "C",
+ "GCO_1",
+ "156",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "287",
+ "C",
+ "GCO_2",
+ "156",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["288", "C", "GCO_1", "158", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 105, 105, null, null, null],
["289", "C", "GCO_2", "158", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 105, 105, null, null, null],
- ["290", "C", "GCO_1", "160", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 83.125, 83.125, null, null, null],
- ["291", "C", "GCO_2", "160", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 83.125, 83.125, null, null, null],
+ [
+ "290",
+ "C",
+ "GCO_1",
+ "160",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 83.125,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "291",
+ "C",
+ "GCO_2",
+ "160",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 83.125,
+ 83.125,
+ null,
+ null,
+ null
+ ],
["292", "C", "GCO_1", "162", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 70, 70, null, null, null],
["293", "C", "GCO_2", "162", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 70, 70, null, null, null],
["294", "C", "GCO_1", "164", 1, 0, "2", 65.625, 65.625, null, null, null, "2", 48.125, 48.125, null, null, null],
@@ -341,16 +2810,168 @@
["297", "C", "GCO_2", "166", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 26.25, 26.25, null, null, null],
["298", "C", "GCO_1", "168", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 83.125, 83.125, null, null, null],
["299", "C", "GCO_2", "168", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 83.125, 83.125, null, null, null],
- ["300", "C", "GCO_1", "170", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 39.375, 39.375, null, null, null],
- ["301", "C", "GCO_2", "170", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 39.375, 39.375, null, null, null],
+ [
+ "300",
+ "C",
+ "GCO_1",
+ "170",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "301",
+ "C",
+ "GCO_2",
+ "170",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null
+ ],
["302", "C", "GCO_1", "172", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 105, 105, null, null, null],
["303", "C", "GCO_2", "172", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 105, 105, null, null, null],
- ["304", "C", "GCO_1", "174", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 83.125, 83.125, null, null, null],
- ["305", "C", "GCO_2", "174", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 83.125, 83.125, null, null, null],
- ["306", "C", "GCO_1", "176", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 39.375, 39.375, null, null, null],
- ["307", "C", "GCO_2", "176", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 39.375, 39.375, null, null, null],
- ["308", "C", "GCO_1", "178", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["309", "C", "GCO_2", "178", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null],
+ [
+ "304",
+ "C",
+ "GCO_1",
+ "174",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 83.125,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "305",
+ "C",
+ "GCO_2",
+ "174",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 83.125,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "306",
+ "C",
+ "GCO_1",
+ "176",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "307",
+ "C",
+ "GCO_2",
+ "176",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "308",
+ "C",
+ "GCO_1",
+ "178",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "309",
+ "C",
+ "GCO_2",
+ "178",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["310", "C", "GCO_1", "180", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 61.25, 61.25, null, null, null],
["311", "C", "GCO_2", "180", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 61.25, 61.25, null, null, null],
["312", "C", "GCO_1", "182", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 105, 105, null, null, null],
@@ -358,25 +2979,253 @@
["314", "C", "GCO_1", "184", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 13.125, 26.25, null, null, null],
["315", "C", "GCO_1", "185", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 70, 83.125, null, null, null],
["316", "C", "GCO_1", "186", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 26.25, 39.375, null, null, null],
- ["317", "C", "GCO_1", "187", 1, 0, "2", 170.625, 196.875, null, null, null, "2", 74.375, 83.125, null, null, null],
+ [
+ "317",
+ "C",
+ "GCO_1",
+ "187",
+ 1,
+ 0,
+ "2",
+ 170.625,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 74.375,
+ 83.125,
+ null,
+ null,
+ null
+ ],
["318", "C", "GCO_1", "188", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 91.875, 105, null, null, null],
["319", "C", "GCO_1", "189", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 70, 83.125, null, null, null],
["320", "C", "GCO_1", "190", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 26.25, 39.375, null, null, null],
- ["321", "C", "GCO_1", "191", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 113.75, 126.875, null, null, null],
- ["322", "C", "GCO_1", "192", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 172.8125, 183.75, null, null, null],
- ["323", "C", "GCO_2", "192", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 172.8125, 161.875, null, null, null],
+ [
+ "321",
+ "C",
+ "GCO_1",
+ "191",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 113.75,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "322",
+ "C",
+ "GCO_1",
+ "192",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 172.8125,
+ 183.75,
+ null,
+ null,
+ null
+ ],
+ [
+ "323",
+ "C",
+ "GCO_2",
+ "192",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 172.8125,
+ 161.875,
+ null,
+ null,
+ null
+ ],
["324", "C", "GCO_1", "193", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 48.125, 61.25, null, null, null],
- ["325", "C", "GCO_1", "194", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 157.5, 144.375, null, null, null],
+ [
+ "325",
+ "C",
+ "GCO_1",
+ "194",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 157.5,
+ 144.375,
+ null,
+ null,
+ null
+ ],
["326", "C", "GCO_1", "195", 1, 0, "2", 100.625, 87.5, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["327", "C", "GCO_1", "196", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 170.625, 183.75, null, null, null],
+ [
+ "327",
+ "C",
+ "GCO_1",
+ "196",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 170.625,
+ 183.75,
+ null,
+ null,
+ null
+ ],
["328", "C", "GCO_1", "198", 1, 0, "2", 70, 70, null, null, null, "2", 188.125, 183.75, null, null, null],
- ["329", "C", "GCO_1", "199", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 153.125, 161.875, null, null, null],
- ["330", "C", "GCO_2", "199", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 153.125, 144.375, null, null, null],
- ["331", "C", "GCO_1", "200", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 135.625, 144.375, null, null, null],
- ["332", "C", "GCO_2", "200", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 135.625, 126.875, null, null, null],
- ["333", "C", "GCO_1", "201", 1, 0, "4", 30.625, 30.625, 39.375, 39.375, null, "4", 111.5625, 118.125, 118.125, 126.875, null],
+ [
+ "329",
+ "C",
+ "GCO_1",
+ "199",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 153.125,
+ 161.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "330",
+ "C",
+ "GCO_2",
+ "199",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 153.125,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "331",
+ "C",
+ "GCO_1",
+ "200",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "332",
+ "C",
+ "GCO_2",
+ "200",
+ 1,
+ 0,
+ "2",
+ 39.375,
+ 39.375,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "333",
+ "C",
+ "GCO_1",
+ "201",
+ 1,
+ 0,
+ "4",
+ 30.625,
+ 30.625,
+ 39.375,
+ 39.375,
+ null,
+ "4",
+ 111.5625,
+ 118.125,
+ 118.125,
+ 126.875,
+ null
+ ],
["334", "C", "GCO_2", "201", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 111.5625, 105, null, null, null],
- ["335", "C", "GCO_1", "202", 1, 0, "4", 48.125, 48.125, 39.375, 39.375, null, "4", 111.5625, 118.125, 118.125, 126.875, null],
+ [
+ "335",
+ "C",
+ "GCO_1",
+ "202",
+ 1,
+ 0,
+ "4",
+ 48.125,
+ 48.125,
+ 39.375,
+ 39.375,
+ null,
+ "4",
+ 111.5625,
+ 118.125,
+ 118.125,
+ 126.875,
+ null
+ ],
["336", "C", "GCO_2", "202", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 111.5625, 105, null, null, null],
["337", "C", "GCO_1", "204", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 87.5, 105, null, null, null],
["338", "C", "GCO_2", "204", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 87.5, 70, null, null, null],
@@ -400,40 +3249,468 @@
["356", "C", "GCO_2", "241", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 94.0625, 83.125, null, null, null],
["357", "C", "GCO_1", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 83.125, 105, null, null, null],
["358", "C", "GCO_2", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 83.125, 61.25, null, null, null],
- ["359", "C", "GCO_1", "243", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 50.3125, 61.25, null, null, null],
- ["360", "C", "GCO_2", "243", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 50.3125, 39.375, null, null, null],
+ [
+ "359",
+ "C",
+ "GCO_1",
+ "243",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 50.3125,
+ 61.25,
+ null,
+ null,
+ null
+ ],
+ [
+ "360",
+ "C",
+ "GCO_2",
+ "243",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 50.3125,
+ 39.375,
+ null,
+ null,
+ null
+ ],
["361", "C", "GCO_1", "244", 1, 0, "2", 120.3125, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null],
- ["362", "C", "GCO_2", "244", 1, 0, "4", 120.3125, 131.25, 131.25, 153.125, null, "4", 61.25, 61.25, 39.375, 39.375, null],
- ["363", "C", "GCO_1", "246", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 164.0625, 183.75, null, null, null],
- ["364", "C", "GCO_2", "246", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 164.0625, 144.375, null, null, null],
- ["365", "C", "GCO_1", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 135.625, 144.375, null, null, null],
- ["366", "C", "GCO_2", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 135.625, 126.875, null, null, null],
- ["367", "C", "GCO_1", "248", 1, 0, "2", 142.1875, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["368", "C", "GCO_2", "248", 1, 0, "2", 142.1875, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["369", "C", "GCO_1", "249", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 115.9375, 126.875, null, null, null],
+ [
+ "362",
+ "C",
+ "GCO_2",
+ "244",
+ 1,
+ 0,
+ "4",
+ 120.3125,
+ 131.25,
+ 131.25,
+ 153.125,
+ null,
+ "4",
+ 61.25,
+ 61.25,
+ 39.375,
+ 39.375,
+ null
+ ],
+ [
+ "363",
+ "C",
+ "GCO_1",
+ "246",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 164.0625,
+ 183.75,
+ null,
+ null,
+ null
+ ],
+ [
+ "364",
+ "C",
+ "GCO_2",
+ "246",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 164.0625,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "365",
+ "C",
+ "GCO_1",
+ "247",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "366",
+ "C",
+ "GCO_2",
+ "247",
+ 1,
+ 0,
+ "2",
+ 131.25,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "367",
+ "C",
+ "GCO_1",
+ "248",
+ 1,
+ 0,
+ "2",
+ 142.1875,
+ 131.25,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "368",
+ "C",
+ "GCO_2",
+ "248",
+ 1,
+ 0,
+ "2",
+ 142.1875,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "369",
+ "C",
+ "GCO_1",
+ "249",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 115.9375,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["370", "C", "GCO_2", "249", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 115.9375, 105, null, null, null],
- ["371", "C", "GCO_1", "250", 1, 0, "2", 159.6875, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["372", "C", "GCO_2", "250", 1, 0, "5", 159.6875, 166.25, 166.25, 175, 175, "5", 126.875, 126.875, 135.625, 135.625, 144.375],
+ [
+ "371",
+ "C",
+ "GCO_1",
+ "250",
+ 1,
+ 0,
+ "2",
+ 159.6875,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "372",
+ "C",
+ "GCO_2",
+ "250",
+ 1,
+ 0,
+ "5",
+ 159.6875,
+ 166.25,
+ 166.25,
+ 175,
+ 175,
+ "5",
+ 126.875,
+ 126.875,
+ 135.625,
+ 135.625,
+ 144.375
+ ],
["373", "C", "GCO_1", "251", 1, 0, "2", 185.9375, 175, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["374", "C", "GCO_2", "251", 1, 0, "2", 185.9375, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null],
- ["375", "C", "GCO_1", "252", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 135.625, 144.375, null, null, null],
- ["376", "C", "GCO_2", "252", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 135.625, 126.875, null, null, null],
- ["377", "C", "GCO_1", "253", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 115.9375, 126.875, null, null, null],
+ [
+ "374",
+ "C",
+ "GCO_2",
+ "251",
+ 1,
+ 0,
+ "2",
+ 185.9375,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 144.375,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "375",
+ "C",
+ "GCO_1",
+ "252",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 144.375,
+ null,
+ null,
+ null
+ ],
+ [
+ "376",
+ "C",
+ "GCO_2",
+ "252",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 135.625,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "377",
+ "C",
+ "GCO_1",
+ "253",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 115.9375,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["378", "C", "GCO_2", "253", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 115.9375, 105, null, null, null],
["379", "C", "GCO_1", "254", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 94.0625, 105, null, null, null],
- ["380", "C", "GCO_2", "254", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 94.0625, 83.125, null, null, null],
- ["381", "C", "GCO_1", "255", 1, 0, "2", 218.75, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null],
- ["382", "C", "GCO_2", "255", 1, 0, "2", 218.75, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null],
+ [
+ "380",
+ "C",
+ "GCO_2",
+ "254",
+ 1,
+ 0,
+ "2",
+ 196.875,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 94.0625,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "381",
+ "C",
+ "GCO_1",
+ "255",
+ 1,
+ 0,
+ "2",
+ 218.75,
+ 196.875,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
+ [
+ "382",
+ "C",
+ "GCO_2",
+ "255",
+ 1,
+ 0,
+ "2",
+ 218.75,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 126.875,
+ 126.875,
+ null,
+ null,
+ null
+ ],
["383", "C", "GCO_1", "256", 1, 0, "2", 207.8125, 196.875, null, null, null, "2", 105, 105, null, null, null],
- ["384", "C", "GCO_2", "256", 1, 0, "4", 207.8125, 218.75, 218.75, 240.625, null, "4", 105, 105, 83.125, 83.125, null],
- ["385", "C", "GCO_1", "257", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 72.1875, 83.125, null, null, null],
- ["386", "C", "GCO_2", "257", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 72.1875, 61.25, null, null, null],
+ [
+ "384",
+ "C",
+ "GCO_2",
+ "256",
+ 1,
+ 0,
+ "4",
+ 207.8125,
+ 218.75,
+ 218.75,
+ 240.625,
+ null,
+ "4",
+ 105,
+ 105,
+ 83.125,
+ 83.125,
+ null
+ ],
+ [
+ "385",
+ "C",
+ "GCO_1",
+ "257",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 72.1875,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "386",
+ "C",
+ "GCO_2",
+ "257",
+ 1,
+ 0,
+ "2",
+ 240.625,
+ 240.625,
+ null,
+ null,
+ null,
+ "2",
+ 72.1875,
+ 61.25,
+ null,
+ null,
+ null
+ ],
["387", "C", "GCO_1", "258", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 56.875, 70, null, null, null],
["388", "C", "GCO_1", "259", 1, 0, "2", 65.625, 65.625, null, null, null, "2", 35, 48.125, null, null, null]
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["389", "C", "LV network", null, "0", 1, null, "0", "0"],
["390", "C", "MV Line", null, "0", 1, null, "0", "0"],
@@ -574,10 +3851,121 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["520", "C", "Overhead ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0734, 0.233639, 0.188, 0.0812, 0.258467, 0.4029, 0.3522, 1.121087, 0, 0.2894, 0.921188, 50.7512, 0.161546, 0.038950, 1.9768, 44.9735, 0.143155, 1.9768, 107.0929, 0.340887, 0, 0],
- ["521", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0]
+ [
+ "520",
+ "C",
+ "Overhead ZY full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0734,
+ 0.233639,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2894,
+ 0.921188,
+ 50.7512,
+ 0.161546,
+ 0.03895,
+ 1.9768,
+ 44.9735,
+ 0.143155,
+ 1.9768,
+ 107.0929,
+ 0.340887,
+ 0,
+ 0
+ ],
+ [
+ "521",
+ "C",
+ "ZY full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2471,
+ 0.786543,
+ 199.5807,
+ 0.635285,
+ 0.001853,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 116.5693,
+ 0.371051,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json
index 5d4ac642..78a4b926 100644
--- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json
+++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json
@@ -1,46 +1,216 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:i", "c:ss:i", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:i",
+ "c:ss:i",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["2", "C", "Low-Voltage Load", null, null, "24", 3, 50, 50, null, 0, 30, 30, null, 0, 10, 10, null, 0, 10, 10, null, 0, null, null, null, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.864794245554, 0.864794245554, 0.864794245554, 0.864794245554, 0.47981484535057, 0.47981484535057, 0.47981484535057, 0.47981484535057, 0.07297257389810, 0.07297257389810, 0.07297257389810, 0.07297257389810, 29.0228809876008, 29.0228809876008, 29.0228809876008, 29.0228809876008]
+ [
+ "2",
+ "C",
+ "Low-Voltage Load",
+ null,
+ null,
+ "24",
+ 3,
+ 50,
+ 50,
+ null,
+ 0,
+ 30,
+ 30,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ null,
+ null,
+ null,
+ 0.05,
+ -3.46944695195361e-18,
+ 0.05,
+ -3.46944695195361e-18,
+ 0.05,
+ -3.46944695195361e-18,
+ 0.05,
+ -3.46944695195361e-18,
+ 0.864794245554,
+ 0.864794245554,
+ 0.864794245554,
+ 0.864794245554,
+ 0.47981484535057,
+ 0.47981484535057,
+ 0.47981484535057,
+ 0.47981484535057,
+ 0.0729725738981,
+ 0.0729725738981,
+ 0.0729725738981,
+ 0.0729725738981,
+ 29.0228809876008,
+ 29.0228809876008,
+ 29.0228809876008,
+ 29.0228809876008
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["3", "C", "MV/LV transformer", null, 50]
- ]
+ "Values": [["3", "C", "MV/LV transformer", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:phiuln:A", "m:phiuln:B", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:phiuln:A",
+ "m:phiuln:B",
+ "m:phiuln:C"
+ ],
"Values": [
- ["4", "C", "Terminal(1)", "3", null, 0, 1, 0.4, 0, 0, 0, 0.864794245554, 0.47981484535057, 0.864794245554, 0.47981484535057, 0.864794245554, 0.47981484535057, null, null, null],
- ["5", "C", "Terminal", "3", null, 0, 0, 20, 0, 0, 0, 1, -6.67567952816065e-20, 1, -6.67567952816065e-20, 1, -6.67567952816065e-20, null, null, null]
+ [
+ "4",
+ "C",
+ "Terminal(1)",
+ "3",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.864794245554,
+ 0.47981484535057,
+ 0.864794245554,
+ 0.47981484535057,
+ 0.864794245554,
+ 0.47981484535057,
+ null,
+ null,
+ null
+ ],
+ [
+ "5",
+ "C",
+ "Terminal",
+ "3",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 1,
+ -6.67567952816065e-20,
+ 1,
+ -6.67567952816065e-20,
+ 1,
+ -6.67567952816065e-20,
+ null,
+ null,
+ null
+ ]
]
},
"ElmTr2": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"],
- "Values": [
- ["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]
- ]
+ "Values": [["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["8", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["8", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -55,7 +225,20 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1"
+ ],
"Values": [
["16", "C", "GCO_1", "13", 1, 0, "2", 56.875, 56.875, "2", 262.5, 240.625],
["17", "C", "GCO_1", "14", 1, 0, "2", 83.125, 83.125, "2", 140, 153.125],
@@ -64,7 +247,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["20", "C", "MV Line", null, "0", 1, null, "0", "0"],
["21", "C", "MV network", null, "0", 1, null, "0", "0"],
@@ -81,9 +274,65 @@
]
},
"TypTr2": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "frnom",
+ "strn",
+ "nt2ph",
+ "tr2cn_h",
+ "tr2cn_l",
+ "nt2ag",
+ "utrn_h",
+ "utrn_l",
+ "uktr",
+ "pcutr",
+ "uk0tr",
+ "ur0tr",
+ "pfe",
+ "curmg",
+ "zx0hl_n",
+ "rtox0_n",
+ "tapchtype",
+ "tap_side",
+ "dutap",
+ "phitr",
+ "nntap0",
+ "ntpmn",
+ "ntpmx"
+ ],
"Values": [
- ["27", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "27",
+ "C",
+ "Transformer 100 kVA Dyn11",
+ null,
+ 50,
+ 0.1,
+ 3,
+ "D",
+ "YN",
+ 11,
+ 20,
+ 0.4,
+ 4,
+ 2.15,
+ 4,
+ 2.15,
+ 0.21,
+ 2.5,
+ 100,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json
index 4ffed8ac..4501e0ee 100644
--- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json
+++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json
@@ -1,20 +1,31 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "Line(0)", "71", "524", "453", "412", 0.183941, 1, 0.4, "0", "0"],
["3", "C", "Line(10)", "71", "523", "495", "418", 0.143065, 1, 0.4, "0", "0"],
["4", "C", "Line(11)", "71", "524", "498", "424", 0.153284, 1, 0.4, "0", "0"],
["5", "C", "Line(12)", "71", "523", "502", "456", 0.163503, 1, 0.4, "0", "0"],
- ["6", "C", "Line(13)", "71", "524", "463", "487", 0.091970, 1, 0.4, "0", "0"],
+ ["6", "C", "Line(13)", "71", "524", "463", "487", 0.09197, 1, 0.4, "0", "0"],
["7", "C", "Line(14)", "71", "523", "505", "512", 0.173722, 1, 0.4, "0", "0"],
- ["8", "C", "Line(15)", "71", "524", "469", "513", 0.091970, 1, 0.4, "0", "0"],
+ ["8", "C", "Line(15)", "71", "524", "469", "513", 0.09197, 1, 0.4, "0", "0"],
["9", "C", "Line(16)", "71", "523", "478", "514", 0.143065, 1, 0.4, "0", "0"],
["10", "C", "Line(17)", "71", "524", "518", "422", 0.122627, 1, 0.4, "0", "0"],
["11", "C", "Line(18)", "71", "523", "509", "515", 0.183941, 1, 0.4, "0", "0"],
@@ -23,14 +34,14 @@
["14", "C", "Line(21)", "71", "524", "435", "417", 0.112408, 1, 0.4, "0", "0"],
["15", "C", "Line(22)", "71", "523", "438", "402", 0.081751, 1, 0.4, "0", "0"],
["16", "C", "Line(23)", "71", "524", "442", "404", 0.112408, 1, 0.4, "0", "0"],
- ["17", "C", "Line(24)", "71", "523", "446", "405", 0.091970, 1, 0.4, "0", "0"],
+ ["17", "C", "Line(24)", "71", "523", "446", "405", 0.09197, 1, 0.4, "0", "0"],
["18", "C", "Line(25)", "71", "524", "475", "406", 0.081751, 1, 0.4, "0", "0"],
["19", "C", "Line(26)", "71", "523", "481", "407", 0.163503, 1, 0.4, "0", "0"],
["20", "C", "Line(27)", "71", "524", "450", "408", 0.204379, 1, 0.4, "0", "0"],
["21", "C", "Line(28)", "71", "523", "484", "409", 0.153284, 1, 0.4, "0", "0"],
- ["22", "C", "Line(30)", "71", "523", "396", "426", 0.091970, 1, 0.4, "0", "0"],
- ["23", "C", "Line(31)", "71", "524", "425", "416", 0.091970, 1, 0.4, "0", "0"],
- ["24", "C", "Line(32)", "71", "523", "427", "397", 0.091970, 1, 0.4, "0", "0"],
+ ["22", "C", "Line(30)", "71", "523", "396", "426", 0.09197, 1, 0.4, "0", "0"],
+ ["23", "C", "Line(31)", "71", "524", "425", "416", 0.09197, 1, 0.4, "0", "0"],
+ ["24", "C", "Line(32)", "71", "523", "427", "397", 0.09197, 1, 0.4, "0", "0"],
["25", "C", "Line(33)", "71", "524", "398", "429", 0.071532, 1, 0.4, "0", "0"],
["26", "C", "Line(34)", "71", "523", "399", "467", 0.112408, 1, 0.4, "0", "0"],
["27", "C", "Line(35)", "71", "524", "428", "410", 0.081751, 1, 0.4, "0", "0"],
@@ -47,12 +58,12 @@
["38", "C", "Line(45)", "71", "523", "504", "506", 0.071532, 1, 0.4, "0", "0"],
["39", "C", "Line(46)", "71", "524", "507", "470", 0.132846, 1, 0.4, "0", "0"],
["40", "C", "Line(47)", "71", "523", "508", "479", 0.071532, 1, 0.4, "0", "0"],
- ["41", "C", "Line(48)", "71", "524", "423", "510", 0.194160, 1, 0.4, "0", "0"],
+ ["41", "C", "Line(48)", "71", "524", "423", "510", 0.19416, 1, 0.4, "0", "0"],
["42", "C", "Line(49)", "71", "523", "511", "432", 0.102189, 1, 0.4, "0", "0"],
["43", "C", "Line(5)", "71", "524", "488", "413", 0.112408, 1, 0.4, "0", "0"],
["44", "C", "Line(50)", "71", "523", "433", "473", 0.183941, 1, 0.4, "0", "0"],
["45", "C", "Line(51)", "71", "524", "434", "436", 0.061313, 1, 0.4, "0", "0"],
- ["46", "C", "Line(52)", "71", "523", "437", "439", 0.194160, 1, 0.4, "0", "0"],
+ ["46", "C", "Line(52)", "71", "523", "437", "439", 0.19416, 1, 0.4, "0", "0"],
["47", "C", "Line(53)", "71", "524", "440", "443", 0.061313, 1, 0.4, "0", "0"],
["48", "C", "Line(54)", "71", "523", "444", "447", 0.153284, 1, 0.4, "0", "0"],
["49", "C", "Line(55)", "71", "524", "448", "476", 0.051094, 1, 0.4, "0", "0"],
@@ -61,115 +72,2294 @@
["52", "C", "Line(58)", "71", "523", "452", "485", 0.173722, 1, 0.4, "0", "0"],
["53", "C", "Line(59)", "71", "524", "520", "395", 0.051094, 1, 0.4, "0", "0"],
["54", "C", "Line(6)", "71", "524", "491", "414", 0.163503, 1, 0.4, "0", "0"],
- ["55", "C", "Line(7)", "71", "523", "460", "415", 0.194160, 1, 0.4, "0", "0"],
+ ["55", "C", "Line(7)", "71", "523", "460", "415", 0.19416, 1, 0.4, "0", "0"],
["56", "C", "Line(8)", "71", "524", "457", "411", 0.173722, 1, 0.4, "0", "0"],
["57", "C", "Line(9)", "71", "523", "519", "419", 0.081751, 1, 0.4, "0", "0"]
]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:r",
+ "c:sr:i",
+ "c:ss:r",
+ "c:ss:i",
+ "c:st:r",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["58", "C", "Low-Voltage Load(1)", null, null, "459", 3, 17, 13.6000003814697, null, 0, 5, 4, null, 0, 10, 8, null, 0, 2, 1.60000002384186, null, 0, 0.004, 0.003, 0.008, 0.006, 0.0016, 0.0012, 0.00402634380871, 0.00267795417173, 0.00860854126987, 0.00640585349192, 0.00147534826508, 0.00124204483748, -0.00051023368809, -0.00012585333443, 0.82357617839502, 0.02065695098978, -0.76214453770094, -0.00178394036191, 0.42509922350128, -0.90828268374193, 0.49340377899830, -0.06190554882071, 0.02259208660980, 0.05114275059612, 0.00919786774376, 0.03674387298668, -6.32711231458867, -125.351109009569, 106.98856585999, 74.4934613593475],
- ["59", "C", "Low-Voltage Load(10)", null, null, "441", 3, 6, 3, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 3, null, 0, 0, 0, -0, 0, 0.003, 0.005196, 0, 0, 0, 0, 0.00343708677692, 0.00519924529924, -0.00043708681194, -3.09309129497711e-06, 0.76558723905433, -0.04364059025534, -0.78170461918559, -0.00230106967498, 0.43679868213079, -0.94096569326957, 0.48523283755517, 0.06448333438730, 0, 0, 0.02933292561379, 0.02933292561379, 0, 0, 91.6382636963027, -88.3617363036901],
- ["60", "C", "Low-Voltage Load(11)", null, null, "421", 3, 9.925281, 8.10000038146973, null, 0, 5, 4, null, 0, 2, 1.39999997615814, null, 0, 3, 2.69999980926514, null, 0, 0.004, 0.003, 0.0014, 0.001428, 0.0027, 0.001307, 0.00396809278151, 0.00300248026879, 0.00140686797591, 0.00141787068334, 0.00271353196356, 0.00132117266424, 1.15070297660765e-05, -5.56832176097651e-06, 0.81767474633782, -0.02445129058522, -0.79716358678646, -0.00581139890212, 0.43975622457147, -0.95570715233390, 0.50323960602153, 0.00137232374812, 0.02320778335033, 0.00904691006270, 0.01386269415549, 0.00927014317708, -8.84123317405202, -136.688737252611, 121.77561939168, -167.463998704183],
- ["61", "C", "Low-Voltage Load(12)", null, null, "517", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00480000016754, 0.00359999985669, 0, 0, 0, 0, -1.34607862648697e-21, -2.69604644255836e-21, 0.82279368860597, -0.02266298393744, -0.80227587867552, 2.69751179841199e-19, 0.44360159197186, -0.95358934747421, 0.50898833951770, 3.84230905334417e-19, 0.02779411593668, 0, 0, 0.02779411593668, -8.53898036542068, 0, 0, 171.461019634572],
- ["62", "C", "Low-Voltage Load(13)", null, null, "471", 3, 6, 6, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0, 0, 0, -0, 0.006, 9.747919e-12, 0, 0, 0, 0, 0.00628733737500, 0.00013992742969, -0.00028733747247, -0.00013992741994, 0.80444967124278, -0.03059444170348, -0.76909853711356, -0.04575060860300, 0.42702772283161, -0.96445602411502, 0.48232469936131, 0.00594428911382, 0, 0, 0.02999658922821, 0.02999658922821, 0, 0, 146.632013179806, -33.3679868201863],
- ["63", "C", "Low-Voltage Load(2)", null, null, "462", 3, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 0, 0, 0.0056, 0.005713, 0, 0, 0, 0, 0.00611796127843, 0.00609595263819, 0, 0, -0.00051796170029, -0.00038280981285, 0.82553396008294, 0.02201114854769, -0.76268385526606, -0.00828655479598, 0.42569815781937, -0.90650113817532, 0.49403843693684, -0.06711260874863, 0, 0.04124248718705, 0, 0.04124248718705, 0, -133.505806591306, 0, 46.494193408687],
- ["64", "C", "Low-Voltage Load(3)", null, null, "465", 3, 13.74773, 13.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 10, 10, null, 0, 0.0015, 0.002598, 0.002, -4.455597e-12, 0.01, 6.245085e-13, 0.00138065110391, 0.00253662236875, 0.00198961839198, -8.73255082002046e-05, 0.01043124449675, 0.00022401545844, -0.00030151415182, -7.5236253845363e-05, 0.80524277000662, -0.03000006296912, -0.77054915249085, -0.04221060121185, 0.43071503675549, -0.96081253614973, 0.48664912371671, 0.00447748473871, 0.01369416127492, 0.00897094233133, 0.04957330549428, 0.03170103260948, -33.2993020573034, -89.2752695014207, 146.494810834169, -20.065794312098],
- ["65", "C", "Low-Voltage Load(4)", null, null, "486", 3, 11.69615, 11.3999996185303, null, 0, 6, 5.39999961853027, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0.005399, 0.002615, -0, 0, 0.006, 1.931918e-11, 0.00547161713644, 0.00320082596691, 0, 0, 0.00619579581864, -0.00050884057071, -0.00026741415549, -7.66456226016393e-05, 0.74257058213117, -0.04818121496506, -0.77200959309647, 0.00940315435565, 0.43866890162354, -0.93272924532061, 0.49125499982478, 0.07969923720588, 0.03182631624956, 0, 0.02941772100839, 0.01500972326595, 0.24511558264472, 0, 152.225046126354, -112.722059018998],
- ["66", "C", "Low-Voltage Load(5)", null, null, "474", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, 0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00438910801124, 0.00208792591642, 0, 0, 0.00011089200340, 9.15238603230447e-05, 0.79939008867286, -0.02299110560037, -0.77715365407525, -0.00613622912906, 0.43484794046272, -0.94341248396424, 0.49001382723945, 0.02723403630957, 0, 0.02230201370366, 0, 0.02230201370366, 0, -116.836753433633, 0, 63.1632465663598],
- ["67", "C", "Low-Voltage Load(6)", null, null, "477", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00478103125742, 0.00413314843518, 0, 0, 0, 0, 1.89682948647312e-05, -0.00053314867782, 0.75130445601835, -0.04519257905743, -0.77611838543090, 0.01079800099813, 0.44003296080634, -0.93397963567086, 0.49070942516554, 0.07269991405069, 0.03143050911216, 0, 0, 0.03143050911216, -10.4858884785927, 0, 0, 169.5141115214],
- ["68", "C", "Low-Voltage Load(7)", null, null, "480", 3, 5.196152, 4.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 1, 1, null, 0, 0.0015, 0.002598, 0.002, -4.934897e-12, 0.001, 1.514344e-12, 0.00139603607238, 0.00253788886597, 0.00199507281215, -7.81637396862459e-05, 0.00103725695565, 2.16548550325227e-05, 7.16341406730101e-05, 0.00011669607962, 0.80483303978942, -0.02957645566969, -0.77105094551605, -0.03774703924052, 0.42786863718826, -0.96327142659988, 0.48353785386891, 0.00205885983421, 0.01376007616659, 0.00897096448299, 0.00493605884267, 0.01568435486354, -33.1896002545223, -89.5150582975027, 146.711553170092, 118.421747963015],
- ["69", "C", "Low-Voltage Load(8)", null, null, "483", 3, 7, 6.29999971389771, null, 0, 0, 0, null, 0, 0, 0, null, 0, 7, 6.29999971389771, null, 0, 0, 0, -0, 0, 0.0063, 0.003051, 0, 0, 0, 0, 0.00677978926689, 0.00274105779044, -0.00047978959148, 0.00031017195716, 0.76021401870065, -0.04576557095749, -0.77904704386040, -0.00421909877281, 0.43416708730840, -0.94252315156521, 0.48161124730874, 0.07142927079480, 0, 0, 0.03457373730546, 0.03457373730546, 0, 0, 126.262007469615, -53.7379925303781],
- ["70", "C", "Low-Voltage Load(9)", null, null, "455", 3, 40, 36, null, 0, 20, 18, null, 0, 10, 9, null, 0, 10, 9, null, 0, 0.018, 0.008717, 0.009, 0.004358, 0.009, 0.004358, 0.01866167346503, 0.00824057892441, 0.00902019602621, 0.00476936394924, 0.00866810971980, 0.00417965321242, -0.00034997963512, 0.00024600210827, 0.79495405446104, -0.00163831743315, -0.77279069624025, 0.03117626345243, 0.43770118814662, -0.90104234981109, 0.50991118531475, -0.01857621680627, 0.09734029733274, 0.04903458847273, 0.04500641994787, 0.05104236385932, 5.01196789779712, -117.971503784015, 120.839159336903, -175.684843797874]
+ [
+ "58",
+ "C",
+ "Low-Voltage Load(1)",
+ null,
+ null,
+ "459",
+ 3,
+ 17,
+ 13.6000003814697,
+ null,
+ 0,
+ 5,
+ 4,
+ null,
+ 0,
+ 10,
+ 8,
+ null,
+ 0,
+ 2,
+ 1.60000002384186,
+ null,
+ 0,
+ 0.004,
+ 0.003,
+ 0.008,
+ 0.006,
+ 0.0016,
+ 0.0012,
+ 0.00402634380871,
+ 0.00267795417173,
+ 0.00860854126987,
+ 0.00640585349192,
+ 0.00147534826508,
+ 0.00124204483748,
+ -0.00051023368809,
+ -0.00012585333443,
+ 0.82357617839502,
+ 0.02065695098978,
+ -0.76214453770094,
+ -0.00178394036191,
+ 0.42509922350128,
+ -0.90828268374193,
+ 0.4934037789983,
+ -0.06190554882071,
+ 0.0225920866098,
+ 0.05114275059612,
+ 0.00919786774376,
+ 0.03674387298668,
+ -6.32711231458867,
+ -125.351109009569,
+ 106.98856585999,
+ 74.4934613593475
+ ],
+ [
+ "59",
+ "C",
+ "Low-Voltage Load(10)",
+ null,
+ null,
+ "441",
+ 3,
+ 6,
+ 3,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 3,
+ null,
+ 0,
+ 0,
+ 0,
+ -0,
+ 0,
+ 0.003,
+ 0.005196,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00343708677692,
+ 0.00519924529924,
+ -0.00043708681194,
+ -3.09309129497711e-6,
+ 0.76558723905433,
+ -0.04364059025534,
+ -0.78170461918559,
+ -0.00230106967498,
+ 0.43679868213079,
+ -0.94096569326957,
+ 0.48523283755517,
+ 0.0644833343873,
+ 0,
+ 0,
+ 0.02933292561379,
+ 0.02933292561379,
+ 0,
+ 0,
+ 91.6382636963027,
+ -88.3617363036901
+ ],
+ [
+ "60",
+ "C",
+ "Low-Voltage Load(11)",
+ null,
+ null,
+ "421",
+ 3,
+ 9.925281,
+ 8.10000038146973,
+ null,
+ 0,
+ 5,
+ 4,
+ null,
+ 0,
+ 2,
+ 1.39999997615814,
+ null,
+ 0,
+ 3,
+ 2.69999980926514,
+ null,
+ 0,
+ 0.004,
+ 0.003,
+ 0.0014,
+ 0.001428,
+ 0.0027,
+ 0.001307,
+ 0.00396809278151,
+ 0.00300248026879,
+ 0.00140686797591,
+ 0.00141787068334,
+ 0.00271353196356,
+ 0.00132117266424,
+ 1.15070297660765e-5,
+ -5.56832176097651e-6,
+ 0.81767474633782,
+ -0.02445129058522,
+ -0.79716358678646,
+ -0.00581139890212,
+ 0.43975622457147,
+ -0.9557071523339,
+ 0.50323960602153,
+ 0.00137232374812,
+ 0.02320778335033,
+ 0.0090469100627,
+ 0.01386269415549,
+ 0.00927014317708,
+ -8.84123317405202,
+ -136.688737252611,
+ 121.77561939168,
+ -167.463998704183
+ ],
+ [
+ "61",
+ "C",
+ "Low-Voltage Load(12)",
+ null,
+ null,
+ "517",
+ 3,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.0048,
+ 0.0036,
+ -0,
+ 0,
+ 0,
+ 0,
+ 0.00480000016754,
+ 0.00359999985669,
+ 0,
+ 0,
+ 0,
+ 0,
+ -1.34607862648697e-21,
+ -2.69604644255836e-21,
+ 0.82279368860597,
+ -0.02266298393744,
+ -0.80227587867552,
+ 2.69751179841199e-19,
+ 0.44360159197186,
+ -0.95358934747421,
+ 0.5089883395177,
+ 3.84230905334417e-19,
+ 0.02779411593668,
+ 0,
+ 0,
+ 0.02779411593668,
+ -8.53898036542068,
+ 0,
+ 0,
+ 171.461019634572
+ ],
+ [
+ "62",
+ "C",
+ "Low-Voltage Load(13)",
+ null,
+ null,
+ "471",
+ 3,
+ 6,
+ 6,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 6,
+ null,
+ 0,
+ 0,
+ 0,
+ 0,
+ -0,
+ 0.006,
+ 9.747919e-12,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.006287337375,
+ 0.00013992742969,
+ -0.00028733747247,
+ -0.00013992741994,
+ 0.80444967124278,
+ -0.03059444170348,
+ -0.76909853711356,
+ -0.045750608603,
+ 0.42702772283161,
+ -0.96445602411502,
+ 0.48232469936131,
+ 0.00594428911382,
+ 0,
+ 0,
+ 0.02999658922821,
+ 0.02999658922821,
+ 0,
+ 0,
+ 146.632013179806,
+ -33.3679868201863
+ ],
+ [
+ "63",
+ "C",
+ "Low-Voltage Load(2)",
+ null,
+ null,
+ "462",
+ 3,
+ 8,
+ 5.59999990463257,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 8,
+ 5.59999990463257,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ 0.0056,
+ 0.005713,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00611796127843,
+ 0.00609595263819,
+ 0,
+ 0,
+ -0.00051796170029,
+ -0.00038280981285,
+ 0.82553396008294,
+ 0.02201114854769,
+ -0.76268385526606,
+ -0.00828655479598,
+ 0.42569815781937,
+ -0.90650113817532,
+ 0.49403843693684,
+ -0.06711260874863,
+ 0,
+ 0.04124248718705,
+ 0,
+ 0.04124248718705,
+ 0,
+ -133.505806591306,
+ 0,
+ 46.494193408687
+ ],
+ [
+ "64",
+ "C",
+ "Low-Voltage Load(3)",
+ null,
+ null,
+ "465",
+ 3,
+ 13.74773,
+ 13.5,
+ null,
+ 0,
+ 3,
+ 1.5,
+ null,
+ 0,
+ 2,
+ 2,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ 0.0015,
+ 0.002598,
+ 0.002,
+ -4.455597e-12,
+ 0.01,
+ 6.245085e-13,
+ 0.00138065110391,
+ 0.00253662236875,
+ 0.00198961839198,
+ -8.73255082002046e-5,
+ 0.01043124449675,
+ 0.00022401545844,
+ -0.00030151415182,
+ -7.5236253845363e-5,
+ 0.80524277000662,
+ -0.03000006296912,
+ -0.77054915249085,
+ -0.04221060121185,
+ 0.43071503675549,
+ -0.96081253614973,
+ 0.48664912371671,
+ 0.00447748473871,
+ 0.01369416127492,
+ 0.00897094233133,
+ 0.04957330549428,
+ 0.03170103260948,
+ -33.2993020573034,
+ -89.2752695014207,
+ 146.494810834169,
+ -20.065794312098
+ ],
+ [
+ "65",
+ "C",
+ "Low-Voltage Load(4)",
+ null,
+ null,
+ "486",
+ 3,
+ 11.69615,
+ 11.3999996185303,
+ null,
+ 0,
+ 6,
+ 5.39999961853027,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 6,
+ 6,
+ null,
+ 0,
+ 0.005399,
+ 0.002615,
+ -0,
+ 0,
+ 0.006,
+ 1.931918e-11,
+ 0.00547161713644,
+ 0.00320082596691,
+ 0,
+ 0,
+ 0.00619579581864,
+ -0.00050884057071,
+ -0.00026741415549,
+ -7.66456226016393e-5,
+ 0.74257058213117,
+ -0.04818121496506,
+ -0.77200959309647,
+ 0.00940315435565,
+ 0.43866890162354,
+ -0.93272924532061,
+ 0.49125499982478,
+ 0.07969923720588,
+ 0.03182631624956,
+ 0,
+ 0.02941772100839,
+ 0.01500972326595,
+ 0.24511558264472,
+ 0,
+ 152.225046126354,
+ -112.722059018998
+ ],
+ [
+ "66",
+ "C",
+ "Low-Voltage Load(5)",
+ null,
+ null,
+ "474",
+ 3,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 5,
+ 4.5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ 0.0045,
+ 0.002179,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00438910801124,
+ 0.00208792591642,
+ 0,
+ 0,
+ 0.0001108920034,
+ 9.15238603230447e-5,
+ 0.79939008867286,
+ -0.02299110560037,
+ -0.77715365407525,
+ -0.00613622912906,
+ 0.43484794046272,
+ -0.94341248396424,
+ 0.49001382723945,
+ 0.02723403630957,
+ 0,
+ 0.02230201370366,
+ 0,
+ 0.02230201370366,
+ 0,
+ -116.836753433633,
+ 0,
+ 63.1632465663598
+ ],
+ [
+ "67",
+ "C",
+ "Low-Voltage Load(6)",
+ null,
+ null,
+ "477",
+ 3,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 6,
+ 4.80000019073486,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.0048,
+ 0.0036,
+ -0,
+ 0,
+ 0,
+ 0,
+ 0.00478103125742,
+ 0.00413314843518,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1.89682948647312e-5,
+ -0.00053314867782,
+ 0.75130445601835,
+ -0.04519257905743,
+ -0.7761183854309,
+ 0.01079800099813,
+ 0.44003296080634,
+ -0.93397963567086,
+ 0.49070942516554,
+ 0.07269991405069,
+ 0.03143050911216,
+ 0,
+ 0,
+ 0.03143050911216,
+ -10.4858884785927,
+ 0,
+ 0,
+ 169.5141115214
+ ],
+ [
+ "68",
+ "C",
+ "Low-Voltage Load(7)",
+ null,
+ null,
+ "480",
+ 3,
+ 5.196152,
+ 4.5,
+ null,
+ 0,
+ 3,
+ 1.5,
+ null,
+ 0,
+ 2,
+ 2,
+ null,
+ 0,
+ 1,
+ 1,
+ null,
+ 0,
+ 0.0015,
+ 0.002598,
+ 0.002,
+ -4.934897e-12,
+ 0.001,
+ 1.514344e-12,
+ 0.00139603607238,
+ 0.00253788886597,
+ 0.00199507281215,
+ -7.81637396862459e-5,
+ 0.00103725695565,
+ 2.16548550325227e-5,
+ 7.16341406730101e-5,
+ 0.00011669607962,
+ 0.80483303978942,
+ -0.02957645566969,
+ -0.77105094551605,
+ -0.03774703924052,
+ 0.42786863718826,
+ -0.96327142659988,
+ 0.48353785386891,
+ 0.00205885983421,
+ 0.01376007616659,
+ 0.00897096448299,
+ 0.00493605884267,
+ 0.01568435486354,
+ -33.1896002545223,
+ -89.5150582975027,
+ 146.711553170092,
+ 118.421747963015
+ ],
+ [
+ "69",
+ "C",
+ "Low-Voltage Load(8)",
+ null,
+ null,
+ "483",
+ 3,
+ 7,
+ 6.29999971389771,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 7,
+ 6.29999971389771,
+ null,
+ 0,
+ 0,
+ 0,
+ -0,
+ 0,
+ 0.0063,
+ 0.003051,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0.00677978926689,
+ 0.00274105779044,
+ -0.00047978959148,
+ 0.00031017195716,
+ 0.76021401870065,
+ -0.04576557095749,
+ -0.7790470438604,
+ -0.00421909877281,
+ 0.4341670873084,
+ -0.94252315156521,
+ 0.48161124730874,
+ 0.0714292707948,
+ 0,
+ 0,
+ 0.03457373730546,
+ 0.03457373730546,
+ 0,
+ 0,
+ 126.262007469615,
+ -53.7379925303781
+ ],
+ [
+ "70",
+ "C",
+ "Low-Voltage Load(9)",
+ null,
+ null,
+ "455",
+ 3,
+ 40,
+ 36,
+ null,
+ 0,
+ 20,
+ 18,
+ null,
+ 0,
+ 10,
+ 9,
+ null,
+ 0,
+ 10,
+ 9,
+ null,
+ 0,
+ 0.018,
+ 0.008717,
+ 0.009,
+ 0.004358,
+ 0.009,
+ 0.004358,
+ 0.01866167346503,
+ 0.00824057892441,
+ 0.00902019602621,
+ 0.00476936394924,
+ 0.0086681097198,
+ 0.00417965321242,
+ -0.00034997963512,
+ 0.00024600210827,
+ 0.79495405446104,
+ -0.00163831743315,
+ -0.77279069624025,
+ 0.03117626345243,
+ 0.43770118814662,
+ -0.90104234981109,
+ 0.50991118531475,
+ -0.01857621680627,
+ 0.09734029733274,
+ 0.04903458847273,
+ 0.04500641994787,
+ 0.05104236385932,
+ 5.01196789779712,
+ -117.971503784015,
+ 120.839159336903,
+ -175.684843797874
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["71", "C", "MV/LV transformer + LV grid", null, 50]
- ]
+ "Values": [["71", "C", "MV/LV transformer + LV grid", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["72", "C", "Bus(0)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81793721623607, 0.4412041822185, -0.02136137280616, -0.94735499855454, -0.80035106752893, 0.50748069603594, 0.92957182980840, 28.699122143492, 0.94247306756789, -91.4544093216778, 0.95262421374073, 147.441386901183],
- ["73", "C", "Bus(1)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81445746641689, 0.43621208666623, -0.00191916064420, -0.92251744952703, -0.77967453699639, 0.50478868283278, 0.92718958279263, 29.7789104082843, 0.89831185024536, -90.7414171725253, 0.95028116985263, 146.168632114912],
- ["74", "C", "Bus(10)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79484408302859, 0.43714801592975, -0.02788088412081, -0.94468097767766, -0.78169955495009, 0.49231345926539, 0.89466300015338, 26.7742400258825, 0.97909831901478, -91.4034347626774, 0.90272308636765, 149.498289012108],
- ["75", "C", "Bus(11)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79939018915426, 0.43484785683476, -0.02299124754873, -0.94341251331854, -0.77715362172098, 0.49001397809590, 0.90278557861096, 26.8403982583351, 0.97079289543371, -90.9948268065353, 0.89924029220319, 149.026983670963],
- ["76", "C", "Bus(12)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76558726133086, 0.4367986680911, -0.04364062135690, -0.94096569476573, -0.78170461102586, 0.48523287472904, 0.85338805982302, 25.8667093566045, 1.00629852629505, -92.3544195796504, 0.88572008021082, 151.638261220215],
- ["77", "C", "Bus(13)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82143521723342, 0.43029989869602, 0.00994258975754, -0.91922807279331, -0.76999500761711, 0.49874845541366, 0.94202418275243, 29.8278630127791, 0.88098767853893, -89.6269744880133, 0.94221320948946, 145.253771319121],
- ["78", "C", "Bus(14)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76233682749742, 0.43572412850123, -0.04364298013044, -0.94096609766322, -0.77848829732636, 0.48416142977285, 0.84746138114046, 25.6569854687113, 1.0106305624105, -92.386116479847, 0.88098914554047, 151.8692606967],
- ["79", "C", "Bus(15)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75269256409539, 0.44035012482522, -0.04519245216971, -0.93397980272935, -0.77611843943482, 0.49070903185196, 0.83067515688622, 26.285439276089, 1.00787085748259, -93.0201871795051, 0.88859825715482, 151.923567571048],
- ["80", "C", "Bus(16)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75130454493232, 0.44003289526401, -0.04519270529496, -0.93397967354063, -0.77611837088354, 0.49070955466665, 0.82660960994482, 26.3840027452214, 1.00823547228838, -93.183465316732, 0.89104962692027, 152.022779575996],
- ["81", "C", "Bus(17)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76021410767575, 0.43416703618113, -0.04576569578938, -0.94252315647499, -0.77904701444826, 0.48161139877275, 0.84613045380207, 25.3852076081261, 1.01480328773396, -92.3463777411733, 0.87670274103940, 152.10393811014],
- ["82", "C", "Bus(18)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75005111729527, 0.43919434321432, -0.04519471844985, -0.93398028565844, -0.77346058030487, 0.49050607454232, 0.82623566507562, 26.1364277691898, 1.01062631752592, -93.0342098696565, 0.88521431762799, 152.022437919042],
- ["83", "C", "Bus(19)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.74257066514948, 0.43866886147818, -0.04818131865370, -0.93272924618234, -0.77200956072295, 0.49125513517140, 0.81632941836543, 26.0870508225879, 1.01406482399171, -93.2553392337365, 0.88316709545611, 152.225040237757],
- ["84", "C", "Bus(2)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80902550066001, 0.43327787670445, -0.00167006197017, -0.91941702992737, -0.77735890090719, 0.50312028077866, 0.91455313997023, 29.865965225722, 0.89744504104339, -91.1238243854593, 0.95142691367576, 146.490091457021],
- ["85", "C", "Bus(20)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82357665605298, 0.42509884120444, 0.02065647810415, -0.90828293197167, -0.76214440382657, 0.49340431324970, 0.95832845485559, 30.5427504410886, 0.84667478605464, -88.4812444042046, 0.94155037403720, 143.858427719336],
- ["86", "C", "Bus(21)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79495457125682, 0.43770081786721, -0.00163886802991, -0.90104257549846, -0.77279055773914, 0.50991183211694, 0.88968871984946, 30.8538679383831, 0.88307626399866, -92.129603804847, 0.96211345958693, 146.681058210149],
- ["87", "C", "Bus(22)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82045842248460, 0.42999864511566, 0.01106664057726, -0.91520814843578, -0.76972431567349, 0.49843217176954, 0.94601658644571, 30.1372220098915, 0.87028167874590, -89.4240958603801, 0.94410677792208, 144.860213064577],
- ["88", "C", "Bus(23)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553277512109, 0.42569929392666, 0.01969390348627, -0.91281565483787, -0.76268477362796, 0.49403879629199, 0.95680856910698, 30.168264026947, 0.85794553483478, -88.5725007836237, 0.93846834220353, 144.18412139241],
- ["89", "C", "Bus(24)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553408138330, 0.42569799372603, 0.02201097653631, -0.90650123564088, -0.76268381782783, 0.49403856852333, 0.96856556199809, 30.5842392284739, 0.83993520558944, -87.9328170669832, 0.94021585386710, 143.356635152657],
- ["90", "C", "Bus(25)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81619761855858, 0.43870789901460, -0.01164060072136, -0.93493635647221, -0.79001272840806, 0.50613504109656, 0.92833962131561, 29.2383029155299, 0.92037478479122, -91.1064864657003, 0.95139414002006, 146.805772568337],
- ["91", "C", "Bus(26)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79159368675585, 0.43607324932316, -0.02788389085042, -0.94468149816824, -0.77780946446269, 0.48979699839573, 0.88811193086514, 26.3744977039085, 0.98651041801271, -91.3829774103048, 0.89420302532979, 149.914587159598],
- ["92", "C", "Bus(27)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81025903717794, 0.42984365637478, -0.02863813067935, -0.96385341182405, -0.78698341119685, 0.48957559190929, 0.93489389179716, 27.1410237619221, 0.96724008597984, -90.4115660279701, 0.90668485768608, 147.570968694754],
- ["93", "C", "Bus(28)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81767474633782, 0.43975622457147, -0.02445129058522, -0.95570715233390, -0.79716358678646, 0.50323960602153, 0.93290400144025, 28.0286620438528, 0.95726097230556, -91.1157402805031, 0.93707473249780, 147.617556987267],
- ["94", "C", "Bus(29)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81629513659212, 0.44145038881543, -0.02252397536526, -0.95117075149390, -0.79449493326722, 0.50395774843672, 0.92452409025206, 27.8173757188462, 0.96141976335105, -91.259551160442, 0.93434063169805, 148.085579337251],
- ["95", "C", "Bus(3)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80707606287023, 0.43039476532926, -0.02950167438917, -0.96192488077198, -0.77718189688532, 0.48783615547151, 0.94268971958676, 26.9165745874959, 0.96557915174521, -89.7634052139063, 0.88742287837322, 146.933385450395],
- ["96", "C", "Bus(31)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81619749140667, 0.43870799989876, -0.01164045349899, -0.93493629537412, -0.79001275859506, 0.50613488154292, 0.92833955861707, 29.2383120492255, 0.92037472323197, -91.1064773632473, 0.95139407649786, 146.80578171891],
- ["97", "C", "Bus(32)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80902539884599, 0.43327795569353, -0.00166995056681, -0.91941698152600, -0.77735892765125, 0.50312015628541, 0.91455309091794, 29.8659724317978, 0.89744499409505, -91.123817202966, 0.95142686355318, 146.490098714965],
- ["98", "C", "Bus(33)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79484393381685, 0.43714813363002, -0.02788069337906, -0.94468090715766, -0.78169958426129, 0.49231326238001, 0.89466292695588, 26.7742512313093, 0.9790982381847, -91.4034234180847, 0.90272301015740, 149.498300258099],
- ["99", "C", "Bus(34)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79159350651133, 0.43607339032028, -0.02788366030027, -0.94468141334234, -0.77780949976968, 0.48979676067854, 0.88811184305140, 26.3745112345893, 0.98651031955303, -91.3829636662297, 0.89420293340292, 149.914600765815],
- ["100", "C", "Bus(35)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76558723905433, 0.43679868213079, -0.04364059025534, -0.94096569326957, -0.78170461918559, 0.48523283755517, 0.85338805525302, 25.8667110983669, 1.00629851593748, -92.3544174414352, 0.88572006718022, 151.638262960541],
- ["101", "C", "Bus(36)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76233665885883, 0.43572425912386, -0.04364274029768, -0.94096602040954, -0.77848832264190, 0.48416118901034, 0.84746129844339, 25.6569989817545, 1.01063046120069, -92.3861026816223, 0.88098905416365, 151.869274262075],
- ["102", "C", "Bus(37)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75269253447214, 0.44035014094791, -0.04519241448570, -0.93397980180509, -0.77611845127867, 0.49070898398072, 0.83067515175378, 26.2854414153146, 1.00787084458046, -93.0201844304148, 0.88859823954542, 151.923569775931],
- ["103", "C", "Bus(38)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75005056127751, 0.43919474847476, -0.04519393004276, -0.93398004584124, -0.77346066719889, 0.49050526605414, 0.82623539781194, 26.13647226544, 1.01062598156287, -93.0341642214505, 0.88521401045567, 152.022482723879],
- ["104", "C", "Bus(39)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79495405446104, 0.43770118814662, -0.00163831743315, -0.90104234981109, -0.77279069624025, 0.50991118531475, 0.88968847598951, 30.8539042366263, 0.88307602878754, -92.1295674301291, 0.96211319837020, 146.68109489718],
- ["105", "C", "Bus(4)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80553096533959, 0.42841471355841, -0.03014389715161, -0.96341329820074, -0.77447384499827, 0.48495524504323, 0.94328474727020, 26.763884391181, 0.96707512884224, -89.6115983059155, 0.88089480824467, 146.880023982717],
- ["106", "C", "Bus(40)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82357617839502, 0.42509922350128, 0.02065695098978, -0.90828268374193, -0.76214453770094, 0.49340377899830, 0.95832821825242, 30.5427831152403, 0.84667458218733, -88.4812122863194, 0.94155015137197, 143.858460481659],
- ["107", "C", "Bus(41)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553396008294, 0.42569815781937, 0.02201114854769, -0.90650113817532, -0.76268385526606, 0.49403843693684, 0.96856548703653, 30.5842506572274, 0.83993514878292, -87.93280802082, 0.94021581726242, 143.356646214801],
- ["108", "C", "Bus(42)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80524277000662, 0.43071503675549, -0.03000006296912, -0.96081253614973, -0.77054915249085, 0.48664912371671, 0.94860722490334, 26.7006966205987, 0.96536724704694, -89.2752696290642, 0.87347955597937, 146.494810837748],
- ["109", "C", "Bus(43)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82143511326499, 0.43030001634086, 0.00994272346746, -0.91922800921048, -0.76999504469159, 0.49874833574285, 0.94202412998182, 29.8278715466179, 0.88098763792380, -89.6269665291368, 0.94221316864251, 145.253780093466],
- ["110", "C", "Bus(44)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444967124278, 0.42702772283161, -0.03059444170348, -0.96445602411502, -0.76909853711356, 0.48232469936131, 0.94876328660073, 26.3480905836224, 0.97051866407077, -89.1052004155373, 0.86612384850441, 146.632013272892],
- ["111", "C", "Bus(45)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79939008867286, 0.43484794046272, -0.02299110560037, -0.94341248396424, -0.77715365407525, 0.49001382723945, 0.90278554681081, 26.8404063041136, 0.97079284823310, -90.9948175982877, 0.89924023734692, 149.026991659134],
- ["112", "C", "Bus(46)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75130445601835, 0.44003296080634, -0.04519257905743, -0.93397963567086, -0.77611838543090, 0.49070942516554, 0.82660956755012, 26.3840098788263, 1.00823541937514, -93.1834580030991, 0.89104957808923, 152.022786768123],
- ["113", "C", "Bus(47)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80483303978942, 0.42786863718826, -0.02957645566969, -0.96327142659988, -0.77105094551605, 0.48353785386891, 0.94406311021478, 26.8103984134521, 0.96536486384311, -89.5150584388771, 0.87724377493125, 146.711553256857],
- ["114", "C", "Bus(48)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76021401870065, 0.43416708730840, -0.04576557095749, -0.94252315156521, -0.77904704386040, 0.48161124730874, 0.84613043593718, 25.3852144481553, 1.01480324406298, -92.3463691195562, 0.87670268526195, 152.103944979368],
- ["115", "C", "Bus(49)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.74257058213117, 0.43866890162354, -0.04818121496506, -0.93272924532061, -0.77200959309647, 0.49125499982478, 0.81632940478896, 26.0870566573067, 1.01406478679667, -93.2553315458986, 0.88316704401008, 152.225046310839],
- ["116", "C", "Bus(5)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80524288877970, 0.43071493220714, -0.03000022191621, -0.96081260093140, -0.77054913047406, 0.48664927398894, 0.94860728774770, 26.7006874331086, 0.96536731298968, -89.2752787736441, 0.87347961409153, 146.494801784111],
- ["117", "C", "Bus(50)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82045822535394, 0.42999880118941, 0.01106684477185, -0.91520804970654, -0.76972436927742, 0.49843194270782, 0.94601648969666, 30.1372356735194, 0.87028159161838, -89.4240823461164, 0.94410668426596, 144.860226771642],
- ["118", "C", "Bus(51)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553235095120, 0.42569963230553, 0.01969432449677, -0.91281543579761, -0.76268489295453, 0.49403832144109, 0.95680836029690, 30.1682929258771, 0.85794535245483, -88.5724722805506, 0.93846814492089, 144.184150415699],
- ["119", "C", "Bus(52)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81025897460912, 0.42984372190058, -0.02863802684726, -0.96385338480909, -0.78698342786710, 0.48957549600971, 0.93489386186150, 27.1410295848261, 0.96724005290499, -90.4115603304035, 0.90668482946613, 147.570974339661],
- ["120", "C", "Bus(53)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80707573050062, 0.43039505623957, -0.02950123440401, -0.96192469845158, -0.77718195745223, 0.48783573534718, 0.94268954394233, 26.9166000554346, 0.96557896797855, -89.7633798876611, 0.88742271333402, 146.933410633152],
- ["121", "C", "Bus(54)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80553088999997, 0.42841479790408, -0.03014375544344, -0.96341326329526, -0.77447386021990, 0.48495512110020, 0.94328471087183, 26.7638922737467, 0.96707507965790, -89.611590814442, 0.88089477460535, 146.880031005369],
- ["122", "C", "Bus(55)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444940009273, 0.42702872946167, -0.03059333063059, -0.96445521084775, -0.77257821159150, 0.48293852499588, 0.94370526043305, 26.6571224833845, 0.96812631898940, -89.50560809212, 0.87632563217961, 146.842201526817],
- ["123", "C", "Bus(56)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80600485016847, 0.43804503962308, -0.02230276692308, -0.94734086739845, -0.78217529236864, 0.49599147554042, 0.90847681703425, 26.9807984404423, 0.97339720542925, -91.1014090298127, 0.90950529943541, 148.876072885635],
- ["124", "C", "Bus(6)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444948394936, 0.42702863448708, -0.03059349176042, -0.96445525032637, -0.77257819577602, 0.48293866461283, 0.94370530161431, 26.6571135719083, 0.96812637496454, -89.5056165444174, 0.87632566986834, 146.842193617238],
- ["125", "C", "Bus(7)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444978913070, 0.42702761678525, -0.03059460151541, -0.96445609042342, -0.76909851593298, 0.48232484773532, 0.94876334951539, 26.3480813923484, 0.97051873038749, -89.1052095559006, 0.86612390604872, 146.63200421883],
- ["126", "C", "Bus(8)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80483309689473, 0.42786857203300, -0.02957656456425, -0.96327145360936, -0.77105093402146, 0.48353794787446, 0.94406313799453, 26.8103923664565, 0.96536490127732, -89.5150641714339, 0.87724380019234, 146.71154787344],
- ["127", "C", "Bus(9)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80600496505275, 0.43804494428582, -0.02230292536470, -0.94734090153743, -0.78217525425995, 0.49599164507572, 0.90847685340191, 26.9807894401489, 0.97339725828385, -91.1014193416434, 0.90950536169281, 148.876063906454],
- ["128", "C", "Terminal(1)", "71", null, 0, 1, 0.4, 0, 0, 0, 0.82279368860597, 0.44360159197186, -0.02266298393744, -0.95358934747421, -0.80227587867552, 0.50898833951770, 0.93475762976816, 28.3309152256814, 0.95385861345235, -91.3614339805934, 0.95011352756898, 147.607709519518],
- ["129", "C", "Terminal", "71", null, 0, 0, 20, 0, 0, 0, 0.99999913609264, -2.87005016241498e-06, -0.49999708250997, -0.86602471692507, -0.50000205358267, 0.86602758697523, 0, 0, 0, 0, 0, 0]
+ [
+ "72",
+ "C",
+ "Bus(0)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81793721623607,
+ 0.4412041822185,
+ -0.02136137280616,
+ -0.94735499855454,
+ -0.80035106752893,
+ 0.50748069603594,
+ 0.9295718298084,
+ 28.699122143492,
+ 0.94247306756789,
+ -91.4544093216778,
+ 0.95262421374073,
+ 147.441386901183
+ ],
+ [
+ "73",
+ "C",
+ "Bus(1)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81445746641689,
+ 0.43621208666623,
+ -0.0019191606442,
+ -0.92251744952703,
+ -0.77967453699639,
+ 0.50478868283278,
+ 0.92718958279263,
+ 29.7789104082843,
+ 0.89831185024536,
+ -90.7414171725253,
+ 0.95028116985263,
+ 146.168632114912
+ ],
+ [
+ "74",
+ "C",
+ "Bus(10)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79484408302859,
+ 0.43714801592975,
+ -0.02788088412081,
+ -0.94468097767766,
+ -0.78169955495009,
+ 0.49231345926539,
+ 0.89466300015338,
+ 26.7742400258825,
+ 0.97909831901478,
+ -91.4034347626774,
+ 0.90272308636765,
+ 149.498289012108
+ ],
+ [
+ "75",
+ "C",
+ "Bus(11)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79939018915426,
+ 0.43484785683476,
+ -0.02299124754873,
+ -0.94341251331854,
+ -0.77715362172098,
+ 0.4900139780959,
+ 0.90278557861096,
+ 26.8403982583351,
+ 0.97079289543371,
+ -90.9948268065353,
+ 0.89924029220319,
+ 149.026983670963
+ ],
+ [
+ "76",
+ "C",
+ "Bus(12)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76558726133086,
+ 0.4367986680911,
+ -0.0436406213569,
+ -0.94096569476573,
+ -0.78170461102586,
+ 0.48523287472904,
+ 0.85338805982302,
+ 25.8667093566045,
+ 1.00629852629505,
+ -92.3544195796504,
+ 0.88572008021082,
+ 151.638261220215
+ ],
+ [
+ "77",
+ "C",
+ "Bus(13)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82143521723342,
+ 0.43029989869602,
+ 0.00994258975754,
+ -0.91922807279331,
+ -0.76999500761711,
+ 0.49874845541366,
+ 0.94202418275243,
+ 29.8278630127791,
+ 0.88098767853893,
+ -89.6269744880133,
+ 0.94221320948946,
+ 145.253771319121
+ ],
+ [
+ "78",
+ "C",
+ "Bus(14)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76233682749742,
+ 0.43572412850123,
+ -0.04364298013044,
+ -0.94096609766322,
+ -0.77848829732636,
+ 0.48416142977285,
+ 0.84746138114046,
+ 25.6569854687113,
+ 1.0106305624105,
+ -92.386116479847,
+ 0.88098914554047,
+ 151.8692606967
+ ],
+ [
+ "79",
+ "C",
+ "Bus(15)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75269256409539,
+ 0.44035012482522,
+ -0.04519245216971,
+ -0.93397980272935,
+ -0.77611843943482,
+ 0.49070903185196,
+ 0.83067515688622,
+ 26.285439276089,
+ 1.00787085748259,
+ -93.0201871795051,
+ 0.88859825715482,
+ 151.923567571048
+ ],
+ [
+ "80",
+ "C",
+ "Bus(16)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75130454493232,
+ 0.44003289526401,
+ -0.04519270529496,
+ -0.93397967354063,
+ -0.77611837088354,
+ 0.49070955466665,
+ 0.82660960994482,
+ 26.3840027452214,
+ 1.00823547228838,
+ -93.183465316732,
+ 0.89104962692027,
+ 152.022779575996
+ ],
+ [
+ "81",
+ "C",
+ "Bus(17)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76021410767575,
+ 0.43416703618113,
+ -0.04576569578938,
+ -0.94252315647499,
+ -0.77904701444826,
+ 0.48161139877275,
+ 0.84613045380207,
+ 25.3852076081261,
+ 1.01480328773396,
+ -92.3463777411733,
+ 0.8767027410394,
+ 152.10393811014
+ ],
+ [
+ "82",
+ "C",
+ "Bus(18)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75005111729527,
+ 0.43919434321432,
+ -0.04519471844985,
+ -0.93398028565844,
+ -0.77346058030487,
+ 0.49050607454232,
+ 0.82623566507562,
+ 26.1364277691898,
+ 1.01062631752592,
+ -93.0342098696565,
+ 0.88521431762799,
+ 152.022437919042
+ ],
+ [
+ "83",
+ "C",
+ "Bus(19)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.74257066514948,
+ 0.43866886147818,
+ -0.0481813186537,
+ -0.93272924618234,
+ -0.77200956072295,
+ 0.4912551351714,
+ 0.81632941836543,
+ 26.0870508225879,
+ 1.01406482399171,
+ -93.2553392337365,
+ 0.88316709545611,
+ 152.225040237757
+ ],
+ [
+ "84",
+ "C",
+ "Bus(2)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80902550066001,
+ 0.43327787670445,
+ -0.00167006197017,
+ -0.91941702992737,
+ -0.77735890090719,
+ 0.50312028077866,
+ 0.91455313997023,
+ 29.865965225722,
+ 0.89744504104339,
+ -91.1238243854593,
+ 0.95142691367576,
+ 146.490091457021
+ ],
+ [
+ "85",
+ "C",
+ "Bus(20)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82357665605298,
+ 0.42509884120444,
+ 0.02065647810415,
+ -0.90828293197167,
+ -0.76214440382657,
+ 0.4934043132497,
+ 0.95832845485559,
+ 30.5427504410886,
+ 0.84667478605464,
+ -88.4812444042046,
+ 0.9415503740372,
+ 143.858427719336
+ ],
+ [
+ "86",
+ "C",
+ "Bus(21)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79495457125682,
+ 0.43770081786721,
+ -0.00163886802991,
+ -0.90104257549846,
+ -0.77279055773914,
+ 0.50991183211694,
+ 0.88968871984946,
+ 30.8538679383831,
+ 0.88307626399866,
+ -92.129603804847,
+ 0.96211345958693,
+ 146.681058210149
+ ],
+ [
+ "87",
+ "C",
+ "Bus(22)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8204584224846,
+ 0.42999864511566,
+ 0.01106664057726,
+ -0.91520814843578,
+ -0.76972431567349,
+ 0.49843217176954,
+ 0.94601658644571,
+ 30.1372220098915,
+ 0.8702816787459,
+ -89.4240958603801,
+ 0.94410677792208,
+ 144.860213064577
+ ],
+ [
+ "88",
+ "C",
+ "Bus(23)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82553277512109,
+ 0.42569929392666,
+ 0.01969390348627,
+ -0.91281565483787,
+ -0.76268477362796,
+ 0.49403879629199,
+ 0.95680856910698,
+ 30.168264026947,
+ 0.85794553483478,
+ -88.5725007836237,
+ 0.93846834220353,
+ 144.18412139241
+ ],
+ [
+ "89",
+ "C",
+ "Bus(24)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8255340813833,
+ 0.42569799372603,
+ 0.02201097653631,
+ -0.90650123564088,
+ -0.76268381782783,
+ 0.49403856852333,
+ 0.96856556199809,
+ 30.5842392284739,
+ 0.83993520558944,
+ -87.9328170669832,
+ 0.9402158538671,
+ 143.356635152657
+ ],
+ [
+ "90",
+ "C",
+ "Bus(25)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81619761855858,
+ 0.4387078990146,
+ -0.01164060072136,
+ -0.93493635647221,
+ -0.79001272840806,
+ 0.50613504109656,
+ 0.92833962131561,
+ 29.2383029155299,
+ 0.92037478479122,
+ -91.1064864657003,
+ 0.95139414002006,
+ 146.805772568337
+ ],
+ [
+ "91",
+ "C",
+ "Bus(26)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79159368675585,
+ 0.43607324932316,
+ -0.02788389085042,
+ -0.94468149816824,
+ -0.77780946446269,
+ 0.48979699839573,
+ 0.88811193086514,
+ 26.3744977039085,
+ 0.98651041801271,
+ -91.3829774103048,
+ 0.89420302532979,
+ 149.914587159598
+ ],
+ [
+ "92",
+ "C",
+ "Bus(27)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81025903717794,
+ 0.42984365637478,
+ -0.02863813067935,
+ -0.96385341182405,
+ -0.78698341119685,
+ 0.48957559190929,
+ 0.93489389179716,
+ 27.1410237619221,
+ 0.96724008597984,
+ -90.4115660279701,
+ 0.90668485768608,
+ 147.570968694754
+ ],
+ [
+ "93",
+ "C",
+ "Bus(28)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81767474633782,
+ 0.43975622457147,
+ -0.02445129058522,
+ -0.9557071523339,
+ -0.79716358678646,
+ 0.50323960602153,
+ 0.93290400144025,
+ 28.0286620438528,
+ 0.95726097230556,
+ -91.1157402805031,
+ 0.9370747324978,
+ 147.617556987267
+ ],
+ [
+ "94",
+ "C",
+ "Bus(29)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81629513659212,
+ 0.44145038881543,
+ -0.02252397536526,
+ -0.9511707514939,
+ -0.79449493326722,
+ 0.50395774843672,
+ 0.92452409025206,
+ 27.8173757188462,
+ 0.96141976335105,
+ -91.259551160442,
+ 0.93434063169805,
+ 148.085579337251
+ ],
+ [
+ "95",
+ "C",
+ "Bus(3)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80707606287023,
+ 0.43039476532926,
+ -0.02950167438917,
+ -0.96192488077198,
+ -0.77718189688532,
+ 0.48783615547151,
+ 0.94268971958676,
+ 26.9165745874959,
+ 0.96557915174521,
+ -89.7634052139063,
+ 0.88742287837322,
+ 146.933385450395
+ ],
+ [
+ "96",
+ "C",
+ "Bus(31)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81619749140667,
+ 0.43870799989876,
+ -0.01164045349899,
+ -0.93493629537412,
+ -0.79001275859506,
+ 0.50613488154292,
+ 0.92833955861707,
+ 29.2383120492255,
+ 0.92037472323197,
+ -91.1064773632473,
+ 0.95139407649786,
+ 146.80578171891
+ ],
+ [
+ "97",
+ "C",
+ "Bus(32)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80902539884599,
+ 0.43327795569353,
+ -0.00166995056681,
+ -0.919416981526,
+ -0.77735892765125,
+ 0.50312015628541,
+ 0.91455309091794,
+ 29.8659724317978,
+ 0.89744499409505,
+ -91.123817202966,
+ 0.95142686355318,
+ 146.490098714965
+ ],
+ [
+ "98",
+ "C",
+ "Bus(33)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79484393381685,
+ 0.43714813363002,
+ -0.02788069337906,
+ -0.94468090715766,
+ -0.78169958426129,
+ 0.49231326238001,
+ 0.89466292695588,
+ 26.7742512313093,
+ 0.9790982381847,
+ -91.4034234180847,
+ 0.9027230101574,
+ 149.498300258099
+ ],
+ [
+ "99",
+ "C",
+ "Bus(34)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79159350651133,
+ 0.43607339032028,
+ -0.02788366030027,
+ -0.94468141334234,
+ -0.77780949976968,
+ 0.48979676067854,
+ 0.8881118430514,
+ 26.3745112345893,
+ 0.98651031955303,
+ -91.3829636662297,
+ 0.89420293340292,
+ 149.914600765815
+ ],
+ [
+ "100",
+ "C",
+ "Bus(35)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76558723905433,
+ 0.43679868213079,
+ -0.04364059025534,
+ -0.94096569326957,
+ -0.78170461918559,
+ 0.48523283755517,
+ 0.85338805525302,
+ 25.8667110983669,
+ 1.00629851593748,
+ -92.3544174414352,
+ 0.88572006718022,
+ 151.638262960541
+ ],
+ [
+ "101",
+ "C",
+ "Bus(36)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76233665885883,
+ 0.43572425912386,
+ -0.04364274029768,
+ -0.94096602040954,
+ -0.7784883226419,
+ 0.48416118901034,
+ 0.84746129844339,
+ 25.6569989817545,
+ 1.01063046120069,
+ -92.3861026816223,
+ 0.88098905416365,
+ 151.869274262075
+ ],
+ [
+ "102",
+ "C",
+ "Bus(37)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75269253447214,
+ 0.44035014094791,
+ -0.0451924144857,
+ -0.93397980180509,
+ -0.77611845127867,
+ 0.49070898398072,
+ 0.83067515175378,
+ 26.2854414153146,
+ 1.00787084458046,
+ -93.0201844304148,
+ 0.88859823954542,
+ 151.923569775931
+ ],
+ [
+ "103",
+ "C",
+ "Bus(38)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75005056127751,
+ 0.43919474847476,
+ -0.04519393004276,
+ -0.93398004584124,
+ -0.77346066719889,
+ 0.49050526605414,
+ 0.82623539781194,
+ 26.13647226544,
+ 1.01062598156287,
+ -93.0341642214505,
+ 0.88521401045567,
+ 152.022482723879
+ ],
+ [
+ "104",
+ "C",
+ "Bus(39)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79495405446104,
+ 0.43770118814662,
+ -0.00163831743315,
+ -0.90104234981109,
+ -0.77279069624025,
+ 0.50991118531475,
+ 0.88968847598951,
+ 30.8539042366263,
+ 0.88307602878754,
+ -92.1295674301291,
+ 0.9621131983702,
+ 146.68109489718
+ ],
+ [
+ "105",
+ "C",
+ "Bus(4)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80553096533959,
+ 0.42841471355841,
+ -0.03014389715161,
+ -0.96341329820074,
+ -0.77447384499827,
+ 0.48495524504323,
+ 0.9432847472702,
+ 26.763884391181,
+ 0.96707512884224,
+ -89.6115983059155,
+ 0.88089480824467,
+ 146.880023982717
+ ],
+ [
+ "106",
+ "C",
+ "Bus(40)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82357617839502,
+ 0.42509922350128,
+ 0.02065695098978,
+ -0.90828268374193,
+ -0.76214453770094,
+ 0.4934037789983,
+ 0.95832821825242,
+ 30.5427831152403,
+ 0.84667458218733,
+ -88.4812122863194,
+ 0.94155015137197,
+ 143.858460481659
+ ],
+ [
+ "107",
+ "C",
+ "Bus(41)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82553396008294,
+ 0.42569815781937,
+ 0.02201114854769,
+ -0.90650113817532,
+ -0.76268385526606,
+ 0.49403843693684,
+ 0.96856548703653,
+ 30.5842506572274,
+ 0.83993514878292,
+ -87.93280802082,
+ 0.94021581726242,
+ 143.356646214801
+ ],
+ [
+ "108",
+ "C",
+ "Bus(42)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80524277000662,
+ 0.43071503675549,
+ -0.03000006296912,
+ -0.96081253614973,
+ -0.77054915249085,
+ 0.48664912371671,
+ 0.94860722490334,
+ 26.7006966205987,
+ 0.96536724704694,
+ -89.2752696290642,
+ 0.87347955597937,
+ 146.494810837748
+ ],
+ [
+ "109",
+ "C",
+ "Bus(43)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82143511326499,
+ 0.43030001634086,
+ 0.00994272346746,
+ -0.91922800921048,
+ -0.76999504469159,
+ 0.49874833574285,
+ 0.94202412998182,
+ 29.8278715466179,
+ 0.8809876379238,
+ -89.6269665291368,
+ 0.94221316864251,
+ 145.253780093466
+ ],
+ [
+ "110",
+ "C",
+ "Bus(44)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80444967124278,
+ 0.42702772283161,
+ -0.03059444170348,
+ -0.96445602411502,
+ -0.76909853711356,
+ 0.48232469936131,
+ 0.94876328660073,
+ 26.3480905836224,
+ 0.97051866407077,
+ -89.1052004155373,
+ 0.86612384850441,
+ 146.632013272892
+ ],
+ [
+ "111",
+ "C",
+ "Bus(45)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.79939008867286,
+ 0.43484794046272,
+ -0.02299110560037,
+ -0.94341248396424,
+ -0.77715365407525,
+ 0.49001382723945,
+ 0.90278554681081,
+ 26.8404063041136,
+ 0.9707928482331,
+ -90.9948175982877,
+ 0.89924023734692,
+ 149.026991659134
+ ],
+ [
+ "112",
+ "C",
+ "Bus(46)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.75130445601835,
+ 0.44003296080634,
+ -0.04519257905743,
+ -0.93397963567086,
+ -0.7761183854309,
+ 0.49070942516554,
+ 0.82660956755012,
+ 26.3840098788263,
+ 1.00823541937514,
+ -93.1834580030991,
+ 0.89104957808923,
+ 152.022786768123
+ ],
+ [
+ "113",
+ "C",
+ "Bus(47)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80483303978942,
+ 0.42786863718826,
+ -0.02957645566969,
+ -0.96327142659988,
+ -0.77105094551605,
+ 0.48353785386891,
+ 0.94406311021478,
+ 26.8103984134521,
+ 0.96536486384311,
+ -89.5150584388771,
+ 0.87724377493125,
+ 146.711553256857
+ ],
+ [
+ "114",
+ "C",
+ "Bus(48)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.76021401870065,
+ 0.4341670873084,
+ -0.04576557095749,
+ -0.94252315156521,
+ -0.7790470438604,
+ 0.48161124730874,
+ 0.84613043593718,
+ 25.3852144481553,
+ 1.01480324406298,
+ -92.3463691195562,
+ 0.87670268526195,
+ 152.103944979368
+ ],
+ [
+ "115",
+ "C",
+ "Bus(49)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.74257058213117,
+ 0.43866890162354,
+ -0.04818121496506,
+ -0.93272924532061,
+ -0.77200959309647,
+ 0.49125499982478,
+ 0.81632940478896,
+ 26.0870566573067,
+ 1.01406478679667,
+ -93.2553315458986,
+ 0.88316704401008,
+ 152.225046310839
+ ],
+ [
+ "116",
+ "C",
+ "Bus(5)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8052428887797,
+ 0.43071493220714,
+ -0.03000022191621,
+ -0.9608126009314,
+ -0.77054913047406,
+ 0.48664927398894,
+ 0.9486072877477,
+ 26.7006874331086,
+ 0.96536731298968,
+ -89.2752787736441,
+ 0.87347961409153,
+ 146.494801784111
+ ],
+ [
+ "117",
+ "C",
+ "Bus(50)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82045822535394,
+ 0.42999880118941,
+ 0.01106684477185,
+ -0.91520804970654,
+ -0.76972436927742,
+ 0.49843194270782,
+ 0.94601648969666,
+ 30.1372356735194,
+ 0.87028159161838,
+ -89.4240823461164,
+ 0.94410668426596,
+ 144.860226771642
+ ],
+ [
+ "118",
+ "C",
+ "Bus(51)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8255323509512,
+ 0.42569963230553,
+ 0.01969432449677,
+ -0.91281543579761,
+ -0.76268489295453,
+ 0.49403832144109,
+ 0.9568083602969,
+ 30.1682929258771,
+ 0.85794535245483,
+ -88.5724722805506,
+ 0.93846814492089,
+ 144.184150415699
+ ],
+ [
+ "119",
+ "C",
+ "Bus(52)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.81025897460912,
+ 0.42984372190058,
+ -0.02863802684726,
+ -0.96385338480909,
+ -0.7869834278671,
+ 0.48957549600971,
+ 0.9348938618615,
+ 27.1410295848261,
+ 0.96724005290499,
+ -90.4115603304035,
+ 0.90668482946613,
+ 147.570974339661
+ ],
+ [
+ "120",
+ "C",
+ "Bus(53)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80707573050062,
+ 0.43039505623957,
+ -0.02950123440401,
+ -0.96192469845158,
+ -0.77718195745223,
+ 0.48783573534718,
+ 0.94268954394233,
+ 26.9166000554346,
+ 0.96557896797855,
+ -89.7633798876611,
+ 0.88742271333402,
+ 146.933410633152
+ ],
+ [
+ "121",
+ "C",
+ "Bus(54)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80553088999997,
+ 0.42841479790408,
+ -0.03014375544344,
+ -0.96341326329526,
+ -0.7744738602199,
+ 0.4849551211002,
+ 0.94328471087183,
+ 26.7638922737467,
+ 0.9670750796579,
+ -89.611590814442,
+ 0.88089477460535,
+ 146.880031005369
+ ],
+ [
+ "122",
+ "C",
+ "Bus(55)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80444940009273,
+ 0.42702872946167,
+ -0.03059333063059,
+ -0.96445521084775,
+ -0.7725782115915,
+ 0.48293852499588,
+ 0.94370526043305,
+ 26.6571224833845,
+ 0.9681263189894,
+ -89.50560809212,
+ 0.87632563217961,
+ 146.842201526817
+ ],
+ [
+ "123",
+ "C",
+ "Bus(56)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80600485016847,
+ 0.43804503962308,
+ -0.02230276692308,
+ -0.94734086739845,
+ -0.78217529236864,
+ 0.49599147554042,
+ 0.90847681703425,
+ 26.9807984404423,
+ 0.97339720542925,
+ -91.1014090298127,
+ 0.90950529943541,
+ 148.876072885635
+ ],
+ [
+ "124",
+ "C",
+ "Bus(6)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80444948394936,
+ 0.42702863448708,
+ -0.03059349176042,
+ -0.96445525032637,
+ -0.77257819577602,
+ 0.48293866461283,
+ 0.94370530161431,
+ 26.6571135719083,
+ 0.96812637496454,
+ -89.5056165444174,
+ 0.87632566986834,
+ 146.842193617238
+ ],
+ [
+ "125",
+ "C",
+ "Bus(7)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8044497891307,
+ 0.42702761678525,
+ -0.03059460151541,
+ -0.96445609042342,
+ -0.76909851593298,
+ 0.48232484773532,
+ 0.94876334951539,
+ 26.3480813923484,
+ 0.97051873038749,
+ -89.1052095559006,
+ 0.86612390604872,
+ 146.63200421883
+ ],
+ [
+ "126",
+ "C",
+ "Bus(8)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80483309689473,
+ 0.427868572033,
+ -0.02957656456425,
+ -0.96327145360936,
+ -0.77105093402146,
+ 0.48353794787446,
+ 0.94406313799453,
+ 26.8103923664565,
+ 0.96536490127732,
+ -89.5150641714339,
+ 0.87724380019234,
+ 146.71154787344
+ ],
+ [
+ "127",
+ "C",
+ "Bus(9)",
+ "71",
+ null,
+ 1,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.80600496505275,
+ 0.43804494428582,
+ -0.0223029253647,
+ -0.94734090153743,
+ -0.78217525425995,
+ 0.49599164507572,
+ 0.90847685340191,
+ 26.9807894401489,
+ 0.97339725828385,
+ -91.1014193416434,
+ 0.90950536169281,
+ 148.876063906454
+ ],
+ [
+ "128",
+ "C",
+ "Terminal(1)",
+ "71",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.82279368860597,
+ 0.44360159197186,
+ -0.02266298393744,
+ -0.95358934747421,
+ -0.80227587867552,
+ 0.5089883395177,
+ 0.93475762976816,
+ 28.3309152256814,
+ 0.95385861345235,
+ -91.3614339805934,
+ 0.95011352756898,
+ 147.607709519518
+ ],
+ [
+ "129",
+ "C",
+ "Terminal",
+ "71",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.99999913609264,
+ -2.87005016241498e-6,
+ -0.49999708250997,
+ -0.86602471692507,
+ -0.50000205358267,
+ 0.86602758697523,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
},
"ElmTr2": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"],
- "Values": [
- ["130", "C", "2-Winding Transformer", "71", "525", "522", "516", 0]
- ]
+ "Values": [["130", "C", "2-Winding Transformer", "71", "525", "522", "516", 0]]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["131", "C", "External Grid", "71", "521", null, 0, 0, 0, 0, "PV", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["131", "C", "External Grid", "71", "521", null, 0, 0, 0, 0, "PV", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["132", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["132", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -308,7 +2498,26 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rX:4", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3", "rY:4"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rX:2",
+ "rX:3",
+ "rX:4",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1",
+ "rY:2",
+ "rY:3",
+ "rY:4"
+ ],
"Values": [
["264", "C", "GCO_1", "136", 1, 0, "2", 70, 70, null, null, null, "0", null, null, null, null, null],
["265", "C", "GCO_2", "136", 1, 0, "2", 70, 70, null, null, null, "0", null, null, null, null, null],
@@ -396,8 +2605,46 @@
["347", "C", "GCO_2", "238", 1, 0, "2", 70, 70, null, null, null, "2", 122.5, 83.125, null, null, null],
["348", "C", "GCO_1", "239", 1, 0, "2", 78.75, 70, null, null, null, "0", null, null, null, null, null],
["349", "C", "GCO_2", "239", 1, 0, "2", 78.75, 87.5, null, null, null, "0", null, null, null, null, null],
- ["350", "C", "GCO_1", "240", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 45.9375, 83.125, null, null, null],
- ["351", "C", "GCO_2", "240", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 45.9375, 26.25, null, null, null],
+ [
+ "350",
+ "C",
+ "GCO_1",
+ "240",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 45.9375,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "351",
+ "C",
+ "GCO_2",
+ "240",
+ 1,
+ 0,
+ "2",
+ 109.375,
+ 109.375,
+ null,
+ null,
+ null,
+ "2",
+ 45.9375,
+ 26.25,
+ null,
+ null,
+ null
+ ],
["352", "C", "GCO_1", "241", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 17.5, 26.25, null, null, null],
["353", "C", "GCO_2", "241", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 17.5, 8.75, null, null, null],
["354", "C", "GCO_1", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "0", null, null, null, null, null],
@@ -412,8 +2659,46 @@
["363", "C", "GCO_2", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "0", null, null, null, null, null],
["364", "C", "GCO_1", "248", 1, 0, "2", 142.1875, 131.25, null, null, null, "0", null, null, null, null, null],
["365", "C", "GCO_2", "248", 1, 0, "4", 142.1875, 153.125, 153.125, 175, null, "0", null, null, null, null, null],
- ["366", "C", "GCO_1", "250", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 45.9375, 83.125, null, null, null],
- ["367", "C", "GCO_2", "250", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 45.9375, 26.25, null, null, null],
+ [
+ "366",
+ "C",
+ "GCO_1",
+ "250",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 45.9375,
+ 83.125,
+ null,
+ null,
+ null
+ ],
+ [
+ "367",
+ "C",
+ "GCO_2",
+ "250",
+ 1,
+ 0,
+ "2",
+ 153.125,
+ 153.125,
+ null,
+ null,
+ null,
+ "2",
+ 45.9375,
+ 26.25,
+ null,
+ null,
+ null
+ ],
["368", "C", "GCO_1", "251", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 17.5, 26.25, null, null, null],
["369", "C", "GCO_2", "251", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 17.5, 8.75, null, null, null],
["370", "C", "GCO_1", "252", 1, 0, "2", 164.0625, 153.125, null, null, null, "2", 8.75, 8.75, null, null, null],
@@ -421,7 +2706,26 @@
["372", "C", "GCO_1", "253", 1, 0, "2", 175, 175, null, null, null, "0", null, null, null, null, null],
["373", "C", "GCO_2", "253", 1, 0, "2", 175, 175, null, null, null, "0", null, null, null, null, null],
["374", "C", "GCO_1", "254", 1, 0, "2", 181.5625, 175, null, null, null, "2", 8.75, 8.75, null, null, null],
- ["375", "C", "GCO_2", "254", 1, 0, "5", 181.5625, 188.125, 188.125, 196.875, 196.875, "5", 8.75, 8.75, 17.5, 17.5, 26.25],
+ [
+ "375",
+ "C",
+ "GCO_2",
+ "254",
+ 1,
+ 0,
+ "5",
+ 181.5625,
+ 188.125,
+ 188.125,
+ 196.875,
+ 196.875,
+ "5",
+ 8.75,
+ 8.75,
+ 17.5,
+ 17.5,
+ 26.25
+ ],
["376", "C", "GCO_1", "255", 1, 0, "2", 207.8125, 196.875, null, null, null, "2", 26.25, 26.25, null, null, null],
["377", "C", "GCO_2", "255", 1, 0, "2", 207.8125, 218.75, null, null, null, "2", 26.25, 26.25, null, null, null],
["378", "C", "GCO_1", "256", 1, 0, "2", 218.75, 218.75, null, null, null, "2", 17.5, 26.25, null, null, null],
@@ -433,7 +2737,26 @@
["384", "C", "GCO_1", "259", 1, 0, "2", 240.625, 218.75, null, null, null, "2", 8.75, 8.75, null, null, null],
["385", "C", "GCO_2", "259", 1, 0, "2", 240.625, 262.5, null, null, null, "2", 8.75, 8.75, null, null, null],
["386", "C", "GCO_1", "260", 1, 0, "2", 229.6875, 218.75, null, null, null, "0", null, null, null, null, null],
- ["387", "C", "GCO_2", "260", 1, 0, "4", 229.6875, 240.625, 240.625, 262.5, null, "0", null, null, null, null, null],
+ [
+ "387",
+ "C",
+ "GCO_2",
+ "260",
+ 1,
+ 0,
+ "4",
+ 229.6875,
+ 240.625,
+ 240.625,
+ 262.5,
+ null,
+ "0",
+ null,
+ null,
+ null,
+ null,
+ null
+ ],
["388", "C", "GCO_1", "261", 1, 0, "2", 262.5, 262.5, null, null, null, "0", null, null, null, null, null],
["389", "C", "GCO_2", "261", 1, 0, "2", 262.5, 262.5, null, null, null, "0", null, null, null, null, null],
["390", "C", "GCO_1", "262", 1, 0, "2", 52.5, 52.5, null, null, null, "0", null, null, null, null, null],
@@ -441,7 +2764,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["392", "C", "MV Line", null, "0", 1, null, "0", "0"],
["393", "C", "MV network", null, "0", 1, null, "0", "0"],
@@ -582,16 +2915,183 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["523", "C", "Overhead ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0734, 0.233639, 0.188, 0.0812, 0.258467, 0.4029, 0.3522, 1.121087, 0, 0.2894, 0.921188, 50.7512, 0.161546, 0.038950, 1.9768, 44.9735, 0.143155, 1.9768, 107.0929, 0.340887, 0, 0],
- ["524", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0]
+ [
+ "523",
+ "C",
+ "Overhead ZY full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0734,
+ 0.233639,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2894,
+ 0.921188,
+ 50.7512,
+ 0.161546,
+ 0.03895,
+ 1.9768,
+ 44.9735,
+ 0.143155,
+ 1.9768,
+ 107.0929,
+ 0.340887,
+ 0,
+ 0
+ ],
+ [
+ "524",
+ "C",
+ "ZY full 3P+N",
+ null,
+ 0.4,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 1,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0.4029,
+ 0.3522,
+ 1.121087,
+ 0,
+ 0.2471,
+ 0.786543,
+ 199.5807,
+ 0.635285,
+ 0.001853,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 116.5693,
+ 0.371051,
+ 0,
+ 0
+ ]
]
},
"TypTr2": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "frnom",
+ "strn",
+ "nt2ph",
+ "tr2cn_h",
+ "tr2cn_l",
+ "nt2ag",
+ "utrn_h",
+ "utrn_l",
+ "uktr",
+ "pcutr",
+ "uk0tr",
+ "ur0tr",
+ "pfe",
+ "curmg",
+ "zx0hl_n",
+ "rtox0_n",
+ "tapchtype",
+ "tap_side",
+ "dutap",
+ "phitr",
+ "nntap0",
+ "ntpmn",
+ "ntpmx"
+ ],
"Values": [
- ["525", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "525",
+ "C",
+ "Transformer 100 kVA Dyn11",
+ null,
+ 50,
+ 0.1,
+ 3,
+ "D",
+ "YN",
+ 11,
+ 20,
+ 0.4,
+ 4,
+ 2.15,
+ 4,
+ 2.15,
+ 0.21,
+ 2.5,
+ 100,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json
index 4c3368d2..20011dfc 100644
--- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json
+++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json
@@ -1,46 +1,231 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLodLV": {
- "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "typ_id",
+ "fold_id",
+ "bus1",
+ "phtech",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "c:sr:r",
+ "c:sr:i",
+ "c:ss:r",
+ "c:ss:i",
+ "c:st:r",
+ "c:st:i",
+ "m:P:bus1:A",
+ "m:Q:bus1:A",
+ "m:P:bus1:B",
+ "m:Q:bus1:B",
+ "m:P:bus1:C",
+ "m:Q:bus1:C",
+ "m:P:bus1:N",
+ "m:Q:bus1:N",
+ "m:ur:bus1:A",
+ "m:ur:bus1:B",
+ "m:ur:bus1:C",
+ "m:ur:bus1:N",
+ "m:ui:bus1:A",
+ "m:ui:bus1:B",
+ "m:ui:bus1:C",
+ "m:ui:bus1:N",
+ "m:I:bus1:A",
+ "m:I:bus1:B",
+ "m:I:bus1:C",
+ "m:I:bus1:N",
+ "m:phii:bus1:A",
+ "m:phii:bus1:B",
+ "m:phii:bus1:C",
+ "m:phii:bus1:N"
+ ],
"Values": [
- ["2", "C", "Low-Voltage Load", null, null, "24", 3, 50, 50, null, 0, 30, 30, null, 0, 10, 10, null, 0, 10, 10, null, 0, 0.03, -6.193888e-14, 0.01, 8.276077e-18, 0.01, 1.850372e-16, 0.02999999999986, -6.19388799509106e-14, 0.01000000000000, 8.27607658330602e-18, 0.00999999999999, 1.85037170770859e-16, -3.09416069861823e-24, -4.54612424524782e-24, 0.86327812365550, -0.01011780091448, -0.85525586421590, 3.07437086255205e-23, 0.46335749648298, -0.99340231565885, 0.50546581896798, 2.65739320274025e-22, 0.13258602144804, 0.04358659439897, 0.04358642311928, 0.08901358857711, 28.2243168657384, -90.5835372409592, 149.416435813395, -152.359487438943]
+ [
+ "2",
+ "C",
+ "Low-Voltage Load",
+ null,
+ null,
+ "24",
+ 3,
+ 50,
+ 50,
+ null,
+ 0,
+ 30,
+ 30,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ 10,
+ 10,
+ null,
+ 0,
+ 0.03,
+ -6.193888e-14,
+ 0.01,
+ 8.276077e-18,
+ 0.01,
+ 1.850372e-16,
+ 0.02999999999986,
+ -6.19388799509106e-14,
+ 0.01,
+ 8.27607658330602e-18,
+ 0.00999999999999,
+ 1.85037170770859e-16,
+ -3.09416069861823e-24,
+ -4.54612424524782e-24,
+ 0.8632781236555,
+ -0.01011780091448,
+ -0.8552558642159,
+ 3.07437086255205e-23,
+ 0.46335749648298,
+ -0.99340231565885,
+ 0.50546581896798,
+ 2.65739320274025e-22,
+ 0.13258602144804,
+ 0.04358659439897,
+ 0.04358642311928,
+ 0.08901358857711,
+ 28.2243168657384,
+ -90.5835372409592,
+ 149.416435813395,
+ -152.359487438943
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["3", "C", "MV/LV transformer", null, 50]
- ]
+ "Values": [["3", "C", "MV/LV transformer", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["4", "C", "Terminal(1)", "3", null, 0, 1, 0.4, 0, 0, 0, 0.8632781236555, 0.46335749648298, -0.01011780091448, -0.99340231565885, -0.85525586421590, 0.50546581896798, 0.97977001808033, 28.2243168656201, 0.99345383921535, -90.5835372409592, 0.99345774314797, 149.416435813396],
- ["5", "C", "Terminal", "3", null, 0, 0, 20, 0, 0, 0, 1.00000178018755, -1.39433529289247e-06, -0.49999968256399, -0.86602316492915, -0.50000209762356, 0.86602455926444, 0, 0, 0, 0, 0, 0]
+ [
+ "4",
+ "C",
+ "Terminal(1)",
+ "3",
+ null,
+ 0,
+ 1,
+ 0.4,
+ 0,
+ 0,
+ 0,
+ 0.8632781236555,
+ 0.46335749648298,
+ -0.01011780091448,
+ -0.99340231565885,
+ -0.8552558642159,
+ 0.50546581896798,
+ 0.97977001808033,
+ 28.2243168656201,
+ 0.99345383921535,
+ -90.5835372409592,
+ 0.99345774314797,
+ 149.416435813396
+ ],
+ [
+ "5",
+ "C",
+ "Terminal",
+ "3",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 1.00000178018755,
+ -1.39433529289247e-6,
+ -0.49999968256399,
+ -0.86602316492915,
+ -0.50000209762356,
+ 0.86602455926444,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
},
"ElmTr2": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"],
- "Values": [
- ["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]
- ]
+ "Values": [["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["8", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["8", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -55,7 +240,20 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1"
+ ],
"Values": [
["16", "C", "GCO_1", "13", 1, 0, "2", 56.875, 56.875, "2", 262.5, 240.625],
["17", "C", "GCO_1", "14", 1, 0, "2", 83.125, 83.125, "2", 140, 153.125],
@@ -64,7 +262,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["20", "C", "MV Line", null, "0", 1, null, "0", "0"],
["21", "C", "MV network", null, "0", 1, null, "0", "0"],
@@ -81,9 +289,65 @@
]
},
"TypTr2": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "frnom",
+ "strn",
+ "nt2ph",
+ "tr2cn_h",
+ "tr2cn_l",
+ "nt2ag",
+ "utrn_h",
+ "utrn_l",
+ "uktr",
+ "pcutr",
+ "uk0tr",
+ "ur0tr",
+ "pfe",
+ "curmg",
+ "zx0hl_n",
+ "rtox0_n",
+ "tapchtype",
+ "tap_side",
+ "dutap",
+ "phitr",
+ "nntap0",
+ "ntpmn",
+ "ntpmx"
+ ],
"Values": [
- ["27", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "27",
+ "C",
+ "Transformer 100 kVA Dyn11",
+ null,
+ 50,
+ 0.1,
+ 3,
+ "D",
+ "YN",
+ 11,
+ 20,
+ 0.4,
+ 4,
+ 2.15,
+ 4,
+ 2.15,
+ 0.21,
+ 2.5,
+ 100,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/MV_Line.json b/roseau/load_flow/tests/data/dgs/MV_Line.json
index 1fbc48df..81d07375 100644
--- a/roseau/load_flow/tests/data/dgs/MV_Line.json
+++ b/roseau/load_flow/tests/data/dgs/MV_Line.json
@@ -1,12 +1,23 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "Line Z diagonal - balanced", "10", "62", "58", "49", 10, 1, 20, "0", "0"],
["3", "C", "Line Z full - balanced", "10", "63", "59", "51", 10, 1, 20, "0", "0"],
@@ -15,41 +26,419 @@
]
},
"ElmLodmv": {
- "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "bus1",
+ "phtech",
+ "fold_id",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "sgini",
+ "pgini",
+ "cosgini",
+ "pfg_recap",
+ "sginir",
+ "pginir",
+ "cosginir",
+ "pfg_recapr",
+ "sginis",
+ "pginis",
+ "cosginis",
+ "pfg_recaps",
+ "sginit",
+ "pginit",
+ "cosginit",
+ "pfg_recapt",
+ "n:ur:bus1",
+ "n:ui:bus1",
+ "n:u:bus1",
+ "n:Ul:bus1",
+ "n:Pload:bus1",
+ "n:Qload:bus1"
+ ],
"Values": [
- ["6", "C", "Load Z diagonal - balanced", "50", null, "10", 5.555556, 5, null, 0, 1.851852, 1.666667, null, 0, 1.851852, 1.666667, null, 0, 1.851852, 1.666667, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.95360146100806, -0.02965592627949, 0.95406248244032, 19.0812496488244, 4.99995194333034, 2.42158471452648],
- ["7", "C", "Load Z full - balanced", "52", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97072640548537, 0.00123157021476, 0.97072718673773, 19.4145437346585, 4.99999620442837, 2.42160903574167],
- ["8", "C", "Load ZY diagonal - balanced", "54", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.95575446680952, -0.03082535439085, 0.95625143309679, 19.1250286619498, 4.99995567122653, 2.42158589702938],
- ["9", "C", "Load ZY full - balanced", "56", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97153582854532, -0.00054062426284, 0.97153597896416, 19.4307195791916, 4.99999662749313, 2.42160923978074]
+ [
+ "6",
+ "C",
+ "Load Z diagonal - balanced",
+ "50",
+ null,
+ "10",
+ 5.555556,
+ 5,
+ null,
+ 0,
+ 1.851852,
+ 1.666667,
+ null,
+ 0,
+ 1.851852,
+ 1.666667,
+ null,
+ 0,
+ 1.851852,
+ 1.666667,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.95360146100806,
+ -0.02965592627949,
+ 0.95406248244032,
+ 19.0812496488244,
+ 4.99995194333034,
+ 2.42158471452648
+ ],
+ [
+ "7",
+ "C",
+ "Load Z full - balanced",
+ "52",
+ null,
+ "10",
+ 5.555556,
+ 5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.97072640548537,
+ 0.00123157021476,
+ 0.97072718673773,
+ 19.4145437346585,
+ 4.99999620442837,
+ 2.42160903574167
+ ],
+ [
+ "8",
+ "C",
+ "Load ZY diagonal - balanced",
+ "54",
+ null,
+ "10",
+ 5.555556,
+ 5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.95575446680952,
+ -0.03082535439085,
+ 0.95625143309679,
+ 19.1250286619498,
+ 4.99995567122653,
+ 2.42158589702938
+ ],
+ [
+ "9",
+ "C",
+ "Load ZY full - balanced",
+ "56",
+ null,
+ "10",
+ 5.555556,
+ 5,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.97153582854532,
+ -0.00054062426284,
+ 0.97153597896416,
+ 19.4307195791916,
+ 4.99999662749313,
+ 2.42160923978074
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["10", "C", "MV Line", null, 50]
- ]
+ "Values": [["10", "C", "MV Line", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["11", "C", "Bus Z diagonal - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.95360146100806, -0.02965592627949, -0.50248351608889, -0.81101512708171, -0.45111794491737, 0.84067105335350, 0, 0, 0, 0, 0, 0],
- ["12", "C", "Bus Z full - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.97072640548537, 0.00123157021476, -0.48429663165188, -0.84128951236247, -0.48642977383174, 0.84005794214974, 0, 0, 0, 0, 0, 0],
- ["13", "C", "Bus ZY diagonal - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.95575446680952, -0.03082535439085, -0.50457277343915, -0.81229497074884, -0.45118169336897, 0.84312032513230, 0, 0, 0, 0, 0, 0],
- ["14", "C", "Bus ZY full - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.97153582854532, -0.00054062426284, -0.48623610861973, -0.84110439605704, -0.48529971992382, 0.84164502032167, 0, 0, 0, 0, 0, 0],
- ["15", "C", "Bus source", "10", null, 0, 0, 20, 0, 0, 0, 1.00000000000114, 1.47276594627909e-12, -0.50000000000182, -0.86602540378428, -0.49999999999920, 0.86602540378269, 0, 0, 0, 0, 0, 0]
+ [
+ "11",
+ "C",
+ "Bus Z diagonal - balanced",
+ "10",
+ null,
+ 1,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.95360146100806,
+ -0.02965592627949,
+ -0.50248351608889,
+ -0.81101512708171,
+ -0.45111794491737,
+ 0.8406710533535,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "12",
+ "C",
+ "Bus Z full - balanced",
+ "10",
+ null,
+ 1,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.97072640548537,
+ 0.00123157021476,
+ -0.48429663165188,
+ -0.84128951236247,
+ -0.48642977383174,
+ 0.84005794214974,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "13",
+ "C",
+ "Bus ZY diagonal - balanced",
+ "10",
+ null,
+ 1,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.95575446680952,
+ -0.03082535439085,
+ -0.50457277343915,
+ -0.81229497074884,
+ -0.45118169336897,
+ 0.8431203251323,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "14",
+ "C",
+ "Bus ZY full - balanced",
+ "10",
+ null,
+ 1,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.97153582854532,
+ -0.00054062426284,
+ -0.48623610861973,
+ -0.84110439605704,
+ -0.48529971992382,
+ 0.84164502032167,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "15",
+ "C",
+ "Bus source",
+ "10",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 1.00000000000114,
+ 1.47276594627909e-12,
+ -0.50000000000182,
+ -0.86602540378428,
+ -0.4999999999992,
+ 0.86602540378269,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["16", "C", "MV source", "10", "57", null, 0, 0, 0, 0, "SL", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["16", "C", "MV source", "10", "57", null, 0, 0, 0, 0, "SL", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["17", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -73,7 +462,20 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1"
+ ],
"Values": [
["34", "C", "GCO_1", "19", 1, 0, "2", 65.625, 65.625, "2", 120.3125, 153.125],
["35", "C", "GCO_2", "19", 1, 0, "2", 65.625, 65.625, "2", 120.3125, 87.5],
@@ -91,7 +493,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["47", "C", "MV Line", null, "0", 1, null, "0", "0"],
["48", "C", "MV network", null, "0", 1, null, "0", "0"]
@@ -116,12 +528,197 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["62", "C", "Z diagonal", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ["63", "C", "Z full", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ["64", "C", "ZY diagonal", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0, 0, 0, 0, 0, 0, 135.4058, 0.431010, 0.002731, 0.3699, 135.4058, 0.431010, 0.3699, 0, 0, 0, 0],
- ["65", "C", "ZY full", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0, 0, 0, 0, 0, 0, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 0, 0, 0, 0]
+ [
+ "62",
+ "C",
+ "Z diagonal",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "63",
+ "C",
+ "Z full",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "64",
+ "C",
+ "ZY diagonal",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0.188,
+ 0.3283,
+ 1.045011,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 135.4058,
+ 0.43101,
+ 0.002731,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "65",
+ "C",
+ "ZY full",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.188,
+ 0.0812,
+ 0.258467,
+ 0.188,
+ 0.8224,
+ 2.61778,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 199.5807,
+ 0.635285,
+ 0.001853,
+ 0.3699,
+ 135.4058,
+ 0.43101,
+ 0.3699,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/dgs/MV_Network.json b/roseau/load_flow/tests/data/dgs/MV_Network.json
index 37e2c2e5..57c0ed99 100644
--- a/roseau/load_flow/tests/data/dgs/MV_Network.json
+++ b/roseau/load_flow/tests/data/dgs/MV_Network.json
@@ -1,12 +1,23 @@
{
"General": {
"Attributes": ["FID", "Descr", "Val"],
- "Values": [
- ["1", "Version", "7.0"]
- ]
+ "Values": [["1", "Version", "7.0"]]
},
"ElmLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "bus1",
+ "bus2",
+ "dline",
+ "nlnum",
+ "Unom",
+ "GPScoords:SIZEROW",
+ "GPScoords:SIZECOL"
+ ],
"Values": [
["2", "C", "Ligne HTA de secours", "14", "96", "93", "67", 10, 1, 20, "0", "0"],
["3", "C", "Ligne HTA(1)", "14", "96", "68", "69", 10, 1, 20, "0", "0"],
@@ -17,44 +28,536 @@
]
},
"ElmLodmv": {
- "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "bus1",
+ "phtech",
+ "fold_id",
+ "slini",
+ "plini",
+ "coslini",
+ "pf_recap",
+ "slinir",
+ "plinir",
+ "coslinir",
+ "pf_recapr",
+ "slinis",
+ "plinis",
+ "coslinis",
+ "pf_recaps",
+ "slinit",
+ "plinit",
+ "coslinit",
+ "pf_recapt",
+ "sgini",
+ "pgini",
+ "cosgini",
+ "pfg_recap",
+ "sginir",
+ "pginir",
+ "cosginir",
+ "pfg_recapr",
+ "sginis",
+ "pginis",
+ "cosginis",
+ "pfg_recaps",
+ "sginit",
+ "pginit",
+ "cosginit",
+ "pfg_recapt",
+ "n:ur:bus1",
+ "n:ui:bus1",
+ "n:u:bus1",
+ "n:Ul:bus1",
+ "n:Pload:bus1",
+ "n:Qload:bus1"
+ ],
"Values": [
- ["8", "C", "Charge MT(1)", "72", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97718469323296, 0.00021920381198, 0.97718471781905, 19.5436943563578, 1.77999958456488, 0.91192090708617],
- ["9", "C", "Charge MT(2)", "95", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 1.00000000000068, 1.06314838839795e-12, 1.00000000000068, 20.0000000000243, 1.77999997138977, 0.91192110505921],
- ["10", "C", "Charge MT(3)", "79", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.96287347146259, 0.00034236347900, 0.96287353232872, 19.2574706459395, 1.77999067303781, 0.91191634969758],
- ["11", "C", "Charge MT(4)", "84", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.93735687106405, 0.00057502350702, 0.93735704743872, 18.7471409475972, 1.77996812354939, 0.91190483604950],
- ["12", "C", "Charge MT(5)", "90", null, "14", 2.247191, 2, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.92376412214234, 0.00069806790244, 0.92376438589946, 18.4752877164848, 1.99994163788955, 1.02460067630279],
- ["13", "C", "Charge MT", "66", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.98862542499333, 0.00010960557293, 0.98862543106913, 19.7725086213794, 1.77999990231993, 0.91192106969301]
+ [
+ "8",
+ "C",
+ "Charge MT(1)",
+ "72",
+ null,
+ "14",
+ 2,
+ 1.78,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.97718469323296,
+ 0.00021920381198,
+ 0.97718471781905,
+ 19.5436943563578,
+ 1.77999958456488,
+ 0.91192090708617
+ ],
+ [
+ "9",
+ "C",
+ "Charge MT(2)",
+ "95",
+ null,
+ "14",
+ 2,
+ 1.78,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 1.00000000000068,
+ 1.06314838839795e-12,
+ 1.00000000000068,
+ 20.0000000000243,
+ 1.77999997138977,
+ 0.91192110505921
+ ],
+ [
+ "10",
+ "C",
+ "Charge MT(3)",
+ "79",
+ null,
+ "14",
+ 2,
+ 1.78,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.96287347146259,
+ 0.000342363479,
+ 0.96287353232872,
+ 19.2574706459395,
+ 1.77999067303781,
+ 0.91191634969758
+ ],
+ [
+ "11",
+ "C",
+ "Charge MT(4)",
+ "84",
+ null,
+ "14",
+ 2,
+ 1.78,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.93735687106405,
+ 0.00057502350702,
+ 0.93735704743872,
+ 18.7471409475972,
+ 1.77996812354939,
+ 0.9119048360495
+ ],
+ [
+ "12",
+ "C",
+ "Charge MT(5)",
+ "90",
+ null,
+ "14",
+ 2.247191,
+ 2,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.92376412214234,
+ 0.00069806790244,
+ 0.92376438589946,
+ 18.4752877164848,
+ 1.99994163788955,
+ 1.02460067630279
+ ],
+ [
+ "13",
+ "C",
+ "Charge MT",
+ "66",
+ null,
+ "14",
+ 2,
+ 1.78,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0,
+ 0,
+ null,
+ 0,
+ 0.98862542499333,
+ 0.00010960557293,
+ 0.98862543106913,
+ 19.7725086213794,
+ 1.77999990231993,
+ 0.91192106969301
+ ]
]
},
"ElmNet": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"],
- "Values": [
- ["14", "C", "Réseau MV", null, 50]
- ]
+ "Values": [["14", "C", "Réseau MV", null, 50]]
},
"ElmTerm": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "typ_id",
+ "iUsage",
+ "phtech",
+ "uknom",
+ "outserv",
+ "GPSlat",
+ "GPSlon",
+ "m:ur:A",
+ "m:ui:A",
+ "m:ur:B",
+ "m:ui:B",
+ "m:ur:C",
+ "m:ui:C",
+ "m:uln:A",
+ "m:phiuln:A",
+ "m:uln:B",
+ "m:phiuln:B",
+ "m:uln:C",
+ "m:phiuln:C"
+ ],
"Values": [
- ["15", "C", "Terminal(1)", "14", null, 0, 0, 20, 0, 0, 0, 0.98862542499333, 0.00010960557293, -0.49421779128782, -0.85622953565434, -0.49440763370537, 0.85611993008151, 0, 0, 0, 0, 0, 0],
- ["16", "C", "Terminal(2)", "14", null, 0, 0, 20, 0, 0, 0, 0.97718469323296, 0.00021920381198, -0.48840251054832, -0.84637637042818, -0.48878218268438, 0.84615716661630, 0, 0, 0, 0, 0, 0],
- ["17", "C", "Terminal(3)", "14", null, 0, 0, 20, 0, 0, 0, 0.96287347146259, 0.00034236347900, -0.48114024025879, -0.83404406855041, -0.48173323119701, 0.83370170507161, 0, 0, 0, 0, 0, 0],
- ["18", "C", "Terminal(4)", "14", null, 0, 0, 20, 0, 0, 0, 0.93735687106405, 0.00057502350702, -0.46818045056116, -0.81206237431359, -0.46917642049007, 0.81148735080684, 0, 0, 0, 0, 0, 0],
- ["19", "C", "Terminal(5)", "14", null, 0, 0, 20, 0, 0, 0, 0.92376412214234, 0.00069806790244, -0.46127751652580, -0.80035223058522, -0.46248660559988, 0.79965416268311, 0, 0, 0, 0, 0, 0],
- ["20", "C", "Terminal", "14", null, 0, 0, 20, 0, 0, 0, 1.00000000000068, 1.06314838839795e-12, -0.50000000000119, -0.86602540378434, -0.49999999999941, 0.86602540378339, 0, 0, 0, 0, 0, 0]
+ [
+ "15",
+ "C",
+ "Terminal(1)",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.98862542499333,
+ 0.00010960557293,
+ -0.49421779128782,
+ -0.85622953565434,
+ -0.49440763370537,
+ 0.85611993008151,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "16",
+ "C",
+ "Terminal(2)",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.97718469323296,
+ 0.00021920381198,
+ -0.48840251054832,
+ -0.84637637042818,
+ -0.48878218268438,
+ 0.8461571666163,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "17",
+ "C",
+ "Terminal(3)",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.96287347146259,
+ 0.000342363479,
+ -0.48114024025879,
+ -0.83404406855041,
+ -0.48173323119701,
+ 0.83370170507161,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "18",
+ "C",
+ "Terminal(4)",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.93735687106405,
+ 0.00057502350702,
+ -0.46818045056116,
+ -0.81206237431359,
+ -0.46917642049007,
+ 0.81148735080684,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "19",
+ "C",
+ "Terminal(5)",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 0.92376412214234,
+ 0.00069806790244,
+ -0.4612775165258,
+ -0.80035223058522,
+ -0.46248660559988,
+ 0.79965416268311,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ "20",
+ "C",
+ "Terminal",
+ "14",
+ null,
+ 0,
+ 0,
+ 20,
+ 0,
+ 0,
+ 0,
+ 1.00000000000068,
+ 1.06314838839795e-12,
+ -0.50000000000119,
+ -0.86602540378434,
+ -0.49999999999941,
+ 0.86602540378339,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
},
"ElmXnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"],
- "Values": [
- ["21", "C", "Source 20 kV", "14", "91", null, 0, 0, 0, 0, "SL", 0, 1, 0]
- ]
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "bus1",
+ "GPSlat",
+ "GPSlon",
+ "pgini",
+ "qgini",
+ "sgini",
+ "bustp",
+ "uset_mode",
+ "usetp",
+ "iintgnd"
+ ],
+ "Values": [["21", "C", "Source 20 kV", "14", "91", null, 0, 0, 0, 0, "SL", 0, 1, 0]]
},
"IntCase": {
"Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"],
- "Values": [
- ["22", "C", "Study Case(1)", "M", "k", "M"]
- ]
+ "Values": [["22", "C", "Study Case(1)", "M", "k", "M"]]
},
"IntGrf": {
"Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"],
@@ -83,7 +586,24 @@
]
},
"IntGrfcon": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "iLinSt",
+ "rLinWd",
+ "rX:SIZEROW",
+ "rX:0",
+ "rX:1",
+ "rX:2",
+ "rX:3",
+ "rY:SIZEROW",
+ "rY:0",
+ "rY:1",
+ "rY:2",
+ "rY:3"
+ ],
"Values": [
["44", "C", "GCO_1", "26", 1, 0, "2", 91.875, 91.875, null, null, "2", 196.875, 175, null, null],
["45", "C", "GCO_1", "32", 1, 0, "2", 74.375, 74.375, null, null, "2", 146.5625, 175, null, null],
@@ -107,7 +627,17 @@
]
},
"IntGrfnet": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "sBordSym:SIZEROW",
+ "snap_on",
+ "ortho_on",
+ "sSubstTyp:SIZEROW",
+ "sSymbol:SIZEROW"
+ ],
"Values": [
["63", "C", "MV Line", null, "0", 1, null, "0", "0"],
["64", "C", "MV network", null, "0", 1, null, "0", "0"]
@@ -150,9 +680,83 @@
]
},
"TypLne": {
- "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"],
+ "Attributes": [
+ "FID",
+ "OP",
+ "loc_name",
+ "fold_id",
+ "uline",
+ "sline",
+ "InomAir",
+ "mlei",
+ "cohl_",
+ "systp",
+ "nlnph",
+ "nneutral",
+ "frnom",
+ "rline",
+ "xline",
+ "lline",
+ "rline0",
+ "xline0",
+ "lline0",
+ "rnline",
+ "xnline",
+ "lnline",
+ "rpnline",
+ "xpnline",
+ "lpnline",
+ "bline",
+ "cline",
+ "tline",
+ "gline",
+ "bline0",
+ "cline0",
+ "gline0",
+ "bnline",
+ "cnline",
+ "bpnline",
+ "cpnline"
+ ],
"Values": [
- ["96", "C", "Ligne HTA", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
+ [
+ "96",
+ "C",
+ "Ligne HTA",
+ null,
+ 20,
+ 1,
+ 1,
+ "Cu",
+ 0,
+ 0,
+ 3,
+ 0,
+ 50,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0.2,
+ 0.1,
+ 0.318309,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
]
}
}
diff --git a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json
index 396e36ff..86a3f134 100644
--- a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json
@@ -1,1834 +1,1591 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 50,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 50,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 542,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856978967864625, 45.69219040555863]
- }
- },
- {
- "id": 1364,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855867232318871, 45.69136027006984]
- }
- },
- {
- "id": 1365,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855846104884748, 45.69144901085738]
- }
- },
- {
- "id": 1366,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85588829377169, 45.69161122844266]
- }
- },
- {
- "id": 1367,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855860204231766, 45.69176818400519]
- }
- },
- {
- "id": 51,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855869182087027, 45.69136049630226]
- }
- },
- {
- "id": 1663,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856370661831063, 45.69110851750263]
- }
- },
- {
- "id": 1664,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856375306784422, 45.69110589277815]
- }
- },
- {
- "id": 1665,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856382029776952, 45.69110208720114]
- }
- },
- {
- "id": 1666,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856387024934563, 45.69109925657929]
- }
- },
- {
- "id": 2081,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855854534153559, 45.69135896213488]
- }
- },
- {
- "id": 2082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855816427653202, 45.69135505659377]
- }
- },
- {
- "id": 2083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855791018908654, 45.6913524499912]
- }
- },
- {
- "id": 2084,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855786863583238, 45.69135202127266]
- }
- },
- {
- "id": 2085,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85563566314481, 45.69133651542809]
- }
- },
- {
- "id": 2086,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855622952159835, 45.69133520775522]
- }
- },
- {
- "id": 2087,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855600498514187, 45.69133290377598]
- }
- },
- {
- "id": 2088,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855587787530867, 45.69133159609905]
- }
- },
- {
- "id": 2089,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855407023176602, 45.69131305456497]
- }
- },
- {
- "id": 2090,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855368916328575, 45.69130913987988]
- }
- },
- {
- "id": 2091,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855356218598147, 45.6913078408805]
- }
- },
- {
- "id": 2156,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85685262162569, 45.69253367223592]
- }
- },
- {
- "id": 2157,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856851022816997, 45.69253802876519]
- }
- },
- {
- "id": 2488,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856738631522436, 45.69216124238103]
- }
- },
- {
- "id": 2489,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.8563875660472, 45.69228111612342]
- }
- },
- {
- "id": 2490,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856292856235074, 45.69232748538923]
- }
- },
- {
- "id": 2491,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856208673924059, 45.69236870335052]
- }
- },
- {
- "id": 2492,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856029618601329, 45.69250467560685]
- }
- },
- {
- "id": 2493,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855930737267387, 45.69267072873552]
- }
- },
- {
- "id": 2494,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855888072041425, 45.69274239200233]
- }
- },
- {
- "id": 2588,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855825999456157, 45.69273095075617]
- }
- },
- {
- "id": 2589,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855788745488097, 45.6927240826258]
- }
- },
- {
- "id": 2590,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855676659986405, 45.69270342242253]
- }
- },
- {
- "id": 2591,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855670455137178, 45.69270227463329]
- }
- },
- {
- "id": 2649,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85591518390002, 45.69139520669937]
- }
- },
- {
- "id": 2650,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855915068012751, 45.69139520030173]
- }
- },
- {
- "id": 2846,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856360725716369, 45.69102412913973]
- }
- },
- {
- "id": 2847,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856383793336582, 45.69086300169013]
- }
- },
- {
- "id": 2848,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856390704015929, 45.69081473478015]
- }
- },
- {
- "id": 2849,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856458006484099, 45.69111484486989]
- }
- },
- {
- "id": 2850,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856636058726183, 45.69113194244653]
- }
- },
- {
- "id": 2851,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856800333523847, 45.69114772016799]
- }
- },
- {
- "id": 2852,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856801404224056, 45.69114782212127]
- }
- },
- {
- "id": 2853,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856806693572222, 45.69114833332971]
- }
- },
- {
- "id": 2933,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85627431413481, 45.69280960338721]
- }
- },
- {
- "id": 2934,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856417860286734, 45.69283457875029]
- }
- },
- {
- "id": 2935,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856423816029007, 45.69283561508038]
- }
- },
- {
- "id": 2936,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856424087948438, 45.69283566297754]
- }
- },
- {
- "id": 3399,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855763551680219, 45.69182738723423]
- }
- },
- {
- "id": 3400,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855398849537063, 45.69194059727197]
- }
- },
- {
- "id": 3401,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855416724230305, 45.69181947119029]
- }
- },
- {
- "id": 3402,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855418952830454, 45.69181736884877]
- }
- },
- {
- "id": 3403,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855420553793683, 45.69181586568582]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 50,
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line243",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 542,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856006369563374, 45.69145685074764],
- [4.856041286384759, 45.6914589736374],
- [4.85608611929476, 45.69142826223273],
- [4.85710799403576, 45.691501610824],
- [4.857207269582688, 45.69156598849194],
- [4.856978967864625, 45.69219040555863]
- ]
- },
- "length": 0.1698047886136108,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1213",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 1663,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856000594306501, 45.69144599899529],
- [4.856024490964286, 45.69142874679027],
- [4.856042739971293, 45.69129421833258],
- [4.856370661831063, 45.69110851750263]
- ]
- },
- "length": 0.0505315521261473,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line987",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 51,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855988721281017, 45.6914422332006],
- [4.855996361520631, 45.6913753713747],
- [4.855869182087027, 45.69136049630226]
- ]
- },
- "length": 0.0174985508964364,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2112",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 2649,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855971166936666, 45.69144819937015],
- [4.855950443311009, 45.69143851158069],
- [4.855955048725805, 45.69139880266571],
- [4.85591518390002, 45.69139520669937]
- ]
- },
- "length": 0.0094992002360799,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line2113",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2649,
- "bus2": 2650,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85591518390002, 45.69139520669937],
- [4.855915068012751, 45.69139520030173]
- ]
- },
- "length": 9.054749376593195e-06,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line988",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 51,
- "bus2": 1364,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855869182087027, 45.69136049630226],
- [4.855867232318871, 45.69136027006984]
- ]
- },
- "length": 0.0001539404843332,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line952",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 1365,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855846104884748, 45.69144901085738]
- ]
- },
- "length": 0.0099994696006292,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1576",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 2081,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855854534153559, 45.69135896213488]
- ]
- },
- "length": 0.0009997222679235,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1577",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2081,
- "bus2": 2082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855854534153559, 45.69135896213488],
- [4.855816427653202, 45.69135505659377]
- ]
- },
- "length": 0.0029997976524975,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1578",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2082,
- "bus2": 2083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855816427653202, 45.69135505659377],
- [4.855791018908654, 45.6913524499912]
- ]
- },
- "length": 0.002000251978809,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1579",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2083,
- "bus2": 2084,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855791018908654, 45.6913524499912],
- [4.855786863583238, 45.69135202127266]
- ]
- },
- "length": 0.0003271589286956,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1580",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2084,
- "bus2": 2085,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855786863583238, 45.69135202127266],
- [4.85563566314481, 45.69133651542809]
- ]
- },
- "length": 0.0119028646292776,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line953",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1365,
- "bus2": 1366,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855846104884748, 45.69144901085738],
- [4.855845684286097, 45.69145076654667],
- [4.855901120337955, 45.69153953345657],
- [4.85588829377169, 45.69161122844266]
- ]
- },
- "length": 0.0189984078266001,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1581",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2085,
- "bus2": 2086,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85563566314481, 45.69133651542809],
- [4.855622952159835, 45.69133520775522]
- ]
- },
- "length": 0.0010007064087425,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1582",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2086,
- "bus2": 2087,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855622952159835, 45.69133520775522],
- [4.855600498514187, 45.69133290377598]
- ]
- },
- "length": 0.0017676269548577,
- "params_id": "S_AL_240",
- "ground": "ground"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line1583",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2087,
- "bus2": 2088,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855600498514187, 45.69133290377598],
- [4.855587787530867, 45.69133159609905]
- ]
- },
- "length": 0.0010007064104751,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1584",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2088,
- "bus2": 2089,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855587787530867, 45.69133159609905],
- [4.855407023176602, 45.69131305456497]
- ]
- },
- "length": 0.0142302752899377,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line954",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1366,
- "bus2": 1367,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85588829377169, 45.69161122844266],
- [4.855860204231766, 45.69176818400519]
- ]
- },
- "length": 0.0175815455828478,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1214",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1663,
- "bus2": 1664,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856370661831063, 45.69110851750263],
- [4.856375306784422, 45.69110589277815]
- ]
- },
- "length": 0.0004647694653149,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1215",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1664,
- "bus2": 1665,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856375306784422, 45.69110589277815],
- [4.856382029776952, 45.69110208720114]
- ]
- },
- "length": 0.000673157746019,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1216",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1665,
- "bus2": 1666,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856382029776952, 45.69110208720114],
- [4.856387024934563, 45.69109925657929]
- ]
- },
- "length": 0.0005003696964554,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2308",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2846,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.856355663247043, 45.69105945574269],
- [4.856360725716369, 45.69102412913973]
- ]
- },
- "length": 0.0089995012028159,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2311",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2849,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.85640419839692, 45.69110967215316],
- [4.856458006484099, 45.69111484486989]
- ]
- },
- "length": 0.0059995904338227,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1585",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2089,
- "bus2": 2090,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855407023176602, 45.69131305456497],
- [4.855368916328575, 45.69130913987988]
- ]
- },
- "length": 0.0029999740821226,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1586",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2090,
- "bus2": 2091,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855368916328575, 45.69130913987988],
- [4.855356218598147, 45.6913078408805]
- ]
- },
- "length": 0.0009995457086402,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2312",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2849,
- "bus2": 2850,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856458006484099, 45.69111484486989],
- [4.856636058726183, 45.69113194244653]
- ]
- },
- "length": 0.0139986419668756,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2309",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2846,
- "bus2": 2847,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856360725716369, 45.69102412913973],
- [4.856383793336582, 45.69086300169013]
- ]
- },
- "length": 0.0179984696461502,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2832",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1367,
- "bus2": 3399,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855860204231766, 45.69176818400519],
- [4.855763551680219, 45.69182738723423]
- ]
- },
- "length": 0.0099988303999178,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2313",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2850,
- "bus2": 2851,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856636058726183, 45.69113194244653],
- [4.856800333523847, 45.69114772016799]
- ]
- },
- "length": 0.0129154893237343,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2833",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3399,
- "bus2": 3400,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855763551680219, 45.69182738723423],
- [4.855584089016939, 45.69193730935378],
- [4.855398849537063, 45.69194059727197]
- ]
- },
- "length": 0.0329985491086803,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2310",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2847,
- "bus2": 2848,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856383793336582, 45.69086300169013],
- [4.856390704015929, 45.69081473478015]
- ]
- },
- "length": 0.0053915783689662,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2851,
- "bus2": 2852,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856800333523847, 45.69114772016799],
- [4.856801404224056, 45.69114782212127]
- ]
- },
- "length": 8.41665220926229e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2315",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2852,
- "bus2": 2853,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856801404224056, 45.69114782212127],
- [4.856806693572222, 45.69114833332971]
- ]
- },
- "length": 0.0004159034442303,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2834",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3400,
- "bus2": 3401,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855398849537063, 45.69194059727197],
- [4.855392869155902, 45.69194070460053],
- [4.855387309011729, 45.69184721664104],
- [4.855416724230305, 45.69181947119029]
- ]
- },
- "length": 0.0147075358057835,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2835",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3401,
- "bus2": 3402,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855416724230305, 45.69181947119029],
- [4.855418952830454, 45.69181736884877]
- ]
- },
- "length": 0.0002910897047899,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2836",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3402,
- "bus2": 3403,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855418952830454, 45.69181736884877],
- [4.855420553793683, 45.69181586568582]
- ]
- },
- "length": 0.0002084777079536,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1646",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2156,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.85685262162569, 45.69253367223592]
- ]
- },
- "length": 0.0394013052961165,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1960",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2488,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.856738631522436, 45.69216124238103]
- ]
- },
- "length": 0.0189987578088231,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1961",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2488,
- "bus2": 2489,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856738631522436, 45.69216124238103],
- [4.85665349107763, 45.69215091411277],
- [4.8563875660472, 45.69228111612342]
- ]
- },
- "length": 0.0319981744631324,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1647",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2156,
- "bus2": 2157,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85685262162569, 45.69253367223592],
- [4.856851022816997, 45.69253802876519]
- ]
- },
- "length": 0.0004999657082792,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1962",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2489,
- "bus2": 2490,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.8563875660472, 45.69228111612342],
- [4.856292856235074, 45.69232748538923]
- ]
- },
- "length": 0.008999023393858,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1963",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2490,
- "bus2": 2491,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856292856235074, 45.69232748538923],
- [4.856208673924059, 45.69236870335052]
- ]
- },
- "length": 0.0079989134977189,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1964",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2491,
- "bus2": 2492,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856208673924059, 45.69236870335052],
- [4.856140935805975, 45.69240186471046],
- [4.856052674911791, 45.69246595632609],
- [4.856029618601329, 45.69250467560685]
- ]
- },
- "length": 0.0209990509945453,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1965",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2492,
- "bus2": 2493,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856029618601329, 45.69250467560685],
- [4.855930737267387, 45.69267072873552]
- ]
- },
- "length": 0.0199986363582786,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1966",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2493,
- "bus2": 2494,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855930737267387, 45.69267072873552],
- [4.855888072041425, 45.69274239200233]
- ]
- },
- "length": 0.008630510320176,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2389",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2933,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.85627431413481, 45.69280960338721]
- ]
- },
- "length": 0.0309983265742373,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2056",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2588,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.855825999456157, 45.69273095075617]
- ]
- },
- "length": 0.0049993261430797,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2057",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2588,
- "bus2": 2589,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855825999456157, 45.69273095075617],
- [4.855788745488097, 45.6927240826258]
- ]
- },
- "length": 0.003000476475499,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2058",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2589,
- "bus2": 2590,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855788745488097, 45.6927240826258],
- [4.855676659986405, 45.69270342242253]
- ]
- },
- "length": 0.0090273856534237,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2059",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2590,
- "bus2": 2591,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855676659986405, 45.69270342242253],
- [4.855670455137178, 45.69270227463329]
- ]
- },
- "length": 0.0004998552042313,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2390",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2933,
- "bus2": 2934,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85627431413481, 45.69280960338721],
- [4.856417860286734, 45.69283457875029]
- ]
- },
- "length": 0.0115203641917798,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2391",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2934,
- "bus2": 2935,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856417860286734, 45.69283457875029],
- [4.856423816029007, 45.69283561508038]
- ]
- },
- "length": 0.0004779834842022,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2392",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2935,
- "bus2": 2936,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856423816029007, 45.69283561508038],
- [4.856424087948438, 45.69283566297754]
- ]
- },
- "length": 2.183881197426037e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3403,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001285539713848,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001285539713848,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001285539713848,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- },
- {
- "id": "S_AL_35",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 5.899911003441632e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5.899911003441632e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5.899911003441632e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 7.935663042967819e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 7.935663042967819e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 7.935663042967819e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 50,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 50,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 542,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856978967864625, 45.69219040555863]
+ }
+ },
+ {
+ "id": 1364,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855867232318871, 45.69136027006984]
+ }
+ },
+ {
+ "id": 1365,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855846104884748, 45.69144901085738]
+ }
+ },
+ {
+ "id": 1366,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85588829377169, 45.69161122844266]
+ }
+ },
+ {
+ "id": 1367,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855860204231766, 45.69176818400519]
+ }
+ },
+ {
+ "id": 51,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855869182087027, 45.69136049630226]
+ }
+ },
+ {
+ "id": 1663,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856370661831063, 45.69110851750263]
+ }
+ },
+ {
+ "id": 1664,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856375306784422, 45.69110589277815]
+ }
+ },
+ {
+ "id": 1665,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856382029776952, 45.69110208720114]
+ }
+ },
+ {
+ "id": 1666,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856387024934563, 45.69109925657929]
+ }
+ },
+ {
+ "id": 2081,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855854534153559, 45.69135896213488]
+ }
+ },
+ {
+ "id": 2082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855816427653202, 45.69135505659377]
+ }
+ },
+ {
+ "id": 2083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855791018908654, 45.6913524499912]
+ }
+ },
+ {
+ "id": 2084,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855786863583238, 45.69135202127266]
+ }
+ },
+ {
+ "id": 2085,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85563566314481, 45.69133651542809]
+ }
+ },
+ {
+ "id": 2086,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855622952159835, 45.69133520775522]
+ }
+ },
+ {
+ "id": 2087,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855600498514187, 45.69133290377598]
+ }
+ },
+ {
+ "id": 2088,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855587787530867, 45.69133159609905]
+ }
+ },
+ {
+ "id": 2089,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855407023176602, 45.69131305456497]
+ }
+ },
+ {
+ "id": 2090,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855368916328575, 45.69130913987988]
+ }
+ },
+ {
+ "id": 2091,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855356218598147, 45.6913078408805]
+ }
+ },
+ {
+ "id": 2156,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85685262162569, 45.69253367223592]
+ }
+ },
+ {
+ "id": 2157,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856851022816997, 45.69253802876519]
+ }
+ },
+ {
+ "id": 2488,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856738631522436, 45.69216124238103]
+ }
+ },
+ {
+ "id": 2489,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.8563875660472, 45.69228111612342]
+ }
+ },
+ {
+ "id": 2490,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856292856235074, 45.69232748538923]
+ }
+ },
+ {
+ "id": 2491,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856208673924059, 45.69236870335052]
+ }
+ },
+ {
+ "id": 2492,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856029618601329, 45.69250467560685]
+ }
+ },
+ {
+ "id": 2493,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855930737267387, 45.69267072873552]
+ }
+ },
+ {
+ "id": 2494,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855888072041425, 45.69274239200233]
+ }
+ },
+ {
+ "id": 2588,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855825999456157, 45.69273095075617]
+ }
+ },
+ {
+ "id": 2589,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855788745488097, 45.6927240826258]
+ }
+ },
+ {
+ "id": 2590,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855676659986405, 45.69270342242253]
+ }
+ },
+ {
+ "id": 2591,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855670455137178, 45.69270227463329]
+ }
+ },
+ {
+ "id": 2649,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85591518390002, 45.69139520669937]
+ }
+ },
+ {
+ "id": 2650,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855915068012751, 45.69139520030173]
+ }
+ },
+ {
+ "id": 2846,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856360725716369, 45.69102412913973]
+ }
+ },
+ {
+ "id": 2847,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856383793336582, 45.69086300169013]
+ }
+ },
+ {
+ "id": 2848,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856390704015929, 45.69081473478015]
+ }
+ },
+ {
+ "id": 2849,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856458006484099, 45.69111484486989]
+ }
+ },
+ {
+ "id": 2850,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856636058726183, 45.69113194244653]
+ }
+ },
+ {
+ "id": 2851,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856800333523847, 45.69114772016799]
+ }
+ },
+ {
+ "id": 2852,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856801404224056, 45.69114782212127]
+ }
+ },
+ {
+ "id": 2853,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856806693572222, 45.69114833332971]
+ }
+ },
+ {
+ "id": 2933,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85627431413481, 45.69280960338721]
+ }
+ },
+ {
+ "id": 2934,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856417860286734, 45.69283457875029]
+ }
+ },
+ {
+ "id": 2935,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856423816029007, 45.69283561508038]
+ }
+ },
+ {
+ "id": 2936,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856424087948438, 45.69283566297754]
+ }
+ },
+ {
+ "id": 3399,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855763551680219, 45.69182738723423]
+ }
+ },
+ {
+ "id": 3400,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855398849537063, 45.69194059727197]
+ }
+ },
+ {
+ "id": 3401,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855416724230305, 45.69181947119029]
+ }
+ },
+ {
+ "id": 3402,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855418952830454, 45.69181736884877]
+ }
+ },
+ {
+ "id": 3403,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855420553793683, 45.69181586568582]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 50,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line243",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 542,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856006369563374, 45.69145685074764],
+ [4.856041286384759, 45.6914589736374],
+ [4.85608611929476, 45.69142826223273],
+ [4.85710799403576, 45.691501610824],
+ [4.857207269582688, 45.69156598849194],
+ [4.856978967864625, 45.69219040555863]
+ ]
+ },
+ "length": 0.1698047886136108,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1213",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 1663,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856000594306501, 45.69144599899529],
+ [4.856024490964286, 45.69142874679027],
+ [4.856042739971293, 45.69129421833258],
+ [4.856370661831063, 45.69110851750263]
+ ]
+ },
+ "length": 0.0505315521261473,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line987",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 51,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855988721281017, 45.6914422332006],
+ [4.855996361520631, 45.6913753713747],
+ [4.855869182087027, 45.69136049630226]
+ ]
+ },
+ "length": 0.0174985508964364,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2112",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 2649,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855971166936666, 45.69144819937015],
+ [4.855950443311009, 45.69143851158069],
+ [4.855955048725805, 45.69139880266571],
+ [4.85591518390002, 45.69139520669937]
+ ]
+ },
+ "length": 0.0094992002360799,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line2113",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2649,
+ "bus2": 2650,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85591518390002, 45.69139520669937],
+ [4.855915068012751, 45.69139520030173]
+ ]
+ },
+ "length": 9.054749376593195e-6,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line988",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 51,
+ "bus2": 1364,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855869182087027, 45.69136049630226],
+ [4.855867232318871, 45.69136027006984]
+ ]
+ },
+ "length": 0.0001539404843332,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line952",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 1365,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855846104884748, 45.69144901085738]
+ ]
+ },
+ "length": 0.0099994696006292,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1576",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 2081,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855854534153559, 45.69135896213488]
+ ]
+ },
+ "length": 0.0009997222679235,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1577",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2081,
+ "bus2": 2082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855854534153559, 45.69135896213488],
+ [4.855816427653202, 45.69135505659377]
+ ]
+ },
+ "length": 0.0029997976524975,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1578",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2082,
+ "bus2": 2083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855816427653202, 45.69135505659377],
+ [4.855791018908654, 45.6913524499912]
+ ]
+ },
+ "length": 0.002000251978809,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1579",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2083,
+ "bus2": 2084,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855791018908654, 45.6913524499912],
+ [4.855786863583238, 45.69135202127266]
+ ]
+ },
+ "length": 0.0003271589286956,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1580",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2084,
+ "bus2": 2085,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855786863583238, 45.69135202127266],
+ [4.85563566314481, 45.69133651542809]
+ ]
+ },
+ "length": 0.0119028646292776,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line953",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1365,
+ "bus2": 1366,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855846104884748, 45.69144901085738],
+ [4.855845684286097, 45.69145076654667],
+ [4.855901120337955, 45.69153953345657],
+ [4.85588829377169, 45.69161122844266]
+ ]
+ },
+ "length": 0.0189984078266001,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1581",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2085,
+ "bus2": 2086,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85563566314481, 45.69133651542809],
+ [4.855622952159835, 45.69133520775522]
+ ]
+ },
+ "length": 0.0010007064087425,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1582",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2086,
+ "bus2": 2087,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855622952159835, 45.69133520775522],
+ [4.855600498514187, 45.69133290377598]
+ ]
+ },
+ "length": 0.0017676269548577,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1583",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2087,
+ "bus2": 2088,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855600498514187, 45.69133290377598],
+ [4.855587787530867, 45.69133159609905]
+ ]
+ },
+ "length": 0.0010007064104751,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1584",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2088,
+ "bus2": 2089,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855587787530867, 45.69133159609905],
+ [4.855407023176602, 45.69131305456497]
+ ]
+ },
+ "length": 0.0142302752899377,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line954",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1366,
+ "bus2": 1367,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85588829377169, 45.69161122844266],
+ [4.855860204231766, 45.69176818400519]
+ ]
+ },
+ "length": 0.0175815455828478,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1214",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1663,
+ "bus2": 1664,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856370661831063, 45.69110851750263],
+ [4.856375306784422, 45.69110589277815]
+ ]
+ },
+ "length": 0.0004647694653149,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1215",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1664,
+ "bus2": 1665,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856375306784422, 45.69110589277815],
+ [4.856382029776952, 45.69110208720114]
+ ]
+ },
+ "length": 0.000673157746019,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1216",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1665,
+ "bus2": 1666,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856382029776952, 45.69110208720114],
+ [4.856387024934563, 45.69109925657929]
+ ]
+ },
+ "length": 0.0005003696964554,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2308",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2846,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.856355663247043, 45.69105945574269],
+ [4.856360725716369, 45.69102412913973]
+ ]
+ },
+ "length": 0.0089995012028159,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2311",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2849,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.85640419839692, 45.69110967215316],
+ [4.856458006484099, 45.69111484486989]
+ ]
+ },
+ "length": 0.0059995904338227,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1585",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2089,
+ "bus2": 2090,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855407023176602, 45.69131305456497],
+ [4.855368916328575, 45.69130913987988]
+ ]
+ },
+ "length": 0.0029999740821226,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1586",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2090,
+ "bus2": 2091,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855368916328575, 45.69130913987988],
+ [4.855356218598147, 45.6913078408805]
+ ]
+ },
+ "length": 0.0009995457086402,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2312",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2849,
+ "bus2": 2850,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856458006484099, 45.69111484486989],
+ [4.856636058726183, 45.69113194244653]
+ ]
+ },
+ "length": 0.0139986419668756,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2309",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2846,
+ "bus2": 2847,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856360725716369, 45.69102412913973],
+ [4.856383793336582, 45.69086300169013]
+ ]
+ },
+ "length": 0.0179984696461502,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2832",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1367,
+ "bus2": 3399,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855860204231766, 45.69176818400519],
+ [4.855763551680219, 45.69182738723423]
+ ]
+ },
+ "length": 0.0099988303999178,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2313",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2850,
+ "bus2": 2851,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856636058726183, 45.69113194244653],
+ [4.856800333523847, 45.69114772016799]
+ ]
+ },
+ "length": 0.0129154893237343,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2833",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3399,
+ "bus2": 3400,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855763551680219, 45.69182738723423],
+ [4.855584089016939, 45.69193730935378],
+ [4.855398849537063, 45.69194059727197]
+ ]
+ },
+ "length": 0.0329985491086803,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2310",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2847,
+ "bus2": 2848,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856383793336582, 45.69086300169013],
+ [4.856390704015929, 45.69081473478015]
+ ]
+ },
+ "length": 0.0053915783689662,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2851,
+ "bus2": 2852,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856800333523847, 45.69114772016799],
+ [4.856801404224056, 45.69114782212127]
+ ]
+ },
+ "length": 8.41665220926229e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2315",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2852,
+ "bus2": 2853,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856801404224056, 45.69114782212127],
+ [4.856806693572222, 45.69114833332971]
+ ]
+ },
+ "length": 0.0004159034442303,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2834",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3400,
+ "bus2": 3401,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855398849537063, 45.69194059727197],
+ [4.855392869155902, 45.69194070460053],
+ [4.855387309011729, 45.69184721664104],
+ [4.855416724230305, 45.69181947119029]
+ ]
+ },
+ "length": 0.0147075358057835,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2835",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3401,
+ "bus2": 3402,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855416724230305, 45.69181947119029],
+ [4.855418952830454, 45.69181736884877]
+ ]
+ },
+ "length": 0.0002910897047899,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2836",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3402,
+ "bus2": 3403,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855418952830454, 45.69181736884877],
+ [4.855420553793683, 45.69181586568582]
+ ]
+ },
+ "length": 0.0002084777079536,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1646",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2156,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.85685262162569, 45.69253367223592]
+ ]
+ },
+ "length": 0.0394013052961165,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1960",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2488,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.856738631522436, 45.69216124238103]
+ ]
+ },
+ "length": 0.0189987578088231,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1961",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2488,
+ "bus2": 2489,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856738631522436, 45.69216124238103],
+ [4.85665349107763, 45.69215091411277],
+ [4.8563875660472, 45.69228111612342]
+ ]
+ },
+ "length": 0.0319981744631324,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1647",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2156,
+ "bus2": 2157,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85685262162569, 45.69253367223592],
+ [4.856851022816997, 45.69253802876519]
+ ]
+ },
+ "length": 0.0004999657082792,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1962",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2489,
+ "bus2": 2490,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.8563875660472, 45.69228111612342],
+ [4.856292856235074, 45.69232748538923]
+ ]
+ },
+ "length": 0.008999023393858,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1963",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2490,
+ "bus2": 2491,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856292856235074, 45.69232748538923],
+ [4.856208673924059, 45.69236870335052]
+ ]
+ },
+ "length": 0.0079989134977189,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1964",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2491,
+ "bus2": 2492,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856208673924059, 45.69236870335052],
+ [4.856140935805975, 45.69240186471046],
+ [4.856052674911791, 45.69246595632609],
+ [4.856029618601329, 45.69250467560685]
+ ]
+ },
+ "length": 0.0209990509945453,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1965",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2492,
+ "bus2": 2493,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856029618601329, 45.69250467560685],
+ [4.855930737267387, 45.69267072873552]
+ ]
+ },
+ "length": 0.0199986363582786,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1966",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2493,
+ "bus2": 2494,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855930737267387, 45.69267072873552],
+ [4.855888072041425, 45.69274239200233]
+ ]
+ },
+ "length": 0.008630510320176,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2389",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2933,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.85627431413481, 45.69280960338721]
+ ]
+ },
+ "length": 0.0309983265742373,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2056",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2588,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.855825999456157, 45.69273095075617]
+ ]
+ },
+ "length": 0.0049993261430797,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2057",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2588,
+ "bus2": 2589,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855825999456157, 45.69273095075617],
+ [4.855788745488097, 45.6927240826258]
+ ]
+ },
+ "length": 0.003000476475499,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2058",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2589,
+ "bus2": 2590,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855788745488097, 45.6927240826258],
+ [4.855676659986405, 45.69270342242253]
+ ]
+ },
+ "length": 0.0090273856534237,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2059",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2590,
+ "bus2": 2591,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855676659986405, 45.69270342242253],
+ [4.855670455137178, 45.69270227463329]
+ ]
+ },
+ "length": 0.0004998552042313,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2390",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2933,
+ "bus2": 2934,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85627431413481, 45.69280960338721],
+ [4.856417860286734, 45.69283457875029]
+ ]
+ },
+ "length": 0.0115203641917798,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2391",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2934,
+ "bus2": 2935,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856417860286734, 45.69283457875029],
+ [4.856423816029007, 45.69283561508038]
+ ]
+ },
+ "length": 0.0004779834842022,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2392",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2935,
+ "bus2": 2936,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856423816029007, 45.69283561508038],
+ [4.856424087948438, 45.69283566297754]
+ ]
+ },
+ "length": 2.183881197426037e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3403,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0, 0.0],
+ [0.0, 0.125, 0.0, 0.0],
+ [0.0, 0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001285539713848, 0.0, 0.0, 0.0],
+ [0.0, 0.0001285539713848, 0.0, 0.0],
+ [0.0, 0.0, 0.0001285539713848, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_35",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [5.899911003441632e-5, 0.0, 0.0, 0.0],
+ [0.0, 5.899911003441632e-5, 0.0, 0.0],
+ [0.0, 0.0, 5.899911003441632e-5, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [7.935663042967819e-5, 0.0, 0.0, 0.0],
+ [0.0, 7.935663042967819e-5, 0.0, 0.0],
+ [0.0, 0.0, 7.935663042967819e-5, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json
index 28ea4ccf..e2063e54 100644
--- a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json
+++ b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json
@@ -1,1834 +1,1591 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 50,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 50,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- }
- },
- {
- "id": 542,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856978967864625, 45.69219040555863]
- }
- },
- {
- "id": 1364,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855867232318871, 45.69136027006984]
- }
- },
- {
- "id": 1365,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855846104884748, 45.69144901085738]
- }
- },
- {
- "id": 1366,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85588829377169, 45.69161122844266]
- }
- },
- {
- "id": 1367,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855860204231766, 45.69176818400519]
- }
- },
- {
- "id": 51,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855869182087027, 45.69136049630226]
- }
- },
- {
- "id": 1663,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856370661831063, 45.69110851750263]
- }
- },
- {
- "id": 1664,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856375306784422, 45.69110589277815]
- }
- },
- {
- "id": 1665,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856382029776952, 45.69110208720114]
- }
- },
- {
- "id": 1666,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856387024934563, 45.69109925657929]
- }
- },
- {
- "id": 2081,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855854534153559, 45.69135896213488]
- }
- },
- {
- "id": 2082,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855816427653202, 45.69135505659377]
- }
- },
- {
- "id": 2083,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855791018908654, 45.6913524499912]
- }
- },
- {
- "id": 2084,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855786863583238, 45.69135202127266]
- }
- },
- {
- "id": 2085,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85563566314481, 45.69133651542809]
- }
- },
- {
- "id": 2086,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855622952159835, 45.69133520775522]
- }
- },
- {
- "id": 2087,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855600498514187, 45.69133290377598]
- }
- },
- {
- "id": 2088,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855587787530867, 45.69133159609905]
- }
- },
- {
- "id": 2089,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855407023176602, 45.69131305456497]
- }
- },
- {
- "id": 2090,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855368916328575, 45.69130913987988]
- }
- },
- {
- "id": 2091,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855356218598147, 45.6913078408805]
- }
- },
- {
- "id": 2156,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85685262162569, 45.69253367223592]
- }
- },
- {
- "id": 2157,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856851022816997, 45.69253802876519]
- }
- },
- {
- "id": 2488,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856738631522436, 45.69216124238103]
- }
- },
- {
- "id": 2489,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.8563875660472, 45.69228111612342]
- }
- },
- {
- "id": 2490,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856292856235074, 45.69232748538923]
- }
- },
- {
- "id": 2491,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856208673924059, 45.69236870335052]
- }
- },
- {
- "id": 2492,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856029618601329, 45.69250467560685]
- }
- },
- {
- "id": 2493,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855930737267387, 45.69267072873552]
- }
- },
- {
- "id": 2494,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855888072041425, 45.69274239200233]
- }
- },
- {
- "id": 2588,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855825999456157, 45.69273095075617]
- }
- },
- {
- "id": 2589,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855788745488097, 45.6927240826258]
- }
- },
- {
- "id": 2590,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855676659986405, 45.69270342242253]
- }
- },
- {
- "id": 2591,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855670455137178, 45.69270227463329]
- }
- },
- {
- "id": 2649,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85591518390002, 45.69139520669937]
- }
- },
- {
- "id": 2650,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855915068012751, 45.69139520030173]
- }
- },
- {
- "id": 2846,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856360725716369, 45.69102412913973]
- }
- },
- {
- "id": 2847,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856383793336582, 45.69086300169013]
- }
- },
- {
- "id": 2848,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856390704015929, 45.69081473478015]
- }
- },
- {
- "id": 2849,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856458006484099, 45.69111484486989]
- }
- },
- {
- "id": 2850,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856636058726183, 45.69113194244653]
- }
- },
- {
- "id": 2851,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856800333523847, 45.69114772016799]
- }
- },
- {
- "id": 2852,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856801404224056, 45.69114782212127]
- }
- },
- {
- "id": 2853,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856806693572222, 45.69114833332971]
- }
- },
- {
- "id": 2933,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.85627431413481, 45.69280960338721]
- }
- },
- {
- "id": 2934,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856417860286734, 45.69283457875029]
- }
- },
- {
- "id": 2935,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856423816029007, 45.69283561508038]
- }
- },
- {
- "id": 2936,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.856424087948438, 45.69283566297754]
- }
- },
- {
- "id": 3399,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855763551680219, 45.69182738723423]
- }
- },
- {
- "id": 3400,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855398849537063, 45.69194059727197]
- }
- },
- {
- "id": 3401,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855416724230305, 45.69181947119029]
- }
- },
- {
- "id": 3402,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855418952830454, 45.69181736884877]
- }
- },
- {
- "id": 3403,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [4.855420553793683, 45.69181586568582]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 50,
- "geometry": {
- "type": "Point",
- "coordinates": [4.855987191883029, 45.69145568840754]
- },
- "params_id": "160kVA",
- "tap": 1.0
- },
- {
- "id": "line243",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 542,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856006369563374, 45.69145685074764],
- [4.856041286384759, 45.6914589736374],
- [4.85608611929476, 45.69142826223273],
- [4.85710799403576, 45.691501610824],
- [4.857207269582688, 45.69156598849194],
- [4.856978967864625, 45.69219040555863]
- ]
- },
- "length": 0.1698047886136108,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1213",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 1663,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.856000594306501, 45.69144599899529],
- [4.856024490964286, 45.69142874679027],
- [4.856042739971293, 45.69129421833258],
- [4.856370661831063, 45.69110851750263]
- ]
- },
- "length": 0.0505315521261473,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line987",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 51,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855988721281017, 45.6914422332006],
- [4.855996361520631, 45.6913753713747],
- [4.855869182087027, 45.69136049630226]
- ]
- },
- "length": 0.0174985508964364,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2112",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 50,
- "bus2": 2649,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855987191883029, 45.69145568840754],
- [4.855971166936666, 45.69144819937015],
- [4.855950443311009, 45.69143851158069],
- [4.855955048725805, 45.69139880266571],
- [4.85591518390002, 45.69139520669937]
- ]
- },
- "length": 0.0094992002360799,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line2113",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2649,
- "bus2": 2650,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85591518390002, 45.69139520669937],
- [4.855915068012751, 45.69139520030173]
- ]
- },
- "length": 9.054749376593195e-06,
- "params_id": "S_AL_35",
- "ground": "ground"
- },
- {
- "id": "line988",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 51,
- "bus2": 1364,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855869182087027, 45.69136049630226],
- [4.855867232318871, 45.69136027006984]
- ]
- },
- "length": 0.0001539404843332,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line952",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 1365,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855846104884748, 45.69144901085738]
- ]
- },
- "length": 0.0099994696006292,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1576",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1364,
- "bus2": 2081,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855867232318871, 45.69136027006984],
- [4.855854534153559, 45.69135896213488]
- ]
- },
- "length": 0.0009997222679235,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1577",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2081,
- "bus2": 2082,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855854534153559, 45.69135896213488],
- [4.855816427653202, 45.69135505659377]
- ]
- },
- "length": 0.0029997976524975,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1578",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2082,
- "bus2": 2083,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855816427653202, 45.69135505659377],
- [4.855791018908654, 45.6913524499912]
- ]
- },
- "length": 0.002000251978809,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1579",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2083,
- "bus2": 2084,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855791018908654, 45.6913524499912],
- [4.855786863583238, 45.69135202127266]
- ]
- },
- "length": 0.0003271589286956,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1580",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2084,
- "bus2": 2085,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855786863583238, 45.69135202127266],
- [4.85563566314481, 45.69133651542809]
- ]
- },
- "length": 0.0119028646292776,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line953",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1365,
- "bus2": 1366,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855846104884748, 45.69144901085738],
- [4.855845684286097, 45.69145076654667],
- [4.855901120337955, 45.69153953345657],
- [4.85588829377169, 45.69161122844266]
- ]
- },
- "length": 0.0189984078266001,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1581",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2085,
- "bus2": 2086,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85563566314481, 45.69133651542809],
- [4.855622952159835, 45.69133520775522]
- ]
- },
- "length": 0.0010007064087425,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1582",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2086,
- "bus2": 2087,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855622952159835, 45.69133520775522],
- [4.855600498514187, 45.69133290377598]
- ]
- },
- "length": 0.0017676269548577,
- "params_id": "S_AL_240",
- "ground": "ground"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line1583",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2087,
- "bus2": 2088,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855600498514187, 45.69133290377598],
- [4.855587787530867, 45.69133159609905]
- ]
- },
- "length": 0.0010007064104751,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1584",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2088,
- "bus2": 2089,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855587787530867, 45.69133159609905],
- [4.855407023176602, 45.69131305456497]
- ]
- },
- "length": 0.0142302752899377,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line954",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1366,
- "bus2": 1367,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85588829377169, 45.69161122844266],
- [4.855860204231766, 45.69176818400519]
- ]
- },
- "length": 0.0175815455828478,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1214",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1663,
- "bus2": 1664,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856370661831063, 45.69110851750263],
- [4.856375306784422, 45.69110589277815]
- ]
- },
- "length": 0.0004647694653149,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1215",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1664,
- "bus2": 1665,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856375306784422, 45.69110589277815],
- [4.856382029776952, 45.69110208720114]
- ]
- },
- "length": 0.000673157746019,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1216",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1665,
- "bus2": 1666,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856382029776952, 45.69110208720114],
- [4.856387024934563, 45.69109925657929]
- ]
- },
- "length": 0.0005003696964554,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2308",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2846,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.856355663247043, 45.69105945574269],
- [4.856360725716369, 45.69102412913973]
- ]
- },
- "length": 0.0089995012028159,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2311",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1666,
- "bus2": 2849,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856387024934563, 45.69109925657929],
- [4.85640419839692, 45.69110967215316],
- [4.856458006484099, 45.69111484486989]
- ]
- },
- "length": 0.0059995904338227,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1585",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2089,
- "bus2": 2090,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855407023176602, 45.69131305456497],
- [4.855368916328575, 45.69130913987988]
- ]
- },
- "length": 0.0029999740821226,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1586",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2090,
- "bus2": 2091,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855368916328575, 45.69130913987988],
- [4.855356218598147, 45.6913078408805]
- ]
- },
- "length": 0.0009995457086402,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2312",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2849,
- "bus2": 2850,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856458006484099, 45.69111484486989],
- [4.856636058726183, 45.69113194244653]
- ]
- },
- "length": 0.0139986419668756,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2309",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2846,
- "bus2": 2847,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856360725716369, 45.69102412913973],
- [4.856383793336582, 45.69086300169013]
- ]
- },
- "length": 0.0179984696461502,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2832",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1367,
- "bus2": 3399,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855860204231766, 45.69176818400519],
- [4.855763551680219, 45.69182738723423]
- ]
- },
- "length": 0.0099988303999178,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2313",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2850,
- "bus2": 2851,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856636058726183, 45.69113194244653],
- [4.856800333523847, 45.69114772016799]
- ]
- },
- "length": 0.0129154893237343,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2833",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3399,
- "bus2": 3400,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855763551680219, 45.69182738723423],
- [4.855584089016939, 45.69193730935378],
- [4.855398849537063, 45.69194059727197]
- ]
- },
- "length": 0.0329985491086803,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2310",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2847,
- "bus2": 2848,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856383793336582, 45.69086300169013],
- [4.856390704015929, 45.69081473478015]
- ]
- },
- "length": 0.0053915783689662,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2314",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2851,
- "bus2": 2852,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856800333523847, 45.69114772016799],
- [4.856801404224056, 45.69114782212127]
- ]
- },
- "length": 8.41665220926229e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2315",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2852,
- "bus2": 2853,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856801404224056, 45.69114782212127],
- [4.856806693572222, 45.69114833332971]
- ]
- },
- "length": 0.0004159034442303,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2834",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3400,
- "bus2": 3401,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855398849537063, 45.69194059727197],
- [4.855392869155902, 45.69194070460053],
- [4.855387309011729, 45.69184721664104],
- [4.855416724230305, 45.69181947119029]
- ]
- },
- "length": 0.0147075358057835,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2835",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3401,
- "bus2": 3402,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855416724230305, 45.69181947119029],
- [4.855418952830454, 45.69181736884877]
- ]
- },
- "length": 0.0002910897047899,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2836",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3402,
- "bus2": 3403,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855418952830454, 45.69181736884877],
- [4.855420553793683, 45.69181586568582]
- ]
- },
- "length": 0.0002084777079536,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line1646",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2156,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.85685262162569, 45.69253367223592]
- ]
- },
- "length": 0.0394013052961165,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1960",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 542,
- "bus2": 2488,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856978967864625, 45.69219040555863],
- [4.856738631522436, 45.69216124238103]
- ]
- },
- "length": 0.0189987578088231,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1961",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2488,
- "bus2": 2489,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856738631522436, 45.69216124238103],
- [4.85665349107763, 45.69215091411277],
- [4.8563875660472, 45.69228111612342]
- ]
- },
- "length": 0.0319981744631324,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1647",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2156,
- "bus2": 2157,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85685262162569, 45.69253367223592],
- [4.856851022816997, 45.69253802876519]
- ]
- },
- "length": 0.0004999657082792,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1962",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2489,
- "bus2": 2490,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.8563875660472, 45.69228111612342],
- [4.856292856235074, 45.69232748538923]
- ]
- },
- "length": 0.008999023393858,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1963",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2490,
- "bus2": 2491,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856292856235074, 45.69232748538923],
- [4.856208673924059, 45.69236870335052]
- ]
- },
- "length": 0.0079989134977189,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1964",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2491,
- "bus2": 2492,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856208673924059, 45.69236870335052],
- [4.856140935805975, 45.69240186471046],
- [4.856052674911791, 45.69246595632609],
- [4.856029618601329, 45.69250467560685]
- ]
- },
- "length": 0.0209990509945453,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1965",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2492,
- "bus2": 2493,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856029618601329, 45.69250467560685],
- [4.855930737267387, 45.69267072873552]
- ]
- },
- "length": 0.0199986363582786,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line1966",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2493,
- "bus2": 2494,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855930737267387, 45.69267072873552],
- [4.855888072041425, 45.69274239200233]
- ]
- },
- "length": 0.008630510320176,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2389",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2933,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.85627431413481, 45.69280960338721]
- ]
- },
- "length": 0.0309983265742373,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2056",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2494,
- "bus2": 2588,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855888072041425, 45.69274239200233],
- [4.855825999456157, 45.69273095075617]
- ]
- },
- "length": 0.0049993261430797,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2057",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2588,
- "bus2": 2589,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855825999456157, 45.69273095075617],
- [4.855788745488097, 45.6927240826258]
- ]
- },
- "length": 0.003000476475499,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2058",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2589,
- "bus2": 2590,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855788745488097, 45.6927240826258],
- [4.855676659986405, 45.69270342242253]
- ]
- },
- "length": 0.0090273856534237,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2059",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2590,
- "bus2": 2591,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.855676659986405, 45.69270342242253],
- [4.855670455137178, 45.69270227463329]
- ]
- },
- "length": 0.0004998552042313,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2390",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2933,
- "bus2": 2934,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.85627431413481, 45.69280960338721],
- [4.856417860286734, 45.69283457875029]
- ]
- },
- "length": 0.0115203641917798,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2391",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2934,
- "bus2": 2935,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856417860286734, 45.69283457875029],
- [4.856423816029007, 45.69283561508038]
- ]
- },
- "length": 0.0004779834842022,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line2392",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2935,
- "bus2": 2936,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.856423816029007, 45.69283561508038],
- [4.856424087948438, 45.69283566297754]
- ]
- },
- "length": 2.183881197426037e-05,
- "params_id": "S_AL_95",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3403,
- "phases": "abcn",
- "powers": [
- [37977.16080879668, 18988.580404398333],
- [37977.160809820285, 18988.580404910143],
- [37977.16080879669, 18988.580404398344]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001285539713848,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001285539713848,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001285539713848,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- },
- {
- "id": "S_AL_35",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.8571428571428571,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.8571428571428571,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.8571428571428571,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 5.899911003441632e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5.899911003441632e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5.899911003441632e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.31578947368421,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.31578947368421,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.31578947368421,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.1
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 7.935663042967819e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 7.935663042967819e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 7.935663042967819e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 50,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 50,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ }
+ },
+ {
+ "id": 542,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856978967864625, 45.69219040555863]
+ }
+ },
+ {
+ "id": 1364,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855867232318871, 45.69136027006984]
+ }
+ },
+ {
+ "id": 1365,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855846104884748, 45.69144901085738]
+ }
+ },
+ {
+ "id": 1366,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85588829377169, 45.69161122844266]
+ }
+ },
+ {
+ "id": 1367,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855860204231766, 45.69176818400519]
+ }
+ },
+ {
+ "id": 51,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855869182087027, 45.69136049630226]
+ }
+ },
+ {
+ "id": 1663,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856370661831063, 45.69110851750263]
+ }
+ },
+ {
+ "id": 1664,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856375306784422, 45.69110589277815]
+ }
+ },
+ {
+ "id": 1665,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856382029776952, 45.69110208720114]
+ }
+ },
+ {
+ "id": 1666,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856387024934563, 45.69109925657929]
+ }
+ },
+ {
+ "id": 2081,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855854534153559, 45.69135896213488]
+ }
+ },
+ {
+ "id": 2082,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855816427653202, 45.69135505659377]
+ }
+ },
+ {
+ "id": 2083,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855791018908654, 45.6913524499912]
+ }
+ },
+ {
+ "id": 2084,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855786863583238, 45.69135202127266]
+ }
+ },
+ {
+ "id": 2085,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85563566314481, 45.69133651542809]
+ }
+ },
+ {
+ "id": 2086,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855622952159835, 45.69133520775522]
+ }
+ },
+ {
+ "id": 2087,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855600498514187, 45.69133290377598]
+ }
+ },
+ {
+ "id": 2088,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855587787530867, 45.69133159609905]
+ }
+ },
+ {
+ "id": 2089,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855407023176602, 45.69131305456497]
+ }
+ },
+ {
+ "id": 2090,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855368916328575, 45.69130913987988]
+ }
+ },
+ {
+ "id": 2091,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855356218598147, 45.6913078408805]
+ }
+ },
+ {
+ "id": 2156,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85685262162569, 45.69253367223592]
+ }
+ },
+ {
+ "id": 2157,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856851022816997, 45.69253802876519]
+ }
+ },
+ {
+ "id": 2488,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856738631522436, 45.69216124238103]
+ }
+ },
+ {
+ "id": 2489,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.8563875660472, 45.69228111612342]
+ }
+ },
+ {
+ "id": 2490,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856292856235074, 45.69232748538923]
+ }
+ },
+ {
+ "id": 2491,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856208673924059, 45.69236870335052]
+ }
+ },
+ {
+ "id": 2492,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856029618601329, 45.69250467560685]
+ }
+ },
+ {
+ "id": 2493,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855930737267387, 45.69267072873552]
+ }
+ },
+ {
+ "id": 2494,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855888072041425, 45.69274239200233]
+ }
+ },
+ {
+ "id": 2588,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855825999456157, 45.69273095075617]
+ }
+ },
+ {
+ "id": 2589,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855788745488097, 45.6927240826258]
+ }
+ },
+ {
+ "id": 2590,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855676659986405, 45.69270342242253]
+ }
+ },
+ {
+ "id": 2591,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855670455137178, 45.69270227463329]
+ }
+ },
+ {
+ "id": 2649,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85591518390002, 45.69139520669937]
+ }
+ },
+ {
+ "id": 2650,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855915068012751, 45.69139520030173]
+ }
+ },
+ {
+ "id": 2846,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856360725716369, 45.69102412913973]
+ }
+ },
+ {
+ "id": 2847,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856383793336582, 45.69086300169013]
+ }
+ },
+ {
+ "id": 2848,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856390704015929, 45.69081473478015]
+ }
+ },
+ {
+ "id": 2849,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856458006484099, 45.69111484486989]
+ }
+ },
+ {
+ "id": 2850,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856636058726183, 45.69113194244653]
+ }
+ },
+ {
+ "id": 2851,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856800333523847, 45.69114772016799]
+ }
+ },
+ {
+ "id": 2852,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856801404224056, 45.69114782212127]
+ }
+ },
+ {
+ "id": 2853,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856806693572222, 45.69114833332971]
+ }
+ },
+ {
+ "id": 2933,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.85627431413481, 45.69280960338721]
+ }
+ },
+ {
+ "id": 2934,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856417860286734, 45.69283457875029]
+ }
+ },
+ {
+ "id": 2935,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856423816029007, 45.69283561508038]
+ }
+ },
+ {
+ "id": 2936,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.856424087948438, 45.69283566297754]
+ }
+ },
+ {
+ "id": 3399,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855763551680219, 45.69182738723423]
+ }
+ },
+ {
+ "id": 3400,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855398849537063, 45.69194059727197]
+ }
+ },
+ {
+ "id": 3401,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855416724230305, 45.69181947119029]
+ }
+ },
+ {
+ "id": 3402,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855418952830454, 45.69181736884877]
+ }
+ },
+ {
+ "id": 3403,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855420553793683, 45.69181586568582]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 50,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.855987191883029, 45.69145568840754]
+ },
+ "params_id": "160kVA",
+ "tap": 1.0
+ },
+ {
+ "id": "line243",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 542,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856006369563374, 45.69145685074764],
+ [4.856041286384759, 45.6914589736374],
+ [4.85608611929476, 45.69142826223273],
+ [4.85710799403576, 45.691501610824],
+ [4.857207269582688, 45.69156598849194],
+ [4.856978967864625, 45.69219040555863]
+ ]
+ },
+ "length": 0.1698047886136108,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1213",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 1663,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.856000594306501, 45.69144599899529],
+ [4.856024490964286, 45.69142874679027],
+ [4.856042739971293, 45.69129421833258],
+ [4.856370661831063, 45.69110851750263]
+ ]
+ },
+ "length": 0.0505315521261473,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line987",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 51,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855988721281017, 45.6914422332006],
+ [4.855996361520631, 45.6913753713747],
+ [4.855869182087027, 45.69136049630226]
+ ]
+ },
+ "length": 0.0174985508964364,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2112",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 50,
+ "bus2": 2649,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855987191883029, 45.69145568840754],
+ [4.855971166936666, 45.69144819937015],
+ [4.855950443311009, 45.69143851158069],
+ [4.855955048725805, 45.69139880266571],
+ [4.85591518390002, 45.69139520669937]
+ ]
+ },
+ "length": 0.0094992002360799,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line2113",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2649,
+ "bus2": 2650,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85591518390002, 45.69139520669937],
+ [4.855915068012751, 45.69139520030173]
+ ]
+ },
+ "length": 9.054749376593195e-6,
+ "params_id": "S_AL_35",
+ "ground": "ground"
+ },
+ {
+ "id": "line988",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 51,
+ "bus2": 1364,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855869182087027, 45.69136049630226],
+ [4.855867232318871, 45.69136027006984]
+ ]
+ },
+ "length": 0.0001539404843332,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line952",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 1365,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855846104884748, 45.69144901085738]
+ ]
+ },
+ "length": 0.0099994696006292,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1576",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1364,
+ "bus2": 2081,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855867232318871, 45.69136027006984],
+ [4.855854534153559, 45.69135896213488]
+ ]
+ },
+ "length": 0.0009997222679235,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1577",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2081,
+ "bus2": 2082,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855854534153559, 45.69135896213488],
+ [4.855816427653202, 45.69135505659377]
+ ]
+ },
+ "length": 0.0029997976524975,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1578",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2082,
+ "bus2": 2083,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855816427653202, 45.69135505659377],
+ [4.855791018908654, 45.6913524499912]
+ ]
+ },
+ "length": 0.002000251978809,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1579",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2083,
+ "bus2": 2084,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855791018908654, 45.6913524499912],
+ [4.855786863583238, 45.69135202127266]
+ ]
+ },
+ "length": 0.0003271589286956,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1580",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2084,
+ "bus2": 2085,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855786863583238, 45.69135202127266],
+ [4.85563566314481, 45.69133651542809]
+ ]
+ },
+ "length": 0.0119028646292776,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line953",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1365,
+ "bus2": 1366,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855846104884748, 45.69144901085738],
+ [4.855845684286097, 45.69145076654667],
+ [4.855901120337955, 45.69153953345657],
+ [4.85588829377169, 45.69161122844266]
+ ]
+ },
+ "length": 0.0189984078266001,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1581",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2085,
+ "bus2": 2086,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85563566314481, 45.69133651542809],
+ [4.855622952159835, 45.69133520775522]
+ ]
+ },
+ "length": 0.0010007064087425,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1582",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2086,
+ "bus2": 2087,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855622952159835, 45.69133520775522],
+ [4.855600498514187, 45.69133290377598]
+ ]
+ },
+ "length": 0.0017676269548577,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1583",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2087,
+ "bus2": 2088,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855600498514187, 45.69133290377598],
+ [4.855587787530867, 45.69133159609905]
+ ]
+ },
+ "length": 0.0010007064104751,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1584",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2088,
+ "bus2": 2089,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855587787530867, 45.69133159609905],
+ [4.855407023176602, 45.69131305456497]
+ ]
+ },
+ "length": 0.0142302752899377,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line954",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1366,
+ "bus2": 1367,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85588829377169, 45.69161122844266],
+ [4.855860204231766, 45.69176818400519]
+ ]
+ },
+ "length": 0.0175815455828478,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1214",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1663,
+ "bus2": 1664,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856370661831063, 45.69110851750263],
+ [4.856375306784422, 45.69110589277815]
+ ]
+ },
+ "length": 0.0004647694653149,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1215",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1664,
+ "bus2": 1665,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856375306784422, 45.69110589277815],
+ [4.856382029776952, 45.69110208720114]
+ ]
+ },
+ "length": 0.000673157746019,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1216",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1665,
+ "bus2": 1666,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856382029776952, 45.69110208720114],
+ [4.856387024934563, 45.69109925657929]
+ ]
+ },
+ "length": 0.0005003696964554,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2308",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2846,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.856355663247043, 45.69105945574269],
+ [4.856360725716369, 45.69102412913973]
+ ]
+ },
+ "length": 0.0089995012028159,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2311",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1666,
+ "bus2": 2849,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856387024934563, 45.69109925657929],
+ [4.85640419839692, 45.69110967215316],
+ [4.856458006484099, 45.69111484486989]
+ ]
+ },
+ "length": 0.0059995904338227,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1585",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2089,
+ "bus2": 2090,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855407023176602, 45.69131305456497],
+ [4.855368916328575, 45.69130913987988]
+ ]
+ },
+ "length": 0.0029999740821226,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1586",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2090,
+ "bus2": 2091,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855368916328575, 45.69130913987988],
+ [4.855356218598147, 45.6913078408805]
+ ]
+ },
+ "length": 0.0009995457086402,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2312",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2849,
+ "bus2": 2850,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856458006484099, 45.69111484486989],
+ [4.856636058726183, 45.69113194244653]
+ ]
+ },
+ "length": 0.0139986419668756,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2309",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2846,
+ "bus2": 2847,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856360725716369, 45.69102412913973],
+ [4.856383793336582, 45.69086300169013]
+ ]
+ },
+ "length": 0.0179984696461502,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2832",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1367,
+ "bus2": 3399,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855860204231766, 45.69176818400519],
+ [4.855763551680219, 45.69182738723423]
+ ]
+ },
+ "length": 0.0099988303999178,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2313",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2850,
+ "bus2": 2851,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856636058726183, 45.69113194244653],
+ [4.856800333523847, 45.69114772016799]
+ ]
+ },
+ "length": 0.0129154893237343,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2833",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3399,
+ "bus2": 3400,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855763551680219, 45.69182738723423],
+ [4.855584089016939, 45.69193730935378],
+ [4.855398849537063, 45.69194059727197]
+ ]
+ },
+ "length": 0.0329985491086803,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2310",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2847,
+ "bus2": 2848,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856383793336582, 45.69086300169013],
+ [4.856390704015929, 45.69081473478015]
+ ]
+ },
+ "length": 0.0053915783689662,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2314",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2851,
+ "bus2": 2852,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856800333523847, 45.69114772016799],
+ [4.856801404224056, 45.69114782212127]
+ ]
+ },
+ "length": 8.41665220926229e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2315",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2852,
+ "bus2": 2853,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856801404224056, 45.69114782212127],
+ [4.856806693572222, 45.69114833332971]
+ ]
+ },
+ "length": 0.0004159034442303,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2834",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3400,
+ "bus2": 3401,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855398849537063, 45.69194059727197],
+ [4.855392869155902, 45.69194070460053],
+ [4.855387309011729, 45.69184721664104],
+ [4.855416724230305, 45.69181947119029]
+ ]
+ },
+ "length": 0.0147075358057835,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2835",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3401,
+ "bus2": 3402,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855416724230305, 45.69181947119029],
+ [4.855418952830454, 45.69181736884877]
+ ]
+ },
+ "length": 0.0002910897047899,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2836",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3402,
+ "bus2": 3403,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855418952830454, 45.69181736884877],
+ [4.855420553793683, 45.69181586568582]
+ ]
+ },
+ "length": 0.0002084777079536,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line1646",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2156,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.85685262162569, 45.69253367223592]
+ ]
+ },
+ "length": 0.0394013052961165,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1960",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 542,
+ "bus2": 2488,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856978967864625, 45.69219040555863],
+ [4.856738631522436, 45.69216124238103]
+ ]
+ },
+ "length": 0.0189987578088231,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1961",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2488,
+ "bus2": 2489,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856738631522436, 45.69216124238103],
+ [4.85665349107763, 45.69215091411277],
+ [4.8563875660472, 45.69228111612342]
+ ]
+ },
+ "length": 0.0319981744631324,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1647",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2156,
+ "bus2": 2157,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85685262162569, 45.69253367223592],
+ [4.856851022816997, 45.69253802876519]
+ ]
+ },
+ "length": 0.0004999657082792,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1962",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2489,
+ "bus2": 2490,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.8563875660472, 45.69228111612342],
+ [4.856292856235074, 45.69232748538923]
+ ]
+ },
+ "length": 0.008999023393858,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1963",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2490,
+ "bus2": 2491,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856292856235074, 45.69232748538923],
+ [4.856208673924059, 45.69236870335052]
+ ]
+ },
+ "length": 0.0079989134977189,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1964",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2491,
+ "bus2": 2492,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856208673924059, 45.69236870335052],
+ [4.856140935805975, 45.69240186471046],
+ [4.856052674911791, 45.69246595632609],
+ [4.856029618601329, 45.69250467560685]
+ ]
+ },
+ "length": 0.0209990509945453,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1965",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2492,
+ "bus2": 2493,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856029618601329, 45.69250467560685],
+ [4.855930737267387, 45.69267072873552]
+ ]
+ },
+ "length": 0.0199986363582786,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line1966",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2493,
+ "bus2": 2494,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855930737267387, 45.69267072873552],
+ [4.855888072041425, 45.69274239200233]
+ ]
+ },
+ "length": 0.008630510320176,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2389",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2933,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.85627431413481, 45.69280960338721]
+ ]
+ },
+ "length": 0.0309983265742373,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2056",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2494,
+ "bus2": 2588,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855888072041425, 45.69274239200233],
+ [4.855825999456157, 45.69273095075617]
+ ]
+ },
+ "length": 0.0049993261430797,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2057",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2588,
+ "bus2": 2589,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855825999456157, 45.69273095075617],
+ [4.855788745488097, 45.6927240826258]
+ ]
+ },
+ "length": 0.003000476475499,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2058",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2589,
+ "bus2": 2590,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855788745488097, 45.6927240826258],
+ [4.855676659986405, 45.69270342242253]
+ ]
+ },
+ "length": 0.0090273856534237,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2059",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2590,
+ "bus2": 2591,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.855676659986405, 45.69270342242253],
+ [4.855670455137178, 45.69270227463329]
+ ]
+ },
+ "length": 0.0004998552042313,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2390",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2933,
+ "bus2": 2934,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.85627431413481, 45.69280960338721],
+ [4.856417860286734, 45.69283457875029]
+ ]
+ },
+ "length": 0.0115203641917798,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2391",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2934,
+ "bus2": 2935,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856417860286734, 45.69283457875029],
+ [4.856423816029007, 45.69283561508038]
+ ]
+ },
+ "length": 0.0004779834842022,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line2392",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2935,
+ "bus2": 2936,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.856423816029007, 45.69283561508038],
+ [4.856424087948438, 45.69283566297754]
+ ]
+ },
+ "length": 2.183881197426037e-5,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3403,
+ "phases": "abcn",
+ "powers": [
+ [37977.16080879668, 18988.580404398333],
+ [37977.160809820285, 18988.580404910143],
+ [37977.16080879669, 18988.580404398344]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0, 0.0],
+ [0.0, 0.125, 0.0, 0.0],
+ [0.0, 0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001285539713848, 0.0, 0.0, 0.0],
+ [0.0, 0.0001285539713848, 0.0, 0.0],
+ [0.0, 0.0, 0.0001285539713848, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_35",
+ "z_line": [
+ [
+ [0.8571428571428571, 0.0, 0.0, 0.0],
+ [0.0, 0.8571428571428571, 0.0, 0.0],
+ [0.0, 0.0, 0.8571428571428571, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [5.899911003441632e-5, 0.0, 0.0, 0.0],
+ [0.0, 5.899911003441632e-5, 0.0, 0.0],
+ [0.0, 0.0, 5.899911003441632e-5, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.31578947368421, 0.0, 0.0, 0.0],
+ [0.0, 0.31578947368421, 0.0, 0.0],
+ [0.0, 0.0, 0.31578947368421, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.0, 0.1]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ],
+ [
+ [7.935663042967819e-5, 0.0, 0.0, 0.0],
+ [0.0, 7.935663042967819e-5, 0.0, 0.0],
+ [0.0, 0.0, 7.935663042967819e-5, 0.0],
+ [0.0, 0.0, 0.0, 0.0]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json
index 40650c8a..ecd99378 100644
--- a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json
@@ -1,1125 +1,555 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -1.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -1.0]
- }
- },
- {
- "id": 8,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, 1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 7,
- "bus": 8,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 8,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123444e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.88365369112345e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522746e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.882465468422031e-05,
- -1.9265213360533982e-06,
- -1.9255521346606625e-06,
- -1.2027068909761437e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422034e-05,
- -1.9255521346606684e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.92555213466066e-06,
- -1.925552134660667e-06,
- 4.8826539681277115e-05,
- -1.2028010593546638e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.00010709293474085319
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -1.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, 1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 8,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123444e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.88365369112345e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522746e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.882465468422031e-5, -1.9265213360533982e-6, -1.9255521346606625e-6, -1.2027068909761437e-5],
+ [-1.926521336053397e-6, 4.882465468422034e-5, -1.9255521346606684e-6, -1.2027068909761439e-5],
+ [-1.92555213466066e-6, -1.925552134660667e-6, 4.8826539681277115e-5, -1.2028010593546638e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.00010709293474085319]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json
index 6d0dcff1..1900a533 100644
--- a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json
@@ -1,1125 +1,555 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -1.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -1.0]
- }
- },
- {
- "id": 8,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, 1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [35039.1873340248, 17519.5936670124],
- [35781.40565643413, 17890.70282821707],
- [36620.18097784068, 18310.09048892034]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [35816.134717475616, 17908.067358737808],
- [35816.1347928834, 17908.0673964417],
- [35816.134792883386, 17908.067396441696]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [35039.1873340248, 17519.5936670124],
- [35781.40565643413, 17890.70282821707],
- [36620.18097784068, 18310.09048892034]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [35038.754846820004, 17519.377423409995],
- [35781.066730803446, 17890.533365401716],
- [36620.01680936384, 18310.008404681917]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "powers": [
- [35916.961624067146, 17958.480812033577],
- [35916.96169432148, 17958.480847160736],
- [35916.961697864856, 17958.48084893243]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "powers": [
- [35916.96162167113, 17958.480810835565],
- [35916.96169729119, 17958.480848645595],
- [35916.96169729121, 17958.480848645606]
- ]
- },
- {
- "id": 7,
- "bus": 8,
- "phases": "abcn",
- "powers": [
- [35916.961624067146, 17958.480812033577],
- [35916.96169432148, 17958.480847160743],
- [35916.96169786487, 17958.48084893243]
- ]
- },
- {
- "id": 8,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [35916.93047353464, 17958.465236767322],
- [35916.93054915485, 17958.465274577422],
- [35916.93054915477, 17958.465274577386]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123444e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.88365369112345e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522746e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.882465468422031e-05,
- -1.9265213360533982e-06,
- -1.9255521346606625e-06,
- -1.2027068909761437e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422034e-05,
- -1.9255521346606684e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.92555213466066e-06,
- -1.925552134660667e-06,
- 4.8826539681277115e-05,
- -1.2028010593546638e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.00010709293474085319
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -1.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, 1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [35039.1873340248, 17519.5936670124],
+ [35781.40565643413, 17890.70282821707],
+ [36620.18097784068, 18310.09048892034]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [35816.134717475616, 17908.067358737808],
+ [35816.1347928834, 17908.0673964417],
+ [35816.134792883386, 17908.067396441696]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [35039.1873340248, 17519.5936670124],
+ [35781.40565643413, 17890.70282821707],
+ [36620.18097784068, 18310.09048892034]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [35038.754846820004, 17519.377423409995],
+ [35781.066730803446, 17890.533365401716],
+ [36620.01680936384, 18310.008404681917]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "powers": [
+ [35916.961624067146, 17958.480812033577],
+ [35916.96169432148, 17958.480847160736],
+ [35916.961697864856, 17958.48084893243]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "powers": [
+ [35916.96162167113, 17958.480810835565],
+ [35916.96169729119, 17958.480848645595],
+ [35916.96169729121, 17958.480848645606]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 8,
+ "phases": "abcn",
+ "powers": [
+ [35916.961624067146, 17958.480812033577],
+ [35916.96169432148, 17958.480847160743],
+ [35916.96169786487, 17958.48084893243]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [35916.93047353464, 17958.465236767322],
+ [35916.93054915485, 17958.465274577422],
+ [35916.93054915477, 17958.465274577386]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123444e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.88365369112345e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522746e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.882465468422031e-5, -1.9265213360533982e-6, -1.9255521346606625e-6, -1.2027068909761437e-5],
+ [-1.926521336053397e-6, 4.882465468422034e-5, -1.9255521346606684e-6, -1.2027068909761439e-5],
+ [-1.92555213466066e-6, -1.925552134660667e-6, 4.8826539681277115e-5, -1.2028010593546638e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.00010709293474085319]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json
index bc3d4bfe..6875f093 100644
--- a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json
@@ -1,649 +1,401 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -1.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 1.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.255,
- 0.255
- ],
- [
- 0.255,
- 0.328,
- 0.255
- ],
- [
- 0.255,
- 0.255,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 5.0999999999999993e-08,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5.0999999999999993e-08,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5.0999999999999993e-08
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2548,
- 0.2548
- ],
- [
- 0.2548,
- 0.3283,
- 0.2548
- ],
- [
- 0.2548,
- 0.2548,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2548,
- 0.2548
- ],
- [
- 0.2548,
- 0.3283,
- 0.2548
- ],
- [
- 0.2548,
- 0.2548,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 5e-08,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5e-08,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5e-08
- ]
- ],
- [
- [
- 1.707e-05,
- -1.93e-06,
- -1.93e-06
- ],
- [
- -1.93e-06,
- 1.707e-05,
- -1.93e-06
- ],
- [
- -1.93e-06,
- -1.93e-06,
- 1.707e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_z"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.255, 0.255],
+ [0.255, 0.328, 0.255],
+ [0.255, 0.255, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [5.0999999999999993e-8, 0.0, 0.0],
+ [0.0, 5.0999999999999993e-8, 0.0],
+ [0.0, 0.0, 5.0999999999999993e-8]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2548, 0.2548],
+ [0.2548, 0.3283, 0.2548],
+ [0.2548, 0.2548, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2548, 0.2548],
+ [0.2548, 0.3283, 0.2548],
+ [0.2548, 0.2548, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [5e-8, 0.0, 0.0],
+ [0.0, 5e-8, 0.0],
+ [0.0, 0.0, 5e-8]
+ ],
+ [
+ [1.707e-5, -1.93e-6, -1.93e-6],
+ [-1.93e-6, 1.707e-5, -1.93e-6],
+ [-1.93e-6, -1.93e-6, 1.707e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json
index 04ca0521..eb2a95d8 100644
--- a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json
@@ -1,649 +1,401 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -1.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 1.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-1.0, -1.0]
- ]
- },
- "length": 5.0,
- "params_id": "A_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [8976647.55370645, 4488323.776853224],
- [8976647.553948393, 4488323.7769741975],
- [8976647.553948395, 4488323.776974197]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [8851974.197587248, 4425987.098793624],
- [9004394.547519604, 4502197.273759801],
- [9015108.260802487, 4507554.130401242]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [8847353.195074398, 4423676.597537199],
- [9001005.405795652, 4500502.702897826],
- [9012931.55806226, 4506465.779031129]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [8980987.706659468, 4490493.853329734],
- [8980987.70690153, 4490493.853450765],
- [8980987.70690153, 4490493.853450765]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "powers": [
- [8979350.424799088, 4489675.212399543],
- [8979350.425041111, 4489675.2125205565],
- [8979350.425041111, 4489675.212520554]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "powers": [
- [8979059.220473152, 4489529.610236577],
- [8979059.220715165, 4489529.610357584],
- [8979059.220715165, 4489529.610357586]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.255,
- 0.255
- ],
- [
- 0.255,
- 0.328,
- 0.255
- ],
- [
- 0.255,
- 0.255,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 5.0999999999999993e-08,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5.0999999999999993e-08,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5.0999999999999993e-08
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2548,
- 0.2548
- ],
- [
- 0.2548,
- 0.3283,
- 0.2548
- ],
- [
- 0.2548,
- 0.2548,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "A_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2548,
- 0.2548
- ],
- [
- 0.2548,
- 0.3283,
- 0.2548
- ],
- [
- 0.2548,
- 0.2548,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 5e-08,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 5e-08,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 5e-08
- ]
- ],
- [
- [
- 1.707e-05,
- -1.93e-06,
- -1.93e-06
- ],
- [
- -1.93e-06,
- 1.707e-05,
- -1.93e-06
- ],
- [
- -1.93e-06,
- -1.93e-06,
- 1.707e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_z"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-1.0, -1.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "A_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [8976647.55370645, 4488323.776853224],
+ [8976647.553948393, 4488323.7769741975],
+ [8976647.553948395, 4488323.776974197]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [8851974.197587248, 4425987.098793624],
+ [9004394.547519604, 4502197.273759801],
+ [9015108.260802487, 4507554.130401242]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [8847353.195074398, 4423676.597537199],
+ [9001005.405795652, 4500502.702897826],
+ [9012931.55806226, 4506465.779031129]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [8980987.706659468, 4490493.853329734],
+ [8980987.70690153, 4490493.853450765],
+ [8980987.70690153, 4490493.853450765]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "powers": [
+ [8979350.424799088, 4489675.212399543],
+ [8979350.425041111, 4489675.2125205565],
+ [8979350.425041111, 4489675.212520554]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "powers": [
+ [8979059.220473152, 4489529.610236577],
+ [8979059.220715165, 4489529.610357584],
+ [8979059.220715165, 4489529.610357586]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.255, 0.255],
+ [0.255, 0.328, 0.255],
+ [0.255, 0.255, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [5.0999999999999993e-8, 0.0, 0.0],
+ [0.0, 5.0999999999999993e-8, 0.0],
+ [0.0, 0.0, 5.0999999999999993e-8]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2548, 0.2548],
+ [0.2548, 0.3283, 0.2548],
+ [0.2548, 0.2548, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "A_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2548, 0.2548],
+ [0.2548, 0.3283, 0.2548],
+ [0.2548, 0.2548, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [5e-8, 0.0, 0.0],
+ [0.0, 5e-8, 0.0],
+ [0.0, 0.0, 5e-8]
+ ],
+ [
+ [1.707e-5, -1.93e-6, -1.93e-6],
+ [-1.93e-6, 1.707e-5, -1.93e-6],
+ [-1.93e-6, -1.93e-6, 1.707e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json
index 28e558ef..fc36bdc1 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json
index a50006e1..5ee4b514 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4180.783784516326, 2090.3918922581624],
- [4189.859333623026, 2094.929666811513],
- [4205.094966924958, 2102.547483462479]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4180.783784516326, 2090.3918922581624],
+ [4189.859333623026, 2094.929666811513],
+ [4205.094966924958, 2102.547483462479]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json
index f5ec44f6..84e1fcd7 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json
@@ -1,186 +1,105 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- }
- ],
- "loads": [],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json
index f5ec44f6..84e1fcd7 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json
@@ -1,186 +1,105 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- }
- ],
- "loads": [],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json
index ee532072..290aeb1b 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json
index 1b237d01..b27408ac 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4189.7293486490735, 2094.8646743245367],
- [4189.72935747019, 2094.8646787350945],
- [4189.729357470191, 2094.8646787350954]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4189.7293486490735, 2094.8646743245367],
+ [4189.72935747019, 2094.8646787350945],
+ [4189.729357470191, 2094.8646787350954]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json
index 58975747..d1ea4487 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json
@@ -1,143 +1,101 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json
index 4570197d..76f9c196 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json
@@ -1,143 +1,101 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4178.566539756862, 2089.283269878431],
- [4187.615297660943, 2093.807648830472],
- [4202.879669403405, 2101.439834701703]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4178.566539756862, 2089.283269878431],
+ [4187.615297660943, 2093.807648830472],
+ [4202.879669403405, 2101.439834701703]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json
index 58975747..d1ea4487 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json
@@ -1,143 +1,101 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json
index 4570197d..76f9c196 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json
@@ -1,143 +1,101 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4178.566539756862, 2089.283269878431],
- [4187.615297660943, 2093.807648830472],
- [4202.879669403405, 2101.439834701703]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z_neutral"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4178.566539756862, 2089.283269878431],
+ [4187.615297660943, 2093.807648830472],
+ [4202.879669403405, 2101.439834701703]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json
index 59523973..4a47fdb9 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json
index 842acaf2..81418580 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4178.622841482365, 2089.3114207411827],
- [4187.661711183047, 2093.8308555915237],
- [4202.893970504318, 2101.446985252159]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4178.622841482365, 2089.3114207411827],
+ [4187.661711183047, 2093.8308555915237],
+ [4202.893970504318, 2101.446985252159]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json
index 59523973..4a47fdb9 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json
index 842acaf2..81418580 100644
--- a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4178.622841482365, 2089.3114207411827],
- [4187.661711183047, 2093.8308555915237],
- [4202.893970504318, 2101.446985252159]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4178.622841482365, 2089.3114207411827],
+ [4187.661711183047, 2093.8308555915237],
+ [4202.893970504318, 2101.446985252159]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json
index 799a80c0..d561710a 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json
@@ -1,161 +1,112 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json
index a8bd5f3c..e96e71fa 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json
@@ -1,161 +1,112 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [10477211.277314685, 5238605.638657343],
- [10477211.27759708, 5238605.638798538],
- [10477211.277597075, 5238605.638798539]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [10477211.277314685, 5238605.638657343],
+ [10477211.27759708, 5238605.638798538],
+ [10477211.277597075, 5238605.638798539]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json
index bf0175c5..e802eadb 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json
@@ -1,125 +1,99 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json
index 36be94cc..a8ef7a7e 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json
@@ -1,125 +1,99 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [10460739.41448147, 5230369.707240736],
- [10480234.529394493, 5240117.264697246],
- [10481646.455736073, 5240823.227868035]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [10460739.41448147, 5230369.707240736],
+ [10480234.529394493, 5240117.264697246],
+ [10481646.455736073, 5240823.227868035]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json
index 2e565d96..b21bf915 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json
@@ -1,161 +1,112 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json
index 647b8587..8c72dc18 100644
--- a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json
+++ b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json
@@ -1,161 +1,112 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [10460798.061942106, 5230399.030971053],
- [10480275.900003351, 5240137.950001675],
- [10481673.617717963, 5240836.808858982]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [10460798.061942106, 5230399.030971053],
+ [10480275.900003351, 5240137.950001675],
+ [10481673.617717963, 5240836.808858982]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json b/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json
index 9b457521..91e739b4 100644
--- a/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json
@@ -1,5877 +1,5044 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [5.354205, 44.76649699999999]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.352489, 44.767044]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.350948000000001, 44.766465]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.349889, 44.768479]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.340990000000001, 44.771987]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.33796, 44.767887]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.333443, 44.772101]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.332152, 44.773154]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.328604, 44.771373]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.329613, 44.766793]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.329857, 44.766317]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.332717, 44.754985]
- }
- },
- {
- "id": 13,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.335779, 44.751524]
- }
- },
- {
- "id": 14,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322039, 44.770639]
- }
- },
- {
- "id": 15,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322518, 44.773602]
- }
- },
- {
- "id": 16,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322693, 44.77292199999999]
- }
- },
- {
- "id": 17,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322789, 44.777828]
- }
- },
- {
- "id": 18,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322418, 44.778323]
- }
- },
- {
- "id": 19,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.317114, 44.784118]
- }
- },
- {
- "id": 20,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.317399, 44.78419]
- }
- },
- {
- "id": 21,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.315126999999999, 44.788614]
- }
- },
- {
- "id": 22,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.314989, 44.769299]
- }
- },
- {
- "id": 23,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.314938, 44.768333]
- }
- },
- {
- "id": 24,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.306875, 44.765457]
- }
- },
- {
- "id": 25,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.294973000000001, 44.768387]
- }
- },
- {
- "id": 26,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.282789, 44.768455]
- }
- },
- {
- "id": 27,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.280849, 44.765393]
- }
- },
- {
- "id": 28,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.280136, 44.76502199999999]
- }
- },
- {
- "id": 29,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.279859, 44.764848]
- }
- },
- {
- "id": 30,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272926, 44.763672]
- }
- },
- {
- "id": 31,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.273633999999999, 44.76358]
- }
- },
- {
- "id": 32,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272794, 44.763982]
- }
- },
- {
- "id": 33,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270316999999999, 44.760419]
- }
- },
- {
- "id": 34,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.274366000000001, 44.758161]
- }
- },
- {
- "id": 35,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275697, 44.757549]
- }
- },
- {
- "id": 36,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.269593, 44.756572]
- }
- },
- {
- "id": 37,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.267119999999999, 44.752936]
- }
- },
- {
- "id": 38,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264632, 44.750295]
- }
- },
- {
- "id": 39,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.27005, 44.740412]
- }
- },
- {
- "id": 40,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.269245, 44.73877]
- }
- },
- {
- "id": 41,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271239, 44.739363]
- }
- },
- {
- "id": 42,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264574, 44.728315]
- }
- },
- {
- "id": 43,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264002, 44.727847]
- }
- },
- {
- "id": 44,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275233999999999, 44.727239]
- }
- },
- {
- "id": 45,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272823000000001, 44.720533]
- }
- },
- {
- "id": 46,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275627, 44.729237]
- }
- },
- {
- "id": 47,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276962, 44.736068]
- }
- },
- {
- "id": 48,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276011, 44.729195]
- }
- },
- {
- "id": 49,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.287058999999999, 44.727613]
- }
- },
- {
- "id": 50,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288065, 44.727506]
- }
- },
- {
- "id": 51,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288366000000001, 44.727226]
- }
- },
- {
- "id": 52,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291179000000001, 44.730151]
- }
- },
- {
- "id": 53,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291457, 44.731671]
- }
- },
- {
- "id": 54,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.303999999999999, 44.716648]
- }
- },
- {
- "id": 55,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260366, 44.716965]
- }
- },
- {
- "id": 56,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263661, 44.715183]
- }
- },
- {
- "id": 57,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.257317, 44.708429]
- }
- },
- {
- "id": 58,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.255011, 44.70945800000001]
- }
- },
- {
- "id": 59,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.255535, 44.709709]
- }
- },
- {
- "id": 60,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251427, 44.710828]
- }
- },
- {
- "id": 61,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.243164, 44.708558]
- }
- },
- {
- "id": 62,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251423, 44.711268]
- }
- },
- {
- "id": 63,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251258999999999, 44.71193]
- }
- },
- {
- "id": 64,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.247221, 44.712975]
- }
- },
- {
- "id": 65,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.246554, 44.7128]
- }
- },
- {
- "id": 66,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260308999999999, 44.706012]
- }
- },
- {
- "id": 67,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260567, 44.706227]
- }
- },
- {
- "id": 68,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260624, 44.70527199999999]
- }
- },
- {
- "id": 69,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.256809, 44.701526]
- }
- },
- {
- "id": 70,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264354, 44.701611]
- }
- },
- {
- "id": 71,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.265117, 44.701458]
- }
- },
- {
- "id": 72,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.265736, 44.70128]
- }
- },
- {
- "id": 73,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264355999999999, 44.699422]
- }
- },
- {
- "id": 74,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271076, 44.699195]
- }
- },
- {
- "id": 75,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270124, 44.69265]
- }
- },
- {
- "id": 76,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.274132, 44.698074]
- }
- },
- {
- "id": 77,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275216, 44.69925]
- }
- },
- {
- "id": 78,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.29159, 44.69426]
- }
- },
- {
- "id": 79,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293287, 44.697755]
- }
- },
- {
- "id": 80,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.290635, 44.692304]
- }
- },
- {
- "id": 81,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.28942, 44.691436]
- }
- },
- {
- "id": 82,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.284808, 44.691404]
- }
- },
- {
- "id": 83,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.295083, 44.688311]
- }
- },
- {
- "id": 84,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293566, 44.694074]
- }
- },
- {
- "id": 85,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293666, 44.692658]
- }
- },
- {
- "id": 86,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293688, 44.692509]
- }
- },
- {
- "id": 87,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293481, 44.692697]
- }
- },
- {
- "id": 88,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.298165, 44.693851]
- }
- },
- {
- "id": 89,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.30206, 44.694964]
- }
- },
- {
- "id": 90,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.300629, 44.696719]
- }
- },
- {
- "id": 91,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.304166, 44.69539]
- }
- },
- {
- "id": 92,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.303697000000001, 44.695461]
- }
- },
- {
- "id": 93,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.309441099999999, 44.696444]
- }
- },
- {
- "id": 94,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.268341, 44.703601]
- }
- },
- {
- "id": 95,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270058000000001, 44.70570900000001]
- }
- },
- {
- "id": 96,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272387999999999, 44.708816]
- }
- },
- {
- "id": 97,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271646, 44.709229]
- }
- },
- {
- "id": 98,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276741, 44.711462]
- }
- },
- {
- "id": 99,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.286003, 44.70976]
- }
- },
- {
- "id": 100,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251605000000001, 44.70417800000001]
- }
- },
- {
- "id": 101,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252232, 44.699817]
- }
- },
- {
- "id": 102,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.245869, 44.699619]
- }
- },
- {
- "id": 103,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.23077, 44.68984]
- }
- },
- {
- "id": 104,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.233189, 44.688771]
- }
- },
- {
- "id": 105,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.225613, 44.690414]
- }
- },
- {
- "id": 106,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.225658999999999, 44.689413]
- }
- },
- {
- "id": 107,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.229568, 44.685496]
- }
- },
- {
- "id": 108,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.229077999999999, 44.683975]
- }
- },
- {
- "id": 109,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.23335, 44.684175]
- }
- },
- {
- "id": 110,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252115, 44.696185]
- }
- },
- {
- "id": 111,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252836, 44.696314]
- }
- },
- {
- "id": 112,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.257869, 44.692639]
- }
- },
- {
- "id": 113,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.258694999999999, 44.694684]
- }
- },
- {
- "id": 114,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271508, 44.666087]
- }
- },
- {
- "id": 115,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.27233, 44.664478]
- }
- },
- {
- "id": 116,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270444, 44.665025]
- }
- },
- {
- "id": 117,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271881, 44.663251]
- }
- },
- {
- "id": 118,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271709, 44.662301]
- }
- },
- {
- "id": 119,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.268746, 44.660331]
- }
- },
- {
- "id": 120,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288922, 44.6484]
- }
- },
- {
- "id": 121,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.29191, 44.64957800000001]
- }
- },
- {
- "id": 122,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291696, 44.649937]
- }
- },
- {
- "id": 123,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.305674099999999, 44.660426]
- }
- },
- {
- "id": 124,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.306435, 44.663013]
- }
- },
- {
- "id": 125,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291407, 44.637677]
- }
- },
- {
- "id": 126,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.279602, 44.637676]
- }
- },
- {
- "id": 127,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.273155, 44.632589]
- }
- },
- {
- "id": 128,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.302328, 44.630718]
- }
- },
- {
- "id": 129,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.310708999999999, 44.635436]
- }
- },
- {
- "id": 130,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.315926999999999, 44.637017]
- }
- },
- {
- "id": 131,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264264, 44.753757]
- }
- },
- {
- "id": 132,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263632, 44.753395]
- }
- },
- {
- "id": 133,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263077, 44.756667]
- }
- },
- {
- "id": 134,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.239022, 44.751841]
- }
- },
- {
- "id": 135,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.238964, 44.751516]
- }
- },
- {
- "id": 136,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.222045, 44.750602]
- }
- },
- {
- "id": 137,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.220266000000001, 44.749594]
- }
- },
- {
- "id": 138,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.218814, 44.748727]
- }
- },
- {
- "id": 139,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.215553, 44.74695]
- }
- },
- {
- "id": 140,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.209531, 44.736899]
- }
- },
- {
- "id": 141,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.208638, 44.734537]
- }
- },
- {
- "id": 142,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.206393, 44.725698]
- }
- },
- {
- "id": 143,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.218058999999999, 44.726117]
- }
- },
- {
- "id": 144,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.219531, 44.72863]
- }
- },
- {
- "id": 145,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.219654, 44.73002899999999]
- }
- },
- {
- "id": 146,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.217169, 44.734855]
- }
- },
- {
- "id": 147,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.220665, 44.720294]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.354205, 44.76649699999999],
- [5.352489, 44.767044]
- ]
- },
- "length": 0.847,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.352489, 44.767044],
- [5.350948000000001, 44.766465]
- ]
- },
- "length": 0.138,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.352489, 44.767044],
- [5.349889, 44.768479]
- ]
- },
- "length": 0.28,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.349889, 44.768479],
- [5.340990000000001, 44.771987]
- ]
- },
- "length": 0.8059999999999999,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 5,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.340990000000001, 44.771987],
- [5.33796, 44.767887]
- ]
- },
- "length": 0.349,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 5,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.340990000000001, 44.771987],
- [5.333443, 44.772101]
- ]
- },
- "length": 0.635,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.333443, 44.772101],
- [5.332152, 44.773154]
- ]
- },
- "length": 0.072,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.333443, 44.772101],
- [5.328604, 44.771373]
- ]
- },
- "length": 0.389,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.328604, 44.771373],
- [5.329613, 44.766793]
- ]
- },
- "length": 0.512,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.329613, 44.766793],
- [5.329857, 44.766317]
- ]
- },
- "length": 0.0579999999999999,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.329857, 44.766317],
- [5.332717, 44.754985]
- ]
- },
- "length": 0.981,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line12",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 12,
- "bus2": 13,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.332717, 44.754985],
- [5.335779, 44.751524]
- ]
- },
- "length": 0.4539999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line13",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 14,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.328604, 44.771373],
- [5.322039, 44.770639]
- ]
- },
- "length": 0.53,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line14",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 14,
- "bus2": 15,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322039, 44.770639],
- [5.322518, 44.773602]
- ]
- },
- "length": 0.3329999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line15",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 15,
- "bus2": 16,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322518, 44.773602],
- [5.322693, 44.77292199999999]
- ]
- },
- "length": 0.077,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line16",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 16,
- "bus2": 17,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322693, 44.77292199999999],
- [5.322789, 44.777828]
- ]
- },
- "length": 0.47,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line17",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 17,
- "bus2": 18,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322789, 44.777828],
- [5.322418, 44.778323]
- ]
- },
- "length": 0.067,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line18",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 18,
- "bus2": 19,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322418, 44.778323],
- [5.317114, 44.784118]
- ]
- },
- "length": 0.8420000000000001,
- "params_id": "A_AA_75",
- "ground": "ground"
- },
- {
- "id": "line19",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 19,
- "bus2": 20,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.317114, 44.784118],
- [5.317399, 44.78419]
- ]
- },
- "length": 0.022,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line20",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 20,
- "bus2": 21,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.317399, 44.78419],
- [5.315126999999999, 44.788614]
- ]
- },
- "length": 0.534,
- "params_id": "A_AA_75",
- "ground": "ground"
- },
- {
- "id": "line21",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 14,
- "bus2": 22,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322039, 44.770639],
- [5.314989, 44.769299]
- ]
- },
- "length": 0.575,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line22",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 22,
- "bus2": 23,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.314989, 44.769299],
- [5.314938, 44.768333]
- ]
- },
- "length": 0.787,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line23",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 23,
- "bus2": 24,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.314938, 44.768333],
- [5.306875, 44.765457]
- ]
- },
- "length": 0.787,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line24",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 24,
- "bus2": 25,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.306875, 44.765457],
- [5.294973000000001, 44.768387]
- ]
- },
- "length": 1.224,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line25",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 25,
- "bus2": 26,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.294973000000001, 44.768387],
- [5.282789, 44.768455]
- ]
- },
- "length": 1.37,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line26",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 26,
- "bus2": 27,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.282789, 44.768455],
- [5.280849, 44.765393]
- ]
- },
- "length": 0.634,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line27",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 27,
- "bus2": 28,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.280849, 44.765393],
- [5.280136, 44.76502199999999]
- ]
- },
- "length": 0.07,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line28",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 28,
- "bus2": 29,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.280136, 44.76502199999999],
- [5.279859, 44.764848]
- ]
- },
- "length": 0.044,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line29",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 29,
- "bus2": 30,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.279859, 44.764848],
- [5.272926, 44.763672]
- ]
- },
- "length": 0.501,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line30",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 30,
- "bus2": 31,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272926, 44.763672],
- [5.273633999999999, 44.76358]
- ]
- },
- "length": 0.069,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line31",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 31,
- "bus2": 32,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.273633999999999, 44.76358],
- [5.272794, 44.763982]
- ]
- },
- "length": 0.069,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line32",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 32,
- "bus2": 33,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272794, 44.763982],
- [5.270316999999999, 44.760419]
- ]
- },
- "length": 0.4589999999999999,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line33",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 33,
- "bus2": 34,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270316999999999, 44.760419],
- [5.274366000000001, 44.758161]
- ]
- },
- "length": 0.207,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line34",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 34,
- "bus2": 35,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.274366000000001, 44.758161],
- [5.275697, 44.757549]
- ]
- },
- "length": 0.122,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line35",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 35,
- "bus2": 36,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275697, 44.757549],
- [5.269593, 44.756572]
- ]
- },
- "length": 0.411,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line36",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 33,
- "bus2": 37,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270316999999999, 44.760419],
- [5.267119999999999, 44.752936]
- ]
- },
- "length": 0.897,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line37",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 37,
- "bus2": 38,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.267119999999999, 44.752936],
- [5.264632, 44.750295]
- ]
- },
- "length": 0.311,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line38",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 38,
- "bus2": 39,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264632, 44.750295],
- [5.27005, 44.740412]
- ]
- },
- "length": 1.254,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line39",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 39,
- "bus2": 40,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.27005, 44.740412],
- [5.269245, 44.73877]
- ]
- },
- "length": 0.1889999999999999,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line40",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 40,
- "bus2": 41,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.269245, 44.73877],
- [5.271239, 44.739363]
- ]
- },
- "length": 0.177,
- "params_id": "A_AA_54",
- "ground": "ground"
- },
- {
- "id": "line41",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 41,
- "bus2": 42,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271239, 44.739363],
- [5.264574, 44.728315]
- ]
- },
- "length": 1.217,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line42",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 43,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.264002, 44.727847]
- ]
- },
- "length": 0.067,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line43",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 44,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.275233999999999, 44.727239]
- ]
- },
- "length": 0.133,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line44",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 44,
- "bus2": 45,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275233999999999, 44.727239],
- [5.272823000000001, 44.720533]
- ]
- },
- "length": 0.529,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line45",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 44,
- "bus2": 46,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275233999999999, 44.727239],
- [5.275627, 44.729237]
- ]
- },
- "length": 0.213,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line46",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 46,
- "bus2": 47,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275627, 44.729237],
- [5.276962, 44.736068]
- ]
- },
- "length": 1.121,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line47",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 46,
- "bus2": 48,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275627, 44.729237],
- [5.276011, 44.729195]
- ]
- },
- "length": 0.03,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line48",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 48,
- "bus2": 49,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.276011, 44.729195],
- [5.287058999999999, 44.727613]
- ]
- },
- "length": 0.888,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line49",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 49,
- "bus2": 50,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.287058999999999, 44.727613],
- [5.288065, 44.727506]
- ]
- },
- "length": 0.083,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line50",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 51,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.288366000000001, 44.727226]
- ]
- },
- "length": 0.034,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line51",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 52,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.291179000000001, 44.730151]
- ]
- },
- "length": 0.238,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line52",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 53,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.291457, 44.731671]
- ]
- },
- "length": 0.379,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line53",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 49,
- "bus2": 54,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.287058999999999, 44.727613],
- [5.303999999999999, 44.716648]
- ]
- },
- "length": 1.971,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line54",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 55,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.260366, 44.716965]
- ]
- },
- "length": 1.306,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line55",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 55,
- "bus2": 56,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260366, 44.716965],
- [5.263661, 44.715183]
- ]
- },
- "length": 0.118,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line56",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 55,
- "bus2": 57,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260366, 44.716965],
- [5.257317, 44.708429]
- ]
- },
- "length": 0.982,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line57",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 58,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.255011, 44.70945800000001]
- ]
- },
- "length": 0.11,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line58",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 58,
- "bus2": 59,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255011, 44.70945800000001],
- [5.255535, 44.709709]
- ]
- },
- "length": 0.05,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line59",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 59,
- "bus2": 60,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255535, 44.709709],
- [5.251427, 44.710828]
- ]
- },
- "length": 0.321,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line60",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 60,
- "bus2": 61,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251427, 44.710828],
- [5.243164, 44.708558]
- ]
- },
- "length": 0.732,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line61",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 59,
- "bus2": 62,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255535, 44.709709],
- [5.251423, 44.711268]
- ]
- },
- "length": 0.047,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line62",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 62,
- "bus2": 63,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251423, 44.711268],
- [5.251258999999999, 44.71193]
- ]
- },
- "length": 0.064,
- "params_id": "A_CU_12",
- "ground": "ground"
- },
- {
- "id": "line63",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 63,
- "bus2": 64,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251258999999999, 44.71193],
- [5.247221, 44.712975]
- ]
- },
- "length": 0.376,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line64",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 64,
- "bus2": 65,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.247221, 44.712975],
- [5.246554, 44.7128]
- ]
- },
- "length": 0.0559999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line65",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 66,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.260308999999999, 44.706012]
- ]
- },
- "length": 0.2269999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line66",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 66,
- "bus2": 67,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260308999999999, 44.706012],
- [5.260567, 44.706227]
- ]
- },
- "length": 0.038,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line67",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 67,
- "bus2": 68,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260567, 44.706227],
- [5.260624, 44.70527199999999]
- ]
- },
- "length": 0.085,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line68",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 68,
- "bus2": 69,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260624, 44.70527199999999],
- [5.256809, 44.701526]
- ]
- },
- "length": 0.306,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line69",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 68,
- "bus2": 70,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260624, 44.70527199999999],
- [5.264354, 44.701611]
- ]
- },
- "length": 0.511,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line70",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 70,
- "bus2": 71,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264354, 44.701611],
- [5.265117, 44.701458]
- ]
- },
- "length": 0.049,
- "params_id": "A_CU_07",
- "ground": "ground"
- },
- {
- "id": "line71",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 71,
- "bus2": 72,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265117, 44.701458],
- [5.265736, 44.70128]
- ]
- },
- "length": 0.0579999999999999,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line72",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 72,
- "bus2": 73,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265736, 44.70128],
- [5.264355999999999, 44.699422]
- ]
- },
- "length": 0.236,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line73",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 73,
- "bus2": 74,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264355999999999, 44.699422],
- [5.271076, 44.699195]
- ]
- },
- "length": 0.477,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line74",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 74,
- "bus2": 75,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271076, 44.699195],
- [5.270124, 44.69265]
- ]
- },
- "length": 0.353,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line75",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 75,
- "bus2": 76,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270124, 44.69265],
- [5.274132, 44.698074]
- ]
- },
- "length": 0.275,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line76",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 76,
- "bus2": 77,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.274132, 44.698074],
- [5.275216, 44.69925]
- ]
- },
- "length": 0.158,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line77",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 77,
- "bus2": 78,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275216, 44.69925],
- [5.29159, 44.69426]
- ]
- },
- "length": 1.481,
- "params_id": "A_LA_38",
- "ground": "ground"
- },
- {
- "id": "line78",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 79,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.293287, 44.697755]
- ]
- },
- "length": 0.275,
- "params_id": "A_LA_39",
- "ground": "ground"
- },
- {
- "id": "line79",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 80,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.290635, 44.692304]
- ]
- },
- "length": 0.134,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line80",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 80,
- "bus2": 81,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.290635, 44.692304],
- [5.28942, 44.691436]
- ]
- },
- "length": 0.136,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line81",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 81,
- "bus2": 82,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.28942, 44.691436],
- [5.284808, 44.691404]
- ]
- },
- "length": 0.361,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line82",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 81,
- "bus2": 83,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.28942, 44.691436],
- [5.295083, 44.688311]
- ]
- },
- "length": 0.763,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line83",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 84,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.293566, 44.694074]
- ]
- },
- "length": 0.072,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line84",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 84,
- "bus2": 85,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293566, 44.694074],
- [5.293666, 44.692658]
- ]
- },
- "length": 0.154,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line85",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 85,
- "bus2": 86,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293666, 44.692658],
- [5.293688, 44.692509]
- ]
- },
- "length": 0.021,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line86",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 85,
- "bus2": 87,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293666, 44.692658],
- [5.293481, 44.692697]
- ]
- },
- "length": 0.023,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line87",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 84,
- "bus2": 88,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293566, 44.694074],
- [5.298165, 44.693851]
- ]
- },
- "length": 0.365,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line88",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 88,
- "bus2": 89,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.298165, 44.693851],
- [5.30206, 44.694964]
- ]
- },
- "length": 0.353,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line89",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 89,
- "bus2": 90,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.30206, 44.694964],
- [5.300629, 44.696719]
- ]
- },
- "length": 0.281,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line90",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 88,
- "bus2": 91,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.298165, 44.693851],
- [5.304166, 44.69539]
- ]
- },
- "length": 0.174,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line91",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 91,
- "bus2": 92,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.304166, 44.69539],
- [5.303697000000001, 44.695461]
- ]
- },
- "length": 0.037,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line92",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 91,
- "bus2": 93,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.304166, 44.69539],
- [5.309441099999999, 44.696444]
- ]
- },
- "length": 0.428,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line93",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 71,
- "bus2": 94,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265117, 44.701458],
- [5.268341, 44.703601]
- ]
- },
- "length": 0.3329999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line94",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 94,
- "bus2": 95,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.268341, 44.703601],
- [5.270058000000001, 44.70570900000001]
- ]
- },
- "length": 0.272,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line95",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 95,
- "bus2": 96,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270058000000001, 44.70570900000001],
- [5.272387999999999, 44.708816]
- ]
- },
- "length": 0.4,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line96",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 96,
- "bus2": 97,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272387999999999, 44.708816],
- [5.271646, 44.709229]
- ]
- },
- "length": 0.072,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line97",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 96,
- "bus2": 98,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272387999999999, 44.708816],
- [5.276741, 44.711462]
- ]
- },
- "length": 0.441,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line98",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 98,
- "bus2": 99,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.276741, 44.711462],
- [5.286003, 44.70976]
- ]
- },
- "length": 0.772,
- "params_id": "A_AA_54",
- "ground": "ground"
- },
- {
- "id": "line99",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 100,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.251605000000001, 44.70417800000001]
- ]
- },
- "length": 0.65,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line100",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 100,
- "bus2": 101,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251605000000001, 44.70417800000001],
- [5.252232, 44.699817]
- ]
- },
- "length": 0.34,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line101",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 100,
- "bus2": 102,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251605000000001, 44.70417800000001],
- [5.245869, 44.699619]
- ]
- },
- "length": 0.682,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line102",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 102,
- "bus2": 103,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.245869, 44.699619],
- [5.23077, 44.68984]
- ]
- },
- "length": 1.841,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line103",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 103,
- "bus2": 104,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.23077, 44.68984],
- [5.233189, 44.688771]
- ]
- },
- "length": 0.226,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line104",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 103,
- "bus2": 105,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.23077, 44.68984],
- [5.225613, 44.690414]
- ]
- },
- "length": 0.407,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line105",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 105,
- "bus2": 106,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.225613, 44.690414],
- [5.225658999999999, 44.689413]
- ]
- },
- "length": 0.067,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line106",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 106,
- "bus2": 107,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.225658999999999, 44.689413],
- [5.229568, 44.685496]
- ]
- },
- "length": 0.272,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line107",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 107,
- "bus2": 108,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.229568, 44.685496],
- [5.229077999999999, 44.683975]
- ]
- },
- "length": 0.2319999999999999,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line108",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 107,
- "bus2": 109,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.229568, 44.685496],
- [5.23335, 44.684175]
- ]
- },
- "length": 0.253,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line109",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 102,
- "bus2": 110,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.245869, 44.699619],
- [5.252115, 44.696185]
- ]
- },
- "length": 0.515,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line110",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 110,
- "bus2": 111,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.252115, 44.696185],
- [5.252836, 44.696314]
- ]
- },
- "length": 0.06,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line111",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 110,
- "bus2": 112,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.252115, 44.696185],
- [5.257869, 44.692639]
- ]
- },
- "length": 0.607,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line112",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 112,
- "bus2": 113,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257869, 44.692639],
- [5.258694999999999, 44.694684]
- ]
- },
- "length": 0.238,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line113",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 112,
- "bus2": 114,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257869, 44.692639],
- [5.271508, 44.666087]
- ]
- },
- "length": 3.315,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line114",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 114,
- "bus2": 115,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271508, 44.666087],
- [5.27233, 44.664478]
- ]
- },
- "length": 0.09,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line115",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 114,
- "bus2": 116,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271508, 44.666087],
- [5.270444, 44.665025]
- ]
- },
- "length": 0.141,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line116",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 116,
- "bus2": 117,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270444, 44.665025],
- [5.271881, 44.663251]
- ]
- },
- "length": 0.242,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line117",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 117,
- "bus2": 118,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271881, 44.663251],
- [5.271709, 44.662301]
- ]
- },
- "length": 0.11,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line118",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 118,
- "bus2": 119,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271709, 44.662301],
- [5.268746, 44.660331]
- ]
- },
- "length": 0.299,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line119",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 118,
- "bus2": 120,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271709, 44.662301],
- [5.288922, 44.6484]
- ]
- },
- "length": 1.927,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line120",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 120,
- "bus2": 121,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288922, 44.6484],
- [5.29191, 44.64957800000001]
- ]
- },
- "length": 0.2289999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line121",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 121,
- "bus2": 122,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29191, 44.64957800000001],
- [5.291696, 44.649937]
- ]
- },
- "length": 0.039,
- "params_id": "A_AA_22",
- "ground": "ground"
- },
- {
- "id": "line122",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 121,
- "bus2": 123,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29191, 44.64957800000001],
- [5.305674099999999, 44.660426]
- ]
- },
- "length": 1.67,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line123",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 123,
- "bus2": 124,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.305674099999999, 44.660426],
- [5.306435, 44.663013]
- ]
- },
- "length": 0.291,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line124",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 120,
- "bus2": 125,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288922, 44.6484],
- [5.291407, 44.637677]
- ]
- },
- "length": 1.266,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line125",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 125,
- "bus2": 126,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.291407, 44.637677],
- [5.279602, 44.637676]
- ]
- },
- "length": 0.3389999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line126",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 126,
- "bus2": 127,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.279602, 44.637676],
- [5.273155, 44.632589]
- ]
- },
- "length": 0.871,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line127",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 125,
- "bus2": 128,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.291407, 44.637677],
- [5.302328, 44.630718]
- ]
- },
- "length": 0.799,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line128",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 128,
- "bus2": 129,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.302328, 44.630718],
- [5.310708999999999, 44.635436]
- ]
- },
- "length": 0.8290000000000001,
- "params_id": "A_AA_22",
- "ground": "ground"
- },
- {
- "id": "line129",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 129,
- "bus2": 130,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.310708999999999, 44.635436],
- [5.315926999999999, 44.637017]
- ]
- },
- "length": 0.444,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line130",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 37,
- "bus2": 131,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.267119999999999, 44.752936],
- [5.264264, 44.753757]
- ]
- },
- "length": 0.216,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line131",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 132,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.263632, 44.753395]
- ]
- },
- "length": 0.064,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line132",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 133,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.263077, 44.756667]
- ]
- },
- "length": 0.337,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line133",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 134,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.239022, 44.751841]
- ]
- },
- "length": 1.992,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line134",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 134,
- "bus2": 135,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.239022, 44.751841],
- [5.238964, 44.751516]
- ]
- },
- "length": 0.031,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line135",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 134,
- "bus2": 136,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.239022, 44.751841],
- [5.222045, 44.750602]
- ]
- },
- "length": 1.41,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line136",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 136,
- "bus2": 137,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.222045, 44.750602],
- [5.220266000000001, 44.749594]
- ]
- },
- "length": 0.1,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line137",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 137,
- "bus2": 138,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.220266000000001, 44.749594],
- [5.218814, 44.748727]
- ]
- },
- "length": 0.075,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line138",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 138,
- "bus2": 139,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218814, 44.748727],
- [5.215553, 44.74695]
- ]
- },
- "length": 0.487,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line139",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 139,
- "bus2": 140,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.215553, 44.74695],
- [5.209531, 44.736899]
- ]
- },
- "length": 0.995,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line140",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 140,
- "bus2": 141,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.209531, 44.736899],
- [5.208638, 44.734537]
- ]
- },
- "length": 0.2739999999999999,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line141",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 141,
- "bus2": 142,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.208638, 44.734537],
- [5.206393, 44.725698]
- ]
- },
- "length": 1.095,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line142",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 142,
- "bus2": 143,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.206393, 44.725698],
- [5.218058999999999, 44.726117]
- ]
- },
- "length": 0.999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line143",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 143,
- "bus2": 144,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218058999999999, 44.726117],
- [5.219531, 44.72863]
- ]
- },
- "length": 0.28,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line144",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 144,
- "bus2": 145,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.219531, 44.72863],
- [5.219654, 44.73002899999999]
- ]
- },
- "length": 0.18,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line145",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 145,
- "bus2": 146,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.219654, 44.73002899999999],
- [5.217169, 44.734855]
- ]
- },
- "length": 0.564,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line146",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 143,
- "bus2": 147,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218058999999999, 44.726117],
- [5.220665, 44.720294]
- ]
- },
- "length": 0.687,
- "params_id": "A_AM_54",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 1,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 3,
- "bus": 7,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 4,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 5,
- "bus": 10,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 6,
- "bus": 11,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 7,
- "bus": 14,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 8,
- "bus": 15,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 9,
- "bus": 17,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 10,
- "bus": 19,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 11,
- "bus": 22,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 12,
- "bus": 24,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 13,
- "bus": 27,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 14,
- "bus": 28,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 15,
- "bus": 30,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 16,
- "bus": 31,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 17,
- "bus": 33,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 18,
- "bus": 34,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 19,
- "bus": 37,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 20,
- "bus": 39,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 21,
- "bus": 40,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 22,
- "bus": 42,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 23,
- "bus": 44,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 24,
- "bus": 46,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 25,
- "bus": 48,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 26,
- "bus": 49,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 27,
- "bus": 50,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 28,
- "bus": 55,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 29,
- "bus": 57,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 30,
- "bus": 58,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 31,
- "bus": 60,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 32,
- "bus": 61,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 33,
- "bus": 62,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 34,
- "bus": 63,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 35,
- "bus": 64,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 36,
- "bus": 66,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 37,
- "bus": 68,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 38,
- "bus": 70,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 39,
- "bus": 71,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 40,
- "bus": 72,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 41,
- "bus": 73,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 42,
- "bus": 74,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 43,
- "bus": 76,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 44,
- "bus": 78,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 45,
- "bus": 81,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 46,
- "bus": 84,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 47,
- "bus": 85,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 48,
- "bus": 86,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 49,
- "bus": 89,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 50,
- "bus": 91,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 51,
- "bus": 96,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 52,
- "bus": 100,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 53,
- "bus": 102,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 54,
- "bus": 103,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 55,
- "bus": 105,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 56,
- "bus": 107,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 57,
- "bus": 110,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 58,
- "bus": 112,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 59,
- "bus": 114,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 60,
- "bus": 116,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 61,
- "bus": 118,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 62,
- "bus": 120,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 63,
- "bus": 121,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 64,
- "bus": 125,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 65,
- "bus": 129,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 66,
- "bus": 131,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 67,
- "bus": 134,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 68,
- "bus": 136,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 69,
- "bus": 138,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 70,
- "bus": 139,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 71,
- "bus": 140,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 72,
- "bus": 144,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- },
- {
- "id": 73,
- "bus": 145,
- "phases": "abcn",
- "impedances": [
- [10000.0, 2000.0],
- [10000.0, 2000.0],
- [10000.0, 2000.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AA_147",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.243,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.243,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.243
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_22",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.75,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.75,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.75
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_37",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.041,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.041,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.041
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_54",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.775,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.775,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.775
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_75",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.609,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.609,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.609
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_34",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.505,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.505,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.505
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_54",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.613,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.613,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.613
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_75",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.441,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.441,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.441
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_07",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.5,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_12",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.5,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_37",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_38",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_39",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001410575101461,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001410575101461,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001410575101461
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001834690109696,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001834690109696,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001834690109696
- ]
- ]
- ]
- },
- {
- "id": "S_AL_50",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.6,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.6,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.6
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 8.702211650443729e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 8.702211650443729e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 8.702211650443729e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.316,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.316,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.316
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.000115139370754,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.000115139370754,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.000115139370754
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.354205, 44.76649699999999]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.352489, 44.767044]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.350948000000001, 44.766465]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.349889, 44.768479]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.340990000000001, 44.771987]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.33796, 44.767887]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.333443, 44.772101]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.332152, 44.773154]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.328604, 44.771373]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.329613, 44.766793]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.329857, 44.766317]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.332717, 44.754985]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.335779, 44.751524]
+ }
+ },
+ {
+ "id": 14,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322039, 44.770639]
+ }
+ },
+ {
+ "id": 15,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322518, 44.773602]
+ }
+ },
+ {
+ "id": 16,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322693, 44.77292199999999]
+ }
+ },
+ {
+ "id": 17,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322789, 44.777828]
+ }
+ },
+ {
+ "id": 18,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322418, 44.778323]
+ }
+ },
+ {
+ "id": 19,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.317114, 44.784118]
+ }
+ },
+ {
+ "id": 20,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.317399, 44.78419]
+ }
+ },
+ {
+ "id": 21,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.315126999999999, 44.788614]
+ }
+ },
+ {
+ "id": 22,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.314989, 44.769299]
+ }
+ },
+ {
+ "id": 23,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.314938, 44.768333]
+ }
+ },
+ {
+ "id": 24,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.306875, 44.765457]
+ }
+ },
+ {
+ "id": 25,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.294973000000001, 44.768387]
+ }
+ },
+ {
+ "id": 26,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.282789, 44.768455]
+ }
+ },
+ {
+ "id": 27,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.280849, 44.765393]
+ }
+ },
+ {
+ "id": 28,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.280136, 44.76502199999999]
+ }
+ },
+ {
+ "id": 29,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.279859, 44.764848]
+ }
+ },
+ {
+ "id": 30,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272926, 44.763672]
+ }
+ },
+ {
+ "id": 31,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.273633999999999, 44.76358]
+ }
+ },
+ {
+ "id": 32,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272794, 44.763982]
+ }
+ },
+ {
+ "id": 33,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270316999999999, 44.760419]
+ }
+ },
+ {
+ "id": 34,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.274366000000001, 44.758161]
+ }
+ },
+ {
+ "id": 35,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275697, 44.757549]
+ }
+ },
+ {
+ "id": 36,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.269593, 44.756572]
+ }
+ },
+ {
+ "id": 37,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.267119999999999, 44.752936]
+ }
+ },
+ {
+ "id": 38,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264632, 44.750295]
+ }
+ },
+ {
+ "id": 39,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.27005, 44.740412]
+ }
+ },
+ {
+ "id": 40,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.269245, 44.73877]
+ }
+ },
+ {
+ "id": 41,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271239, 44.739363]
+ }
+ },
+ {
+ "id": 42,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264574, 44.728315]
+ }
+ },
+ {
+ "id": 43,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264002, 44.727847]
+ }
+ },
+ {
+ "id": 44,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275233999999999, 44.727239]
+ }
+ },
+ {
+ "id": 45,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272823000000001, 44.720533]
+ }
+ },
+ {
+ "id": 46,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275627, 44.729237]
+ }
+ },
+ {
+ "id": 47,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276962, 44.736068]
+ }
+ },
+ {
+ "id": 48,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276011, 44.729195]
+ }
+ },
+ {
+ "id": 49,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.287058999999999, 44.727613]
+ }
+ },
+ {
+ "id": 50,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288065, 44.727506]
+ }
+ },
+ {
+ "id": 51,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288366000000001, 44.727226]
+ }
+ },
+ {
+ "id": 52,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291179000000001, 44.730151]
+ }
+ },
+ {
+ "id": 53,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291457, 44.731671]
+ }
+ },
+ {
+ "id": 54,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.303999999999999, 44.716648]
+ }
+ },
+ {
+ "id": 55,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260366, 44.716965]
+ }
+ },
+ {
+ "id": 56,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263661, 44.715183]
+ }
+ },
+ {
+ "id": 57,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.257317, 44.708429]
+ }
+ },
+ {
+ "id": 58,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.255011, 44.70945800000001]
+ }
+ },
+ {
+ "id": 59,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.255535, 44.709709]
+ }
+ },
+ {
+ "id": 60,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251427, 44.710828]
+ }
+ },
+ {
+ "id": 61,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.243164, 44.708558]
+ }
+ },
+ {
+ "id": 62,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251423, 44.711268]
+ }
+ },
+ {
+ "id": 63,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251258999999999, 44.71193]
+ }
+ },
+ {
+ "id": 64,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.247221, 44.712975]
+ }
+ },
+ {
+ "id": 65,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.246554, 44.7128]
+ }
+ },
+ {
+ "id": 66,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260308999999999, 44.706012]
+ }
+ },
+ {
+ "id": 67,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260567, 44.706227]
+ }
+ },
+ {
+ "id": 68,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260624, 44.70527199999999]
+ }
+ },
+ {
+ "id": 69,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.256809, 44.701526]
+ }
+ },
+ {
+ "id": 70,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264354, 44.701611]
+ }
+ },
+ {
+ "id": 71,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.265117, 44.701458]
+ }
+ },
+ {
+ "id": 72,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.265736, 44.70128]
+ }
+ },
+ {
+ "id": 73,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264355999999999, 44.699422]
+ }
+ },
+ {
+ "id": 74,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271076, 44.699195]
+ }
+ },
+ {
+ "id": 75,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270124, 44.69265]
+ }
+ },
+ {
+ "id": 76,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.274132, 44.698074]
+ }
+ },
+ {
+ "id": 77,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275216, 44.69925]
+ }
+ },
+ {
+ "id": 78,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.29159, 44.69426]
+ }
+ },
+ {
+ "id": 79,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293287, 44.697755]
+ }
+ },
+ {
+ "id": 80,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.290635, 44.692304]
+ }
+ },
+ {
+ "id": 81,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.28942, 44.691436]
+ }
+ },
+ {
+ "id": 82,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.284808, 44.691404]
+ }
+ },
+ {
+ "id": 83,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.295083, 44.688311]
+ }
+ },
+ {
+ "id": 84,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293566, 44.694074]
+ }
+ },
+ {
+ "id": 85,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293666, 44.692658]
+ }
+ },
+ {
+ "id": 86,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293688, 44.692509]
+ }
+ },
+ {
+ "id": 87,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293481, 44.692697]
+ }
+ },
+ {
+ "id": 88,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.298165, 44.693851]
+ }
+ },
+ {
+ "id": 89,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.30206, 44.694964]
+ }
+ },
+ {
+ "id": 90,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.300629, 44.696719]
+ }
+ },
+ {
+ "id": 91,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.304166, 44.69539]
+ }
+ },
+ {
+ "id": 92,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.303697000000001, 44.695461]
+ }
+ },
+ {
+ "id": 93,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.309441099999999, 44.696444]
+ }
+ },
+ {
+ "id": 94,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.268341, 44.703601]
+ }
+ },
+ {
+ "id": 95,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270058000000001, 44.70570900000001]
+ }
+ },
+ {
+ "id": 96,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272387999999999, 44.708816]
+ }
+ },
+ {
+ "id": 97,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271646, 44.709229]
+ }
+ },
+ {
+ "id": 98,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276741, 44.711462]
+ }
+ },
+ {
+ "id": 99,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.286003, 44.70976]
+ }
+ },
+ {
+ "id": 100,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251605000000001, 44.70417800000001]
+ }
+ },
+ {
+ "id": 101,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252232, 44.699817]
+ }
+ },
+ {
+ "id": 102,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.245869, 44.699619]
+ }
+ },
+ {
+ "id": 103,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.23077, 44.68984]
+ }
+ },
+ {
+ "id": 104,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.233189, 44.688771]
+ }
+ },
+ {
+ "id": 105,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.225613, 44.690414]
+ }
+ },
+ {
+ "id": 106,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.225658999999999, 44.689413]
+ }
+ },
+ {
+ "id": 107,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.229568, 44.685496]
+ }
+ },
+ {
+ "id": 108,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.229077999999999, 44.683975]
+ }
+ },
+ {
+ "id": 109,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.23335, 44.684175]
+ }
+ },
+ {
+ "id": 110,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252115, 44.696185]
+ }
+ },
+ {
+ "id": 111,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252836, 44.696314]
+ }
+ },
+ {
+ "id": 112,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.257869, 44.692639]
+ }
+ },
+ {
+ "id": 113,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.258694999999999, 44.694684]
+ }
+ },
+ {
+ "id": 114,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271508, 44.666087]
+ }
+ },
+ {
+ "id": 115,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.27233, 44.664478]
+ }
+ },
+ {
+ "id": 116,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270444, 44.665025]
+ }
+ },
+ {
+ "id": 117,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271881, 44.663251]
+ }
+ },
+ {
+ "id": 118,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271709, 44.662301]
+ }
+ },
+ {
+ "id": 119,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.268746, 44.660331]
+ }
+ },
+ {
+ "id": 120,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288922, 44.6484]
+ }
+ },
+ {
+ "id": 121,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.29191, 44.64957800000001]
+ }
+ },
+ {
+ "id": 122,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291696, 44.649937]
+ }
+ },
+ {
+ "id": 123,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.305674099999999, 44.660426]
+ }
+ },
+ {
+ "id": 124,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.306435, 44.663013]
+ }
+ },
+ {
+ "id": 125,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291407, 44.637677]
+ }
+ },
+ {
+ "id": 126,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.279602, 44.637676]
+ }
+ },
+ {
+ "id": 127,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.273155, 44.632589]
+ }
+ },
+ {
+ "id": 128,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.302328, 44.630718]
+ }
+ },
+ {
+ "id": 129,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.310708999999999, 44.635436]
+ }
+ },
+ {
+ "id": 130,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.315926999999999, 44.637017]
+ }
+ },
+ {
+ "id": 131,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264264, 44.753757]
+ }
+ },
+ {
+ "id": 132,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263632, 44.753395]
+ }
+ },
+ {
+ "id": 133,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263077, 44.756667]
+ }
+ },
+ {
+ "id": 134,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.239022, 44.751841]
+ }
+ },
+ {
+ "id": 135,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.238964, 44.751516]
+ }
+ },
+ {
+ "id": 136,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.222045, 44.750602]
+ }
+ },
+ {
+ "id": 137,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.220266000000001, 44.749594]
+ }
+ },
+ {
+ "id": 138,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.218814, 44.748727]
+ }
+ },
+ {
+ "id": 139,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.215553, 44.74695]
+ }
+ },
+ {
+ "id": 140,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.209531, 44.736899]
+ }
+ },
+ {
+ "id": 141,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.208638, 44.734537]
+ }
+ },
+ {
+ "id": 142,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.206393, 44.725698]
+ }
+ },
+ {
+ "id": 143,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.218058999999999, 44.726117]
+ }
+ },
+ {
+ "id": 144,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.219531, 44.72863]
+ }
+ },
+ {
+ "id": 145,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.219654, 44.73002899999999]
+ }
+ },
+ {
+ "id": 146,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.217169, 44.734855]
+ }
+ },
+ {
+ "id": 147,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.220665, 44.720294]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.354205, 44.76649699999999],
+ [5.352489, 44.767044]
+ ]
+ },
+ "length": 0.847,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.352489, 44.767044],
+ [5.350948000000001, 44.766465]
+ ]
+ },
+ "length": 0.138,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.352489, 44.767044],
+ [5.349889, 44.768479]
+ ]
+ },
+ "length": 0.28,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.349889, 44.768479],
+ [5.340990000000001, 44.771987]
+ ]
+ },
+ "length": 0.8059999999999999,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 5,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.340990000000001, 44.771987],
+ [5.33796, 44.767887]
+ ]
+ },
+ "length": 0.349,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 5,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.340990000000001, 44.771987],
+ [5.333443, 44.772101]
+ ]
+ },
+ "length": 0.635,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.333443, 44.772101],
+ [5.332152, 44.773154]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.333443, 44.772101],
+ [5.328604, 44.771373]
+ ]
+ },
+ "length": 0.389,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.328604, 44.771373],
+ [5.329613, 44.766793]
+ ]
+ },
+ "length": 0.512,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.329613, 44.766793],
+ [5.329857, 44.766317]
+ ]
+ },
+ "length": 0.0579999999999999,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.329857, 44.766317],
+ [5.332717, 44.754985]
+ ]
+ },
+ "length": 0.981,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line12",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 12,
+ "bus2": 13,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.332717, 44.754985],
+ [5.335779, 44.751524]
+ ]
+ },
+ "length": 0.4539999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line13",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 14,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.328604, 44.771373],
+ [5.322039, 44.770639]
+ ]
+ },
+ "length": 0.53,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line14",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 14,
+ "bus2": 15,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322039, 44.770639],
+ [5.322518, 44.773602]
+ ]
+ },
+ "length": 0.3329999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line15",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 15,
+ "bus2": 16,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322518, 44.773602],
+ [5.322693, 44.77292199999999]
+ ]
+ },
+ "length": 0.077,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line16",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 16,
+ "bus2": 17,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322693, 44.77292199999999],
+ [5.322789, 44.777828]
+ ]
+ },
+ "length": 0.47,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line17",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 17,
+ "bus2": 18,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322789, 44.777828],
+ [5.322418, 44.778323]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line18",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 18,
+ "bus2": 19,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322418, 44.778323],
+ [5.317114, 44.784118]
+ ]
+ },
+ "length": 0.8420000000000001,
+ "params_id": "A_AA_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line19",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 19,
+ "bus2": 20,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.317114, 44.784118],
+ [5.317399, 44.78419]
+ ]
+ },
+ "length": 0.022,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line20",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 20,
+ "bus2": 21,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.317399, 44.78419],
+ [5.315126999999999, 44.788614]
+ ]
+ },
+ "length": 0.534,
+ "params_id": "A_AA_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line21",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 14,
+ "bus2": 22,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322039, 44.770639],
+ [5.314989, 44.769299]
+ ]
+ },
+ "length": 0.575,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line22",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 22,
+ "bus2": 23,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.314989, 44.769299],
+ [5.314938, 44.768333]
+ ]
+ },
+ "length": 0.787,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line23",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 23,
+ "bus2": 24,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.314938, 44.768333],
+ [5.306875, 44.765457]
+ ]
+ },
+ "length": 0.787,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line24",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 24,
+ "bus2": 25,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.306875, 44.765457],
+ [5.294973000000001, 44.768387]
+ ]
+ },
+ "length": 1.224,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line25",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 25,
+ "bus2": 26,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.294973000000001, 44.768387],
+ [5.282789, 44.768455]
+ ]
+ },
+ "length": 1.37,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line26",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 26,
+ "bus2": 27,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.282789, 44.768455],
+ [5.280849, 44.765393]
+ ]
+ },
+ "length": 0.634,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line27",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 27,
+ "bus2": 28,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.280849, 44.765393],
+ [5.280136, 44.76502199999999]
+ ]
+ },
+ "length": 0.07,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line28",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 28,
+ "bus2": 29,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.280136, 44.76502199999999],
+ [5.279859, 44.764848]
+ ]
+ },
+ "length": 0.044,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line29",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 29,
+ "bus2": 30,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.279859, 44.764848],
+ [5.272926, 44.763672]
+ ]
+ },
+ "length": 0.501,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line30",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 30,
+ "bus2": 31,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272926, 44.763672],
+ [5.273633999999999, 44.76358]
+ ]
+ },
+ "length": 0.069,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line31",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 31,
+ "bus2": 32,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.273633999999999, 44.76358],
+ [5.272794, 44.763982]
+ ]
+ },
+ "length": 0.069,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line32",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 32,
+ "bus2": 33,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272794, 44.763982],
+ [5.270316999999999, 44.760419]
+ ]
+ },
+ "length": 0.4589999999999999,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line33",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 33,
+ "bus2": 34,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270316999999999, 44.760419],
+ [5.274366000000001, 44.758161]
+ ]
+ },
+ "length": 0.207,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line34",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 34,
+ "bus2": 35,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.274366000000001, 44.758161],
+ [5.275697, 44.757549]
+ ]
+ },
+ "length": 0.122,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line35",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 35,
+ "bus2": 36,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275697, 44.757549],
+ [5.269593, 44.756572]
+ ]
+ },
+ "length": 0.411,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line36",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 33,
+ "bus2": 37,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270316999999999, 44.760419],
+ [5.267119999999999, 44.752936]
+ ]
+ },
+ "length": 0.897,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line37",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 37,
+ "bus2": 38,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.267119999999999, 44.752936],
+ [5.264632, 44.750295]
+ ]
+ },
+ "length": 0.311,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line38",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 38,
+ "bus2": 39,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264632, 44.750295],
+ [5.27005, 44.740412]
+ ]
+ },
+ "length": 1.254,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line39",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 39,
+ "bus2": 40,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.27005, 44.740412],
+ [5.269245, 44.73877]
+ ]
+ },
+ "length": 0.1889999999999999,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line40",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 40,
+ "bus2": 41,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.269245, 44.73877],
+ [5.271239, 44.739363]
+ ]
+ },
+ "length": 0.177,
+ "params_id": "A_AA_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line41",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 41,
+ "bus2": 42,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271239, 44.739363],
+ [5.264574, 44.728315]
+ ]
+ },
+ "length": 1.217,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line42",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 43,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.264002, 44.727847]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line43",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 44,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.275233999999999, 44.727239]
+ ]
+ },
+ "length": 0.133,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line44",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 44,
+ "bus2": 45,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275233999999999, 44.727239],
+ [5.272823000000001, 44.720533]
+ ]
+ },
+ "length": 0.529,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line45",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 44,
+ "bus2": 46,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275233999999999, 44.727239],
+ [5.275627, 44.729237]
+ ]
+ },
+ "length": 0.213,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line46",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 46,
+ "bus2": 47,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275627, 44.729237],
+ [5.276962, 44.736068]
+ ]
+ },
+ "length": 1.121,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line47",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 46,
+ "bus2": 48,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275627, 44.729237],
+ [5.276011, 44.729195]
+ ]
+ },
+ "length": 0.03,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line48",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 48,
+ "bus2": 49,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.276011, 44.729195],
+ [5.287058999999999, 44.727613]
+ ]
+ },
+ "length": 0.888,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line49",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 49,
+ "bus2": 50,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.287058999999999, 44.727613],
+ [5.288065, 44.727506]
+ ]
+ },
+ "length": 0.083,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line50",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 51,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.288366000000001, 44.727226]
+ ]
+ },
+ "length": 0.034,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line51",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 52,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.291179000000001, 44.730151]
+ ]
+ },
+ "length": 0.238,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line52",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 53,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.291457, 44.731671]
+ ]
+ },
+ "length": 0.379,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line53",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 49,
+ "bus2": 54,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.287058999999999, 44.727613],
+ [5.303999999999999, 44.716648]
+ ]
+ },
+ "length": 1.971,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line54",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 55,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.260366, 44.716965]
+ ]
+ },
+ "length": 1.306,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line55",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 55,
+ "bus2": 56,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260366, 44.716965],
+ [5.263661, 44.715183]
+ ]
+ },
+ "length": 0.118,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line56",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 55,
+ "bus2": 57,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260366, 44.716965],
+ [5.257317, 44.708429]
+ ]
+ },
+ "length": 0.982,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line57",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 58,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.255011, 44.70945800000001]
+ ]
+ },
+ "length": 0.11,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line58",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 58,
+ "bus2": 59,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255011, 44.70945800000001],
+ [5.255535, 44.709709]
+ ]
+ },
+ "length": 0.05,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line59",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 59,
+ "bus2": 60,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255535, 44.709709],
+ [5.251427, 44.710828]
+ ]
+ },
+ "length": 0.321,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line60",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 60,
+ "bus2": 61,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251427, 44.710828],
+ [5.243164, 44.708558]
+ ]
+ },
+ "length": 0.732,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line61",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 59,
+ "bus2": 62,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255535, 44.709709],
+ [5.251423, 44.711268]
+ ]
+ },
+ "length": 0.047,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line62",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 62,
+ "bus2": 63,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251423, 44.711268],
+ [5.251258999999999, 44.71193]
+ ]
+ },
+ "length": 0.064,
+ "params_id": "A_CU_12",
+ "ground": "ground"
+ },
+ {
+ "id": "line63",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 63,
+ "bus2": 64,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251258999999999, 44.71193],
+ [5.247221, 44.712975]
+ ]
+ },
+ "length": 0.376,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line64",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 64,
+ "bus2": 65,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.247221, 44.712975],
+ [5.246554, 44.7128]
+ ]
+ },
+ "length": 0.0559999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line65",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 66,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.260308999999999, 44.706012]
+ ]
+ },
+ "length": 0.2269999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line66",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 66,
+ "bus2": 67,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260308999999999, 44.706012],
+ [5.260567, 44.706227]
+ ]
+ },
+ "length": 0.038,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line67",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 67,
+ "bus2": 68,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260567, 44.706227],
+ [5.260624, 44.70527199999999]
+ ]
+ },
+ "length": 0.085,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line68",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 68,
+ "bus2": 69,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260624, 44.70527199999999],
+ [5.256809, 44.701526]
+ ]
+ },
+ "length": 0.306,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line69",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 68,
+ "bus2": 70,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260624, 44.70527199999999],
+ [5.264354, 44.701611]
+ ]
+ },
+ "length": 0.511,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line70",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 70,
+ "bus2": 71,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264354, 44.701611],
+ [5.265117, 44.701458]
+ ]
+ },
+ "length": 0.049,
+ "params_id": "A_CU_07",
+ "ground": "ground"
+ },
+ {
+ "id": "line71",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 71,
+ "bus2": 72,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265117, 44.701458],
+ [5.265736, 44.70128]
+ ]
+ },
+ "length": 0.0579999999999999,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line72",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 72,
+ "bus2": 73,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265736, 44.70128],
+ [5.264355999999999, 44.699422]
+ ]
+ },
+ "length": 0.236,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line73",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 73,
+ "bus2": 74,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264355999999999, 44.699422],
+ [5.271076, 44.699195]
+ ]
+ },
+ "length": 0.477,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line74",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 74,
+ "bus2": 75,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271076, 44.699195],
+ [5.270124, 44.69265]
+ ]
+ },
+ "length": 0.353,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line75",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 75,
+ "bus2": 76,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270124, 44.69265],
+ [5.274132, 44.698074]
+ ]
+ },
+ "length": 0.275,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line76",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 76,
+ "bus2": 77,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.274132, 44.698074],
+ [5.275216, 44.69925]
+ ]
+ },
+ "length": 0.158,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line77",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 77,
+ "bus2": 78,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275216, 44.69925],
+ [5.29159, 44.69426]
+ ]
+ },
+ "length": 1.481,
+ "params_id": "A_LA_38",
+ "ground": "ground"
+ },
+ {
+ "id": "line78",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 79,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.293287, 44.697755]
+ ]
+ },
+ "length": 0.275,
+ "params_id": "A_LA_39",
+ "ground": "ground"
+ },
+ {
+ "id": "line79",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 80,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.290635, 44.692304]
+ ]
+ },
+ "length": 0.134,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line80",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 80,
+ "bus2": 81,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.290635, 44.692304],
+ [5.28942, 44.691436]
+ ]
+ },
+ "length": 0.136,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line81",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 81,
+ "bus2": 82,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.28942, 44.691436],
+ [5.284808, 44.691404]
+ ]
+ },
+ "length": 0.361,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line82",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 81,
+ "bus2": 83,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.28942, 44.691436],
+ [5.295083, 44.688311]
+ ]
+ },
+ "length": 0.763,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line83",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 84,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.293566, 44.694074]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line84",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 84,
+ "bus2": 85,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293566, 44.694074],
+ [5.293666, 44.692658]
+ ]
+ },
+ "length": 0.154,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line85",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 85,
+ "bus2": 86,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293666, 44.692658],
+ [5.293688, 44.692509]
+ ]
+ },
+ "length": 0.021,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line86",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 85,
+ "bus2": 87,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293666, 44.692658],
+ [5.293481, 44.692697]
+ ]
+ },
+ "length": 0.023,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line87",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 84,
+ "bus2": 88,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293566, 44.694074],
+ [5.298165, 44.693851]
+ ]
+ },
+ "length": 0.365,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line88",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 88,
+ "bus2": 89,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.298165, 44.693851],
+ [5.30206, 44.694964]
+ ]
+ },
+ "length": 0.353,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line89",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 89,
+ "bus2": 90,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.30206, 44.694964],
+ [5.300629, 44.696719]
+ ]
+ },
+ "length": 0.281,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line90",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 88,
+ "bus2": 91,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.298165, 44.693851],
+ [5.304166, 44.69539]
+ ]
+ },
+ "length": 0.174,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line91",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 91,
+ "bus2": 92,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.304166, 44.69539],
+ [5.303697000000001, 44.695461]
+ ]
+ },
+ "length": 0.037,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line92",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 91,
+ "bus2": 93,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.304166, 44.69539],
+ [5.309441099999999, 44.696444]
+ ]
+ },
+ "length": 0.428,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line93",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 71,
+ "bus2": 94,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265117, 44.701458],
+ [5.268341, 44.703601]
+ ]
+ },
+ "length": 0.3329999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line94",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 94,
+ "bus2": 95,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.268341, 44.703601],
+ [5.270058000000001, 44.70570900000001]
+ ]
+ },
+ "length": 0.272,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line95",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 95,
+ "bus2": 96,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270058000000001, 44.70570900000001],
+ [5.272387999999999, 44.708816]
+ ]
+ },
+ "length": 0.4,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line96",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 96,
+ "bus2": 97,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272387999999999, 44.708816],
+ [5.271646, 44.709229]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line97",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 96,
+ "bus2": 98,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272387999999999, 44.708816],
+ [5.276741, 44.711462]
+ ]
+ },
+ "length": 0.441,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line98",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 98,
+ "bus2": 99,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.276741, 44.711462],
+ [5.286003, 44.70976]
+ ]
+ },
+ "length": 0.772,
+ "params_id": "A_AA_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line99",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 100,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.251605000000001, 44.70417800000001]
+ ]
+ },
+ "length": 0.65,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line100",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 100,
+ "bus2": 101,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251605000000001, 44.70417800000001],
+ [5.252232, 44.699817]
+ ]
+ },
+ "length": 0.34,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line101",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 100,
+ "bus2": 102,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251605000000001, 44.70417800000001],
+ [5.245869, 44.699619]
+ ]
+ },
+ "length": 0.682,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line102",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 102,
+ "bus2": 103,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.245869, 44.699619],
+ [5.23077, 44.68984]
+ ]
+ },
+ "length": 1.841,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line103",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 103,
+ "bus2": 104,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.23077, 44.68984],
+ [5.233189, 44.688771]
+ ]
+ },
+ "length": 0.226,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line104",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 103,
+ "bus2": 105,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.23077, 44.68984],
+ [5.225613, 44.690414]
+ ]
+ },
+ "length": 0.407,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line105",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 105,
+ "bus2": 106,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.225613, 44.690414],
+ [5.225658999999999, 44.689413]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line106",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 106,
+ "bus2": 107,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.225658999999999, 44.689413],
+ [5.229568, 44.685496]
+ ]
+ },
+ "length": 0.272,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line107",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 107,
+ "bus2": 108,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.229568, 44.685496],
+ [5.229077999999999, 44.683975]
+ ]
+ },
+ "length": 0.2319999999999999,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line108",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 107,
+ "bus2": 109,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.229568, 44.685496],
+ [5.23335, 44.684175]
+ ]
+ },
+ "length": 0.253,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line109",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 102,
+ "bus2": 110,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.245869, 44.699619],
+ [5.252115, 44.696185]
+ ]
+ },
+ "length": 0.515,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line110",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 110,
+ "bus2": 111,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.252115, 44.696185],
+ [5.252836, 44.696314]
+ ]
+ },
+ "length": 0.06,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line111",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 110,
+ "bus2": 112,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.252115, 44.696185],
+ [5.257869, 44.692639]
+ ]
+ },
+ "length": 0.607,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line112",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 112,
+ "bus2": 113,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257869, 44.692639],
+ [5.258694999999999, 44.694684]
+ ]
+ },
+ "length": 0.238,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line113",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 112,
+ "bus2": 114,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257869, 44.692639],
+ [5.271508, 44.666087]
+ ]
+ },
+ "length": 3.315,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line114",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 114,
+ "bus2": 115,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271508, 44.666087],
+ [5.27233, 44.664478]
+ ]
+ },
+ "length": 0.09,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line115",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 114,
+ "bus2": 116,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271508, 44.666087],
+ [5.270444, 44.665025]
+ ]
+ },
+ "length": 0.141,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line116",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 116,
+ "bus2": 117,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270444, 44.665025],
+ [5.271881, 44.663251]
+ ]
+ },
+ "length": 0.242,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line117",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 117,
+ "bus2": 118,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271881, 44.663251],
+ [5.271709, 44.662301]
+ ]
+ },
+ "length": 0.11,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line118",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 118,
+ "bus2": 119,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271709, 44.662301],
+ [5.268746, 44.660331]
+ ]
+ },
+ "length": 0.299,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line119",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 118,
+ "bus2": 120,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271709, 44.662301],
+ [5.288922, 44.6484]
+ ]
+ },
+ "length": 1.927,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line120",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 120,
+ "bus2": 121,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288922, 44.6484],
+ [5.29191, 44.64957800000001]
+ ]
+ },
+ "length": 0.2289999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line121",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 121,
+ "bus2": 122,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29191, 44.64957800000001],
+ [5.291696, 44.649937]
+ ]
+ },
+ "length": 0.039,
+ "params_id": "A_AA_22",
+ "ground": "ground"
+ },
+ {
+ "id": "line122",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 121,
+ "bus2": 123,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29191, 44.64957800000001],
+ [5.305674099999999, 44.660426]
+ ]
+ },
+ "length": 1.67,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line123",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 123,
+ "bus2": 124,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.305674099999999, 44.660426],
+ [5.306435, 44.663013]
+ ]
+ },
+ "length": 0.291,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line124",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 120,
+ "bus2": 125,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288922, 44.6484],
+ [5.291407, 44.637677]
+ ]
+ },
+ "length": 1.266,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line125",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 125,
+ "bus2": 126,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.291407, 44.637677],
+ [5.279602, 44.637676]
+ ]
+ },
+ "length": 0.3389999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line126",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 126,
+ "bus2": 127,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.279602, 44.637676],
+ [5.273155, 44.632589]
+ ]
+ },
+ "length": 0.871,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line127",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 125,
+ "bus2": 128,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.291407, 44.637677],
+ [5.302328, 44.630718]
+ ]
+ },
+ "length": 0.799,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line128",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 128,
+ "bus2": 129,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.302328, 44.630718],
+ [5.310708999999999, 44.635436]
+ ]
+ },
+ "length": 0.8290000000000001,
+ "params_id": "A_AA_22",
+ "ground": "ground"
+ },
+ {
+ "id": "line129",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 129,
+ "bus2": 130,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.310708999999999, 44.635436],
+ [5.315926999999999, 44.637017]
+ ]
+ },
+ "length": 0.444,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line130",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 37,
+ "bus2": 131,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.267119999999999, 44.752936],
+ [5.264264, 44.753757]
+ ]
+ },
+ "length": 0.216,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line131",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 132,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.263632, 44.753395]
+ ]
+ },
+ "length": 0.064,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line132",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 133,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.263077, 44.756667]
+ ]
+ },
+ "length": 0.337,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line133",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 134,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.239022, 44.751841]
+ ]
+ },
+ "length": 1.992,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line134",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 134,
+ "bus2": 135,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.239022, 44.751841],
+ [5.238964, 44.751516]
+ ]
+ },
+ "length": 0.031,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line135",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 134,
+ "bus2": 136,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.239022, 44.751841],
+ [5.222045, 44.750602]
+ ]
+ },
+ "length": 1.41,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line136",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 136,
+ "bus2": 137,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.222045, 44.750602],
+ [5.220266000000001, 44.749594]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line137",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 137,
+ "bus2": 138,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.220266000000001, 44.749594],
+ [5.218814, 44.748727]
+ ]
+ },
+ "length": 0.075,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line138",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 138,
+ "bus2": 139,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218814, 44.748727],
+ [5.215553, 44.74695]
+ ]
+ },
+ "length": 0.487,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line139",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 139,
+ "bus2": 140,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.215553, 44.74695],
+ [5.209531, 44.736899]
+ ]
+ },
+ "length": 0.995,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line140",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 140,
+ "bus2": 141,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.209531, 44.736899],
+ [5.208638, 44.734537]
+ ]
+ },
+ "length": 0.2739999999999999,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line141",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 141,
+ "bus2": 142,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.208638, 44.734537],
+ [5.206393, 44.725698]
+ ]
+ },
+ "length": 1.095,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line142",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 142,
+ "bus2": 143,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.206393, 44.725698],
+ [5.218058999999999, 44.726117]
+ ]
+ },
+ "length": 0.999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line143",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 143,
+ "bus2": 144,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218058999999999, 44.726117],
+ [5.219531, 44.72863]
+ ]
+ },
+ "length": 0.28,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line144",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 144,
+ "bus2": 145,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.219531, 44.72863],
+ [5.219654, 44.73002899999999]
+ ]
+ },
+ "length": 0.18,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line145",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 145,
+ "bus2": 146,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.219654, 44.73002899999999],
+ [5.217169, 44.734855]
+ ]
+ },
+ "length": 0.564,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line146",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 143,
+ "bus2": 147,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218058999999999, 44.726117],
+ [5.220665, 44.720294]
+ ]
+ },
+ "length": 0.687,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 7,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 10,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 11,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 14,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 15,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 17,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 19,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 22,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 24,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 27,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 28,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 30,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 31,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 33,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 34,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 37,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 39,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 40,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 42,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 44,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 46,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 48,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 49,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 50,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 55,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 57,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 58,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 60,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 61,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 62,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 63,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 64,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 66,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 37,
+ "bus": 68,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 38,
+ "bus": 70,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 39,
+ "bus": 71,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 40,
+ "bus": 72,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 41,
+ "bus": 73,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 42,
+ "bus": 74,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 43,
+ "bus": 76,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 44,
+ "bus": 78,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 45,
+ "bus": 81,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 46,
+ "bus": 84,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 47,
+ "bus": 85,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 48,
+ "bus": 86,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 49,
+ "bus": 89,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 50,
+ "bus": 91,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 51,
+ "bus": 96,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 52,
+ "bus": 100,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 53,
+ "bus": 102,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 54,
+ "bus": 103,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 55,
+ "bus": 105,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 56,
+ "bus": 107,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 57,
+ "bus": 110,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 58,
+ "bus": 112,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 59,
+ "bus": 114,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 60,
+ "bus": 116,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 61,
+ "bus": 118,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 62,
+ "bus": 120,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 63,
+ "bus": 121,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 64,
+ "bus": 125,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 65,
+ "bus": 129,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 66,
+ "bus": 131,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 67,
+ "bus": 134,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 68,
+ "bus": 136,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 69,
+ "bus": 138,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 70,
+ "bus": 139,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 71,
+ "bus": 140,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 72,
+ "bus": 144,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ },
+ {
+ "id": 73,
+ "bus": 145,
+ "phases": "abcn",
+ "impedances": [
+ [10000.0, 2000.0],
+ [10000.0, 2000.0],
+ [10000.0, 2000.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AA_147",
+ "z_line": [
+ [
+ [0.243, 0.0, 0.0],
+ [0.0, 0.243, 0.0],
+ [0.0, 0.0, 0.243]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_22",
+ "z_line": [
+ [
+ [1.75, 0.0, 0.0],
+ [0.0, 1.75, 0.0],
+ [0.0, 0.0, 1.75]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_37",
+ "z_line": [
+ [
+ [1.041, 0.0, 0.0],
+ [0.0, 1.041, 0.0],
+ [0.0, 0.0, 1.041]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_54",
+ "z_line": [
+ [
+ [0.775, 0.0, 0.0],
+ [0.0, 0.775, 0.0],
+ [0.0, 0.0, 0.775]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_75",
+ "z_line": [
+ [
+ [0.609, 0.0, 0.0],
+ [0.0, 0.609, 0.0],
+ [0.0, 0.0, 0.609]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_34",
+ "z_line": [
+ [
+ [1.505, 0.0, 0.0],
+ [0.0, 1.505, 0.0],
+ [0.0, 0.0, 1.505]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_54",
+ "z_line": [
+ [
+ [0.613, 0.0, 0.0],
+ [0.0, 0.613, 0.0],
+ [0.0, 0.0, 0.613]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_75",
+ "z_line": [
+ [
+ [0.441, 0.0, 0.0],
+ [0.0, 0.441, 0.0],
+ [0.0, 0.0, 0.441]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_07",
+ "z_line": [
+ [
+ [1.5, 0.0, 0.0],
+ [0.0, 1.5, 0.0],
+ [0.0, 0.0, 1.5]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_12",
+ "z_line": [
+ [
+ [1.5, 0.0, 0.0],
+ [0.0, 1.5, 0.0],
+ [0.0, 0.0, 1.5]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_37",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_38",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_39",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.20000000000000004]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001410575101461, 0.0, 0.0],
+ [0.0, 0.0001410575101461, 0.0],
+ [0.0, 0.0, 0.0001410575101461]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0],
+ [0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.125]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001834690109696, 0.0, 0.0],
+ [0.0, 0.0001834690109696, 0.0],
+ [0.0, 0.0, 0.0001834690109696]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_50",
+ "z_line": [
+ [
+ [0.6, 0.0, 0.0],
+ [0.0, 0.6, 0.0],
+ [0.0, 0.0, 0.6]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [8.702211650443729e-5, 0.0, 0.0],
+ [0.0, 8.702211650443729e-5, 0.0],
+ [0.0, 0.0, 8.702211650443729e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.316, 0.0, 0.0],
+ [0.0, 0.316, 0.0],
+ [0.0, 0.0, 0.316]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.000115139370754, 0.0, 0.0],
+ [0.0, 0.000115139370754, 0.0],
+ [0.0, 0.0, 0.000115139370754]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/feeder_die/network_power.json b/roseau/load_flow/tests/data/networks/feeder_die/network_power.json
index 5d14d958..5f62ed31 100644
--- a/roseau/load_flow/tests/data/networks/feeder_die/network_power.json
+++ b/roseau/load_flow/tests/data/networks/feeder_die/network_power.json
@@ -1,5877 +1,5044 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [5.354205, 44.76649699999999]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.352489, 44.767044]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.350948000000001, 44.766465]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.349889, 44.768479]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.340990000000001, 44.771987]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.33796, 44.767887]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.333443, 44.772101]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.332152, 44.773154]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.328604, 44.771373]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.329613, 44.766793]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.329857, 44.766317]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.332717, 44.754985]
- }
- },
- {
- "id": 13,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.335779, 44.751524]
- }
- },
- {
- "id": 14,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322039, 44.770639]
- }
- },
- {
- "id": 15,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322518, 44.773602]
- }
- },
- {
- "id": 16,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322693, 44.77292199999999]
- }
- },
- {
- "id": 17,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322789, 44.777828]
- }
- },
- {
- "id": 18,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.322418, 44.778323]
- }
- },
- {
- "id": 19,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.317114, 44.784118]
- }
- },
- {
- "id": 20,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.317399, 44.78419]
- }
- },
- {
- "id": 21,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.315126999999999, 44.788614]
- }
- },
- {
- "id": 22,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.314989, 44.769299]
- }
- },
- {
- "id": 23,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.314938, 44.768333]
- }
- },
- {
- "id": 24,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.306875, 44.765457]
- }
- },
- {
- "id": 25,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.294973000000001, 44.768387]
- }
- },
- {
- "id": 26,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.282789, 44.768455]
- }
- },
- {
- "id": 27,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.280849, 44.765393]
- }
- },
- {
- "id": 28,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.280136, 44.76502199999999]
- }
- },
- {
- "id": 29,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.279859, 44.764848]
- }
- },
- {
- "id": 30,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272926, 44.763672]
- }
- },
- {
- "id": 31,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.273633999999999, 44.76358]
- }
- },
- {
- "id": 32,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272794, 44.763982]
- }
- },
- {
- "id": 33,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270316999999999, 44.760419]
- }
- },
- {
- "id": 34,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.274366000000001, 44.758161]
- }
- },
- {
- "id": 35,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275697, 44.757549]
- }
- },
- {
- "id": 36,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.269593, 44.756572]
- }
- },
- {
- "id": 37,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.267119999999999, 44.752936]
- }
- },
- {
- "id": 38,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264632, 44.750295]
- }
- },
- {
- "id": 39,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.27005, 44.740412]
- }
- },
- {
- "id": 40,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.269245, 44.73877]
- }
- },
- {
- "id": 41,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271239, 44.739363]
- }
- },
- {
- "id": 42,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264574, 44.728315]
- }
- },
- {
- "id": 43,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264002, 44.727847]
- }
- },
- {
- "id": 44,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275233999999999, 44.727239]
- }
- },
- {
- "id": 45,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272823000000001, 44.720533]
- }
- },
- {
- "id": 46,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275627, 44.729237]
- }
- },
- {
- "id": 47,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276962, 44.736068]
- }
- },
- {
- "id": 48,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276011, 44.729195]
- }
- },
- {
- "id": 49,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.287058999999999, 44.727613]
- }
- },
- {
- "id": 50,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288065, 44.727506]
- }
- },
- {
- "id": 51,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288366000000001, 44.727226]
- }
- },
- {
- "id": 52,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291179000000001, 44.730151]
- }
- },
- {
- "id": 53,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291457, 44.731671]
- }
- },
- {
- "id": 54,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.303999999999999, 44.716648]
- }
- },
- {
- "id": 55,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260366, 44.716965]
- }
- },
- {
- "id": 56,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263661, 44.715183]
- }
- },
- {
- "id": 57,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.257317, 44.708429]
- }
- },
- {
- "id": 58,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.255011, 44.70945800000001]
- }
- },
- {
- "id": 59,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.255535, 44.709709]
- }
- },
- {
- "id": 60,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251427, 44.710828]
- }
- },
- {
- "id": 61,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.243164, 44.708558]
- }
- },
- {
- "id": 62,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251423, 44.711268]
- }
- },
- {
- "id": 63,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251258999999999, 44.71193]
- }
- },
- {
- "id": 64,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.247221, 44.712975]
- }
- },
- {
- "id": 65,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.246554, 44.7128]
- }
- },
- {
- "id": 66,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260308999999999, 44.706012]
- }
- },
- {
- "id": 67,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260567, 44.706227]
- }
- },
- {
- "id": 68,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.260624, 44.70527199999999]
- }
- },
- {
- "id": 69,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.256809, 44.701526]
- }
- },
- {
- "id": 70,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264354, 44.701611]
- }
- },
- {
- "id": 71,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.265117, 44.701458]
- }
- },
- {
- "id": 72,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.265736, 44.70128]
- }
- },
- {
- "id": 73,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264355999999999, 44.699422]
- }
- },
- {
- "id": 74,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271076, 44.699195]
- }
- },
- {
- "id": 75,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270124, 44.69265]
- }
- },
- {
- "id": 76,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.274132, 44.698074]
- }
- },
- {
- "id": 77,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.275216, 44.69925]
- }
- },
- {
- "id": 78,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.29159, 44.69426]
- }
- },
- {
- "id": 79,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293287, 44.697755]
- }
- },
- {
- "id": 80,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.290635, 44.692304]
- }
- },
- {
- "id": 81,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.28942, 44.691436]
- }
- },
- {
- "id": 82,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.284808, 44.691404]
- }
- },
- {
- "id": 83,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.295083, 44.688311]
- }
- },
- {
- "id": 84,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293566, 44.694074]
- }
- },
- {
- "id": 85,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293666, 44.692658]
- }
- },
- {
- "id": 86,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293688, 44.692509]
- }
- },
- {
- "id": 87,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.293481, 44.692697]
- }
- },
- {
- "id": 88,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.298165, 44.693851]
- }
- },
- {
- "id": 89,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.30206, 44.694964]
- }
- },
- {
- "id": 90,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.300629, 44.696719]
- }
- },
- {
- "id": 91,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.304166, 44.69539]
- }
- },
- {
- "id": 92,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.303697000000001, 44.695461]
- }
- },
- {
- "id": 93,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.309441099999999, 44.696444]
- }
- },
- {
- "id": 94,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.268341, 44.703601]
- }
- },
- {
- "id": 95,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270058000000001, 44.70570900000001]
- }
- },
- {
- "id": 96,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.272387999999999, 44.708816]
- }
- },
- {
- "id": 97,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271646, 44.709229]
- }
- },
- {
- "id": 98,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.276741, 44.711462]
- }
- },
- {
- "id": 99,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.286003, 44.70976]
- }
- },
- {
- "id": 100,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.251605000000001, 44.70417800000001]
- }
- },
- {
- "id": 101,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252232, 44.699817]
- }
- },
- {
- "id": 102,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.245869, 44.699619]
- }
- },
- {
- "id": 103,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.23077, 44.68984]
- }
- },
- {
- "id": 104,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.233189, 44.688771]
- }
- },
- {
- "id": 105,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.225613, 44.690414]
- }
- },
- {
- "id": 106,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.225658999999999, 44.689413]
- }
- },
- {
- "id": 107,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.229568, 44.685496]
- }
- },
- {
- "id": 108,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.229077999999999, 44.683975]
- }
- },
- {
- "id": 109,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.23335, 44.684175]
- }
- },
- {
- "id": 110,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252115, 44.696185]
- }
- },
- {
- "id": 111,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.252836, 44.696314]
- }
- },
- {
- "id": 112,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.257869, 44.692639]
- }
- },
- {
- "id": 113,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.258694999999999, 44.694684]
- }
- },
- {
- "id": 114,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271508, 44.666087]
- }
- },
- {
- "id": 115,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.27233, 44.664478]
- }
- },
- {
- "id": 116,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.270444, 44.665025]
- }
- },
- {
- "id": 117,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271881, 44.663251]
- }
- },
- {
- "id": 118,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.271709, 44.662301]
- }
- },
- {
- "id": 119,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.268746, 44.660331]
- }
- },
- {
- "id": 120,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.288922, 44.6484]
- }
- },
- {
- "id": 121,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.29191, 44.64957800000001]
- }
- },
- {
- "id": 122,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291696, 44.649937]
- }
- },
- {
- "id": 123,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.305674099999999, 44.660426]
- }
- },
- {
- "id": 124,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.306435, 44.663013]
- }
- },
- {
- "id": 125,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.291407, 44.637677]
- }
- },
- {
- "id": 126,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.279602, 44.637676]
- }
- },
- {
- "id": 127,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.273155, 44.632589]
- }
- },
- {
- "id": 128,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.302328, 44.630718]
- }
- },
- {
- "id": 129,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.310708999999999, 44.635436]
- }
- },
- {
- "id": 130,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.315926999999999, 44.637017]
- }
- },
- {
- "id": 131,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.264264, 44.753757]
- }
- },
- {
- "id": 132,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263632, 44.753395]
- }
- },
- {
- "id": 133,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.263077, 44.756667]
- }
- },
- {
- "id": 134,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.239022, 44.751841]
- }
- },
- {
- "id": 135,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.238964, 44.751516]
- }
- },
- {
- "id": 136,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.222045, 44.750602]
- }
- },
- {
- "id": 137,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.220266000000001, 44.749594]
- }
- },
- {
- "id": 138,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.218814, 44.748727]
- }
- },
- {
- "id": 139,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.215553, 44.74695]
- }
- },
- {
- "id": 140,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.209531, 44.736899]
- }
- },
- {
- "id": 141,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.208638, 44.734537]
- }
- },
- {
- "id": 142,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.206393, 44.725698]
- }
- },
- {
- "id": 143,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.218058999999999, 44.726117]
- }
- },
- {
- "id": 144,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.219531, 44.72863]
- }
- },
- {
- "id": 145,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.219654, 44.73002899999999]
- }
- },
- {
- "id": 146,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.217169, 44.734855]
- }
- },
- {
- "id": 147,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.220665, 44.720294]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.354205, 44.76649699999999],
- [5.352489, 44.767044]
- ]
- },
- "length": 0.847,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.352489, 44.767044],
- [5.350948000000001, 44.766465]
- ]
- },
- "length": 0.138,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.352489, 44.767044],
- [5.349889, 44.768479]
- ]
- },
- "length": 0.28,
- "params_id": "S_AL_240",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.349889, 44.768479],
- [5.340990000000001, 44.771987]
- ]
- },
- "length": 0.8059999999999999,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 5,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.340990000000001, 44.771987],
- [5.33796, 44.767887]
- ]
- },
- "length": 0.349,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 5,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.340990000000001, 44.771987],
- [5.333443, 44.772101]
- ]
- },
- "length": 0.635,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.333443, 44.772101],
- [5.332152, 44.773154]
- ]
- },
- "length": 0.072,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.333443, 44.772101],
- [5.328604, 44.771373]
- ]
- },
- "length": 0.389,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.328604, 44.771373],
- [5.329613, 44.766793]
- ]
- },
- "length": 0.512,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.329613, 44.766793],
- [5.329857, 44.766317]
- ]
- },
- "length": 0.0579999999999999,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.329857, 44.766317],
- [5.332717, 44.754985]
- ]
- },
- "length": 0.981,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line12",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 12,
- "bus2": 13,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.332717, 44.754985],
- [5.335779, 44.751524]
- ]
- },
- "length": 0.4539999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line13",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 14,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.328604, 44.771373],
- [5.322039, 44.770639]
- ]
- },
- "length": 0.53,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line14",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 14,
- "bus2": 15,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322039, 44.770639],
- [5.322518, 44.773602]
- ]
- },
- "length": 0.3329999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line15",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 15,
- "bus2": 16,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322518, 44.773602],
- [5.322693, 44.77292199999999]
- ]
- },
- "length": 0.077,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line16",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 16,
- "bus2": 17,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322693, 44.77292199999999],
- [5.322789, 44.777828]
- ]
- },
- "length": 0.47,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line17",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 17,
- "bus2": 18,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322789, 44.777828],
- [5.322418, 44.778323]
- ]
- },
- "length": 0.067,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line18",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 18,
- "bus2": 19,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322418, 44.778323],
- [5.317114, 44.784118]
- ]
- },
- "length": 0.8420000000000001,
- "params_id": "A_AA_75",
- "ground": "ground"
- },
- {
- "id": "line19",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 19,
- "bus2": 20,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.317114, 44.784118],
- [5.317399, 44.78419]
- ]
- },
- "length": 0.022,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line20",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 20,
- "bus2": 21,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.317399, 44.78419],
- [5.315126999999999, 44.788614]
- ]
- },
- "length": 0.534,
- "params_id": "A_AA_75",
- "ground": "ground"
- },
- {
- "id": "line21",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 14,
- "bus2": 22,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.322039, 44.770639],
- [5.314989, 44.769299]
- ]
- },
- "length": 0.575,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line22",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 22,
- "bus2": 23,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.314989, 44.769299],
- [5.314938, 44.768333]
- ]
- },
- "length": 0.787,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line23",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 23,
- "bus2": 24,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.314938, 44.768333],
- [5.306875, 44.765457]
- ]
- },
- "length": 0.787,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line24",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 24,
- "bus2": 25,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.306875, 44.765457],
- [5.294973000000001, 44.768387]
- ]
- },
- "length": 1.224,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line25",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 25,
- "bus2": 26,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.294973000000001, 44.768387],
- [5.282789, 44.768455]
- ]
- },
- "length": 1.37,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line26",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 26,
- "bus2": 27,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.282789, 44.768455],
- [5.280849, 44.765393]
- ]
- },
- "length": 0.634,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line27",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 27,
- "bus2": 28,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.280849, 44.765393],
- [5.280136, 44.76502199999999]
- ]
- },
- "length": 0.07,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line28",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 28,
- "bus2": 29,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.280136, 44.76502199999999],
- [5.279859, 44.764848]
- ]
- },
- "length": 0.044,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line29",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 29,
- "bus2": 30,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.279859, 44.764848],
- [5.272926, 44.763672]
- ]
- },
- "length": 0.501,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line30",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 30,
- "bus2": 31,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272926, 44.763672],
- [5.273633999999999, 44.76358]
- ]
- },
- "length": 0.069,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line31",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 31,
- "bus2": 32,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.273633999999999, 44.76358],
- [5.272794, 44.763982]
- ]
- },
- "length": 0.069,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line32",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 32,
- "bus2": 33,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272794, 44.763982],
- [5.270316999999999, 44.760419]
- ]
- },
- "length": 0.4589999999999999,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line33",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 33,
- "bus2": 34,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270316999999999, 44.760419],
- [5.274366000000001, 44.758161]
- ]
- },
- "length": 0.207,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line34",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 34,
- "bus2": 35,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.274366000000001, 44.758161],
- [5.275697, 44.757549]
- ]
- },
- "length": 0.122,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line35",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 35,
- "bus2": 36,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275697, 44.757549],
- [5.269593, 44.756572]
- ]
- },
- "length": 0.411,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line36",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 33,
- "bus2": 37,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270316999999999, 44.760419],
- [5.267119999999999, 44.752936]
- ]
- },
- "length": 0.897,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line37",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 37,
- "bus2": 38,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.267119999999999, 44.752936],
- [5.264632, 44.750295]
- ]
- },
- "length": 0.311,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line38",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 38,
- "bus2": 39,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264632, 44.750295],
- [5.27005, 44.740412]
- ]
- },
- "length": 1.254,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line39",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 39,
- "bus2": 40,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.27005, 44.740412],
- [5.269245, 44.73877]
- ]
- },
- "length": 0.1889999999999999,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line40",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 40,
- "bus2": 41,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.269245, 44.73877],
- [5.271239, 44.739363]
- ]
- },
- "length": 0.177,
- "params_id": "A_AA_54",
- "ground": "ground"
- },
- {
- "id": "line41",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 41,
- "bus2": 42,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271239, 44.739363],
- [5.264574, 44.728315]
- ]
- },
- "length": 1.217,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line42",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 43,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.264002, 44.727847]
- ]
- },
- "length": 0.067,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line43",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 44,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.275233999999999, 44.727239]
- ]
- },
- "length": 0.133,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line44",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 44,
- "bus2": 45,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275233999999999, 44.727239],
- [5.272823000000001, 44.720533]
- ]
- },
- "length": 0.529,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line45",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 44,
- "bus2": 46,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275233999999999, 44.727239],
- [5.275627, 44.729237]
- ]
- },
- "length": 0.213,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line46",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 46,
- "bus2": 47,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275627, 44.729237],
- [5.276962, 44.736068]
- ]
- },
- "length": 1.121,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line47",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 46,
- "bus2": 48,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275627, 44.729237],
- [5.276011, 44.729195]
- ]
- },
- "length": 0.03,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line48",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 48,
- "bus2": 49,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.276011, 44.729195],
- [5.287058999999999, 44.727613]
- ]
- },
- "length": 0.888,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line49",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 49,
- "bus2": 50,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.287058999999999, 44.727613],
- [5.288065, 44.727506]
- ]
- },
- "length": 0.083,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line50",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 51,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.288366000000001, 44.727226]
- ]
- },
- "length": 0.034,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line51",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 52,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.291179000000001, 44.730151]
- ]
- },
- "length": 0.238,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line52",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 50,
- "bus2": 53,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288065, 44.727506],
- [5.291457, 44.731671]
- ]
- },
- "length": 0.379,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line53",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 49,
- "bus2": 54,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.287058999999999, 44.727613],
- [5.303999999999999, 44.716648]
- ]
- },
- "length": 1.971,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line54",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 42,
- "bus2": 55,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264574, 44.728315],
- [5.260366, 44.716965]
- ]
- },
- "length": 1.306,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line55",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 55,
- "bus2": 56,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260366, 44.716965],
- [5.263661, 44.715183]
- ]
- },
- "length": 0.118,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line56",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 55,
- "bus2": 57,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260366, 44.716965],
- [5.257317, 44.708429]
- ]
- },
- "length": 0.982,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line57",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 58,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.255011, 44.70945800000001]
- ]
- },
- "length": 0.11,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line58",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 58,
- "bus2": 59,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255011, 44.70945800000001],
- [5.255535, 44.709709]
- ]
- },
- "length": 0.05,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line59",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 59,
- "bus2": 60,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255535, 44.709709],
- [5.251427, 44.710828]
- ]
- },
- "length": 0.321,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line60",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 60,
- "bus2": 61,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251427, 44.710828],
- [5.243164, 44.708558]
- ]
- },
- "length": 0.732,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line61",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 59,
- "bus2": 62,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.255535, 44.709709],
- [5.251423, 44.711268]
- ]
- },
- "length": 0.047,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line62",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 62,
- "bus2": 63,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251423, 44.711268],
- [5.251258999999999, 44.71193]
- ]
- },
- "length": 0.064,
- "params_id": "A_CU_12",
- "ground": "ground"
- },
- {
- "id": "line63",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 63,
- "bus2": 64,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251258999999999, 44.71193],
- [5.247221, 44.712975]
- ]
- },
- "length": 0.376,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line64",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 64,
- "bus2": 65,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.247221, 44.712975],
- [5.246554, 44.7128]
- ]
- },
- "length": 0.0559999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line65",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 66,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.260308999999999, 44.706012]
- ]
- },
- "length": 0.2269999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line66",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 66,
- "bus2": 67,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260308999999999, 44.706012],
- [5.260567, 44.706227]
- ]
- },
- "length": 0.038,
- "params_id": "S_AL_150",
- "ground": "ground"
- },
- {
- "id": "line67",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 67,
- "bus2": 68,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260567, 44.706227],
- [5.260624, 44.70527199999999]
- ]
- },
- "length": 0.085,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line68",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 68,
- "bus2": 69,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260624, 44.70527199999999],
- [5.256809, 44.701526]
- ]
- },
- "length": 0.306,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line69",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 68,
- "bus2": 70,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.260624, 44.70527199999999],
- [5.264354, 44.701611]
- ]
- },
- "length": 0.511,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line70",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 70,
- "bus2": 71,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264354, 44.701611],
- [5.265117, 44.701458]
- ]
- },
- "length": 0.049,
- "params_id": "A_CU_07",
- "ground": "ground"
- },
- {
- "id": "line71",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 71,
- "bus2": 72,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265117, 44.701458],
- [5.265736, 44.70128]
- ]
- },
- "length": 0.0579999999999999,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line72",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 72,
- "bus2": 73,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265736, 44.70128],
- [5.264355999999999, 44.699422]
- ]
- },
- "length": 0.236,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line73",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 73,
- "bus2": 74,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264355999999999, 44.699422],
- [5.271076, 44.699195]
- ]
- },
- "length": 0.477,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line74",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 74,
- "bus2": 75,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271076, 44.699195],
- [5.270124, 44.69265]
- ]
- },
- "length": 0.353,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line75",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 75,
- "bus2": 76,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270124, 44.69265],
- [5.274132, 44.698074]
- ]
- },
- "length": 0.275,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line76",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 76,
- "bus2": 77,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.274132, 44.698074],
- [5.275216, 44.69925]
- ]
- },
- "length": 0.158,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line77",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 77,
- "bus2": 78,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.275216, 44.69925],
- [5.29159, 44.69426]
- ]
- },
- "length": 1.481,
- "params_id": "A_LA_38",
- "ground": "ground"
- },
- {
- "id": "line78",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 79,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.293287, 44.697755]
- ]
- },
- "length": 0.275,
- "params_id": "A_LA_39",
- "ground": "ground"
- },
- {
- "id": "line79",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 80,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.290635, 44.692304]
- ]
- },
- "length": 0.134,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line80",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 80,
- "bus2": 81,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.290635, 44.692304],
- [5.28942, 44.691436]
- ]
- },
- "length": 0.136,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line81",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 81,
- "bus2": 82,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.28942, 44.691436],
- [5.284808, 44.691404]
- ]
- },
- "length": 0.361,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line82",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 81,
- "bus2": 83,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.28942, 44.691436],
- [5.295083, 44.688311]
- ]
- },
- "length": 0.763,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line83",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 78,
- "bus2": 84,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29159, 44.69426],
- [5.293566, 44.694074]
- ]
- },
- "length": 0.072,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line84",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 84,
- "bus2": 85,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293566, 44.694074],
- [5.293666, 44.692658]
- ]
- },
- "length": 0.154,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line85",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 85,
- "bus2": 86,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293666, 44.692658],
- [5.293688, 44.692509]
- ]
- },
- "length": 0.021,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line86",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 85,
- "bus2": 87,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293666, 44.692658],
- [5.293481, 44.692697]
- ]
- },
- "length": 0.023,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line87",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 84,
- "bus2": 88,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.293566, 44.694074],
- [5.298165, 44.693851]
- ]
- },
- "length": 0.365,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line88",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 88,
- "bus2": 89,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.298165, 44.693851],
- [5.30206, 44.694964]
- ]
- },
- "length": 0.353,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line89",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 89,
- "bus2": 90,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.30206, 44.694964],
- [5.300629, 44.696719]
- ]
- },
- "length": 0.281,
- "params_id": "A_LA_37",
- "ground": "ground"
- },
- {
- "id": "line90",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 88,
- "bus2": 91,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.298165, 44.693851],
- [5.304166, 44.69539]
- ]
- },
- "length": 0.174,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line91",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 91,
- "bus2": 92,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.304166, 44.69539],
- [5.303697000000001, 44.695461]
- ]
- },
- "length": 0.037,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line92",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 91,
- "bus2": 93,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.304166, 44.69539],
- [5.309441099999999, 44.696444]
- ]
- },
- "length": 0.428,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line93",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 71,
- "bus2": 94,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.265117, 44.701458],
- [5.268341, 44.703601]
- ]
- },
- "length": 0.3329999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line94",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 94,
- "bus2": 95,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.268341, 44.703601],
- [5.270058000000001, 44.70570900000001]
- ]
- },
- "length": 0.272,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line95",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 95,
- "bus2": 96,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270058000000001, 44.70570900000001],
- [5.272387999999999, 44.708816]
- ]
- },
- "length": 0.4,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line96",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 96,
- "bus2": 97,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272387999999999, 44.708816],
- [5.271646, 44.709229]
- ]
- },
- "length": 0.072,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line97",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 96,
- "bus2": 98,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.272387999999999, 44.708816],
- [5.276741, 44.711462]
- ]
- },
- "length": 0.441,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line98",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 98,
- "bus2": 99,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.276741, 44.711462],
- [5.286003, 44.70976]
- ]
- },
- "length": 0.772,
- "params_id": "A_AA_54",
- "ground": "ground"
- },
- {
- "id": "line99",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 57,
- "bus2": 100,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257317, 44.708429],
- [5.251605000000001, 44.70417800000001]
- ]
- },
- "length": 0.65,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line100",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 100,
- "bus2": 101,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251605000000001, 44.70417800000001],
- [5.252232, 44.699817]
- ]
- },
- "length": 0.34,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line101",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 100,
- "bus2": 102,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.251605000000001, 44.70417800000001],
- [5.245869, 44.699619]
- ]
- },
- "length": 0.682,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line102",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 102,
- "bus2": 103,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.245869, 44.699619],
- [5.23077, 44.68984]
- ]
- },
- "length": 1.841,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line103",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 103,
- "bus2": 104,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.23077, 44.68984],
- [5.233189, 44.688771]
- ]
- },
- "length": 0.226,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line104",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 103,
- "bus2": 105,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.23077, 44.68984],
- [5.225613, 44.690414]
- ]
- },
- "length": 0.407,
- "params_id": "A_AA_147",
- "ground": "ground"
- },
- {
- "id": "line105",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 105,
- "bus2": 106,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.225613, 44.690414],
- [5.225658999999999, 44.689413]
- ]
- },
- "length": 0.067,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line106",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 106,
- "bus2": 107,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.225658999999999, 44.689413],
- [5.229568, 44.685496]
- ]
- },
- "length": 0.272,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line107",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 107,
- "bus2": 108,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.229568, 44.685496],
- [5.229077999999999, 44.683975]
- ]
- },
- "length": 0.2319999999999999,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line108",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 107,
- "bus2": 109,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.229568, 44.685496],
- [5.23335, 44.684175]
- ]
- },
- "length": 0.253,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line109",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 102,
- "bus2": 110,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.245869, 44.699619],
- [5.252115, 44.696185]
- ]
- },
- "length": 0.515,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line110",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 110,
- "bus2": 111,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.252115, 44.696185],
- [5.252836, 44.696314]
- ]
- },
- "length": 0.06,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line111",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 110,
- "bus2": 112,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.252115, 44.696185],
- [5.257869, 44.692639]
- ]
- },
- "length": 0.607,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line112",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 112,
- "bus2": 113,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257869, 44.692639],
- [5.258694999999999, 44.694684]
- ]
- },
- "length": 0.238,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line113",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 112,
- "bus2": 114,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.257869, 44.692639],
- [5.271508, 44.666087]
- ]
- },
- "length": 3.315,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line114",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 114,
- "bus2": 115,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271508, 44.666087],
- [5.27233, 44.664478]
- ]
- },
- "length": 0.09,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line115",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 114,
- "bus2": 116,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271508, 44.666087],
- [5.270444, 44.665025]
- ]
- },
- "length": 0.141,
- "params_id": "A_AM_75",
- "ground": "ground"
- },
- {
- "id": "line116",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 116,
- "bus2": 117,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.270444, 44.665025],
- [5.271881, 44.663251]
- ]
- },
- "length": 0.242,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line117",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 117,
- "bus2": 118,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271881, 44.663251],
- [5.271709, 44.662301]
- ]
- },
- "length": 0.11,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line118",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 118,
- "bus2": 119,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271709, 44.662301],
- [5.268746, 44.660331]
- ]
- },
- "length": 0.299,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line119",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 118,
- "bus2": 120,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.271709, 44.662301],
- [5.288922, 44.6484]
- ]
- },
- "length": 1.927,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line120",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 120,
- "bus2": 121,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288922, 44.6484],
- [5.29191, 44.64957800000001]
- ]
- },
- "length": 0.2289999999999999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line121",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 121,
- "bus2": 122,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29191, 44.64957800000001],
- [5.291696, 44.649937]
- ]
- },
- "length": 0.039,
- "params_id": "A_AA_22",
- "ground": "ground"
- },
- {
- "id": "line122",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 121,
- "bus2": 123,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.29191, 44.64957800000001],
- [5.305674099999999, 44.660426]
- ]
- },
- "length": 1.67,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line123",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 123,
- "bus2": 124,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.305674099999999, 44.660426],
- [5.306435, 44.663013]
- ]
- },
- "length": 0.291,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line124",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 120,
- "bus2": 125,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.288922, 44.6484],
- [5.291407, 44.637677]
- ]
- },
- "length": 1.266,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line125",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 125,
- "bus2": 126,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.291407, 44.637677],
- [5.279602, 44.637676]
- ]
- },
- "length": 0.3389999999999999,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line126",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 126,
- "bus2": 127,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.279602, 44.637676],
- [5.273155, 44.632589]
- ]
- },
- "length": 0.871,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line127",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 125,
- "bus2": 128,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.291407, 44.637677],
- [5.302328, 44.630718]
- ]
- },
- "length": 0.799,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line128",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 128,
- "bus2": 129,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.302328, 44.630718],
- [5.310708999999999, 44.635436]
- ]
- },
- "length": 0.8290000000000001,
- "params_id": "A_AA_22",
- "ground": "ground"
- },
- {
- "id": "line129",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 129,
- "bus2": 130,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.310708999999999, 44.635436],
- [5.315926999999999, 44.637017]
- ]
- },
- "length": 0.444,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line130",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 37,
- "bus2": 131,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.267119999999999, 44.752936],
- [5.264264, 44.753757]
- ]
- },
- "length": 0.216,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line131",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 132,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.263632, 44.753395]
- ]
- },
- "length": 0.064,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line132",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 133,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.263077, 44.756667]
- ]
- },
- "length": 0.337,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line133",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 131,
- "bus2": 134,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.264264, 44.753757],
- [5.239022, 44.751841]
- ]
- },
- "length": 1.992,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line134",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 134,
- "bus2": 135,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.239022, 44.751841],
- [5.238964, 44.751516]
- ]
- },
- "length": 0.031,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line135",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 134,
- "bus2": 136,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.239022, 44.751841],
- [5.222045, 44.750602]
- ]
- },
- "length": 1.41,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line136",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 136,
- "bus2": 137,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.222045, 44.750602],
- [5.220266000000001, 44.749594]
- ]
- },
- "length": 0.1,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line137",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 137,
- "bus2": 138,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.220266000000001, 44.749594],
- [5.218814, 44.748727]
- ]
- },
- "length": 0.075,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line138",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 138,
- "bus2": 139,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218814, 44.748727],
- [5.215553, 44.74695]
- ]
- },
- "length": 0.487,
- "params_id": "A_AA_37",
- "ground": "ground"
- },
- {
- "id": "line139",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 139,
- "bus2": 140,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.215553, 44.74695],
- [5.209531, 44.736899]
- ]
- },
- "length": 0.995,
- "params_id": "A_AM_34",
- "ground": "ground"
- },
- {
- "id": "line140",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 140,
- "bus2": 141,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.209531, 44.736899],
- [5.208638, 44.734537]
- ]
- },
- "length": 0.2739999999999999,
- "params_id": "S_AL_50",
- "ground": "ground"
- },
- {
- "id": "line141",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 141,
- "bus2": 142,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.208638, 44.734537],
- [5.206393, 44.725698]
- ]
- },
- "length": 1.095,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line142",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 142,
- "bus2": 143,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.206393, 44.725698],
- [5.218058999999999, 44.726117]
- ]
- },
- "length": 0.999,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line143",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 143,
- "bus2": 144,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218058999999999, 44.726117],
- [5.219531, 44.72863]
- ]
- },
- "length": 0.28,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line144",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 144,
- "bus2": 145,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.219531, 44.72863],
- [5.219654, 44.73002899999999]
- ]
- },
- "length": 0.18,
- "params_id": "S_AL_95",
- "ground": "ground"
- },
- {
- "id": "line145",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 145,
- "bus2": 146,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.219654, 44.73002899999999],
- [5.217169, 44.734855]
- ]
- },
- "length": 0.564,
- "params_id": "A_AM_54",
- "ground": "ground"
- },
- {
- "id": "line146",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 143,
- "bus2": 147,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.218058999999999, 44.726117],
- [5.220665, 44.720294]
- ]
- },
- "length": 0.687,
- "params_id": "A_AM_54",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [12802.501990789257, 2560.500398157851],
- [12802.501991134319, 2560.5003982268627],
- [12802.501991134317, 2560.5003982268668]
- ]
- },
- {
- "id": 1,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [12796.567508638322, 2559.313501727664],
- [12796.56750898323, 2559.313501796648],
- [12796.567508983235, 2559.3135017966506]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [12765.017770922159, 2553.0035541844327],
- [12765.017771266208, 2553.0035542532423],
- [12765.017771266213, 2553.0035542532382]
- ]
- },
- {
- "id": 3,
- "bus": 7,
- "phases": "abcn",
- "powers": [
- [12740.737737064119, 2548.1475474128224],
- [12740.737737407515, 2548.1475474815006],
- [12740.737737407508, 2548.1475474814974]
- ]
- },
- {
- "id": 4,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [12726.200419221137, 2545.2400838442263],
- [12726.200419564138, 2545.240083912827],
- [12726.20041956414, 2545.2400839128277]
- ]
- },
- {
- "id": 5,
- "bus": 10,
- "phases": "abcn",
- "powers": [
- [12725.465466076494, 2545.0930932152983],
- [12725.465466419479, 2545.0930932838937],
- [12725.465466419473, 2545.093093283894]
- ]
- },
- {
- "id": 6,
- "bus": 11,
- "phases": "abcn",
- "powers": [
- [12725.43517637802, 2545.0870352756046],
- [12725.435176721006, 2545.0870353442015],
- [12725.435176721006, 2545.087035344201]
- ]
- },
- {
- "id": 7,
- "bus": 14,
- "phases": "abcn",
- "powers": [
- [12707.602683905367, 2541.5205367810727],
- [12707.602684247868, 2541.5205368495754],
- [12707.60268424787, 2541.520536849573]
- ]
- },
- {
- "id": 8,
- "bus": 15,
- "phases": "abcn",
- "powers": [
- [12704.901205829321, 2540.9802411658625],
- [12704.901206171744, 2540.980241234349],
- [12704.901206171748, 2540.9802412343515]
- ]
- },
- {
- "id": 9,
- "bus": 17,
- "phases": "abcn",
- "powers": [
- [12701.770964275058, 2540.3541928550126],
- [12701.770964617397, 2540.3541929234825],
- [12701.770964617403, 2540.354192923482]
- ]
- },
- {
- "id": 10,
- "bus": 19,
- "phases": "abcn",
- "powers": [
- [12700.205603076367, 2540.041120615274],
- [12700.20560341866, 2540.0411206837325],
- [12700.205603418672, 2540.0411206837343]
- ]
- },
- {
- "id": 11,
- "bus": 22,
- "phases": "abcn",
- "powers": [
- [12689.217617966586, 2537.8435235933175],
- [12689.217618308583, 2537.843523661718],
- [12689.217618308587, 2537.8435236617197]
- ]
- },
- {
- "id": 12,
- "bus": 24,
- "phases": "abcn",
- "powers": [
- [12597.043984934118, 2519.4087969868233],
- [12597.043985273627, 2519.408797054728],
- [12597.04398527364, 2519.408797054729]
- ]
- },
- {
- "id": 13,
- "bus": 27,
- "phases": "abcn",
- "powers": [
- [12506.045785991091, 2501.209157198218],
- [12506.045786328154, 2501.2091572656273],
- [12506.045786328166, 2501.2091572656327]
- ]
- },
- {
- "id": 14,
- "bus": 28,
- "phases": "abcn",
- "powers": [
- [12503.726828561492, 2500.7453657122983],
- [12503.726828898474, 2500.745365779696],
- [12503.7268288985, 2500.7453657797]
- ]
- },
- {
- "id": 15,
- "bus": 30,
- "phases": "abcn",
- "powers": [
- [12488.622180748127, 2497.7244361496264],
- [12488.62218108472, 2497.7244362169386],
- [12488.622181084738, 2497.7244362169495]
- ]
- },
- {
- "id": 16,
- "bus": 31,
- "phases": "abcn",
- "powers": [
- [12486.739679367176, 2497.3479358734335],
- [12486.739679703718, 2497.3479359407356],
- [12486.739679703738, 2497.347935940747]
- ]
- },
- {
- "id": 17,
- "bus": 33,
- "phases": "abcn",
- "powers": [
- [12460.422372843175, 2492.0844745686345],
- [12460.422373179015, 2492.0844746358],
- [12460.422373179032, 2492.0844746358007]
- ]
- },
- {
- "id": 18,
- "bus": 34,
- "phases": "abcn",
- "powers": [
- [12459.873117109248, 2491.9746234218496],
- [12459.873117445062, 2491.97462348901],
- [12459.873117445082, 2491.9746234890154]
- ]
- },
- {
- "id": 19,
- "bus": 37,
- "phases": "abcn",
- "powers": [
- [12437.115136541554, 2487.42302730831],
- [12437.115136876753, 2487.4230273753437],
- [12437.115136876771, 2487.4230273753515]
- ]
- },
- {
- "id": 20,
- "bus": 39,
- "phases": "abcn",
- "powers": [
- [12402.516318557688, 2480.503263711538],
- [12402.516318891954, 2480.5032637783843],
- [12402.516318891981, 2480.5032637783997]
- ]
- },
- {
- "id": 21,
- "bus": 40,
- "phases": "abcn",
- "powers": [
- [12397.2955315958, 2479.4591063191597],
- [12397.295531929922, 2479.4591063859853],
- [12397.29553192994, 2479.4591063859916]
- ]
- },
- {
- "id": 22,
- "bus": 42,
- "phases": "abcn",
- "powers": [
- [12350.08915464453, 2470.017830928906],
- [12350.089154977362, 2470.0178309954717],
- [12350.089154977402, 2470.0178309954817]
- ]
- },
- {
- "id": 23,
- "bus": 44,
- "phases": "abcn",
- "powers": [
- [12348.387911342532, 2469.6775822685045],
- [12348.387911675325, 2469.677582335068],
- [12348.387911675358, 2469.6775823350767]
- ]
- },
- {
- "id": 24,
- "bus": 46,
- "phases": "abcn",
- "powers": [
- [12346.223486490066, 2469.244697298013],
- [12346.223486822808, 2469.244697364561],
- [12346.223486822846, 2469.244697364572]
- ]
- },
- {
- "id": 25,
- "bus": 48,
- "phases": "abcn",
- "powers": [
- [12346.179516601576, 2469.2359033203147],
- [12346.179516934308, 2469.2359033868615],
- [12346.17951693435, 2469.235903386871]
- ]
- },
- {
- "id": 26,
- "bus": 49,
- "phases": "abcn",
- "powers": [
- [12339.833388750798, 2467.9666777501598],
- [12339.83338908336, 2467.966677816674],
- [12339.833389083396, 2467.9666778166784]
- ]
- },
- {
- "id": 27,
- "bus": 50,
- "phases": "abcn",
- "powers": [
- [12339.54775798752, 2467.909551597504],
- [12339.54775832008, 2467.9095516640164],
- [12339.547758320114, 2467.9095516640236]
- ]
- },
- {
- "id": 28,
- "bus": 55,
- "phases": "abcn",
- "powers": [
- [12320.47105093255, 2464.0942101865103],
- [12320.471051264594, 2464.094210252916],
- [12320.471051264638, 2464.0942102529316]
- ]
- },
- {
- "id": 29,
- "bus": 57,
- "phases": "abcn",
- "powers": [
- [12298.97759572786, 2459.7955191455717],
- [12298.97759605932, 2459.795519211865],
- [12298.97759605936, 2459.7955192118743]
- ]
- },
- {
- "id": 30,
- "bus": 58,
- "phases": "abcn",
- "powers": [
- [12297.246110182197, 2459.4492220364396],
- [12297.24611051361, 2459.449222102722],
- [12297.246110513644, 2459.449222102731]
- ]
- },
- {
- "id": 31,
- "bus": 60,
- "phases": "abcn",
- "powers": [
- [12295.160815223391, 2459.032163044679],
- [12295.160815554753, 2459.0321631109546],
- [12295.160815554796, 2459.0321631109605]
- ]
- },
- {
- "id": 32,
- "bus": 61,
- "phases": "abcn",
- "powers": [
- [12293.982395686638, 2458.796479137327],
- [12293.982396017964, 2458.796479203591],
- [12293.982396018006, 2458.796479203602]
- ]
- },
- {
- "id": 33,
- "bus": 62,
- "phases": "abcn",
- "powers": [
- [12296.616039898434, 2459.323207979687],
- [12296.616040229826, 2459.323208045964],
- [12296.616040229861, 2459.3232080459734]
- ]
- },
- {
- "id": 34,
- "bus": 63,
- "phases": "abcn",
- "powers": [
- [12296.141244021726, 2459.2282488043456],
- [12296.1412443531, 2459.228248870614],
- [12296.14124435314, 2459.228248870628]
- ]
- },
- {
- "id": 35,
- "bus": 64,
- "phases": "abcn",
- "powers": [
- [12295.535246857302, 2459.107049371459],
- [12295.535247188673, 2459.1070494377327],
- [12295.535247188709, 2459.107049437743]
- ]
- },
- {
- "id": 36,
- "bus": 66,
- "phases": "abcn",
- "powers": [
- [12289.633404085758, 2457.926680817149],
- [12289.633404416963, 2457.926680883391],
- [12289.633404417002, 2457.926680883402]
- ]
- },
- {
- "id": 37,
- "bus": 68,
- "phases": "abcn",
- "powers": [
- [12286.066845253778, 2457.2133690507517],
- [12286.066845584883, 2457.2133691169765],
- [12286.066845584923, 2457.2133691169824]
- ]
- },
- {
- "id": 38,
- "bus": 70,
- "phases": "abcn",
- "powers": [
- [12267.700626786547, 2453.540125357308],
- [12267.700627117149, 2453.540125423431],
- [12267.700627117203, 2453.5401254234407]
- ]
- },
- {
- "id": 39,
- "bus": 71,
- "phases": "abcn",
- "powers": [
- [12265.380072032627, 2453.0760144065243],
- [12265.38007236317, 2453.076014472633],
- [12265.380072363218, 2453.0760144726446]
- ]
- },
- {
- "id": 40,
- "bus": 72,
- "phases": "abcn",
- "powers": [
- [12263.523709578187, 2452.7047419156356],
- [12263.523709908673, 2452.7047419817363],
- [12263.52370990872, 2452.7047419817454]
- ]
- },
- {
- "id": 41,
- "bus": 73,
- "phases": "abcn",
- "powers": [
- [12254.935892839552, 2450.987178567909],
- [12254.935893169812, 2450.987178633961],
- [12254.93589316986, 2450.9871786339727]
- ]
- },
- {
- "id": 42,
- "bus": 74,
- "phases": "abcn",
- "powers": [
- [12242.51281613178, 2448.5025632263564],
- [12242.512816461702, 2448.50256329234],
- [12242.512816461749, 2448.5025632923516]
- ]
- },
- {
- "id": 43,
- "bus": 76,
- "phases": "abcn",
- "powers": [
- [12228.027002796374, 2445.6054005592746],
- [12228.027003125919, 2445.6054006251834],
- [12228.027003125964, 2445.6054006251943]
- ]
- },
- {
- "id": 44,
- "bus": 78,
- "phases": "abcn",
- "powers": [
- [12195.094540595564, 2439.018908119113],
- [12195.094540924201, 2439.018908184843],
- [12195.094540924252, 2439.0189081848507]
- ]
- },
- {
- "id": 45,
- "bus": 81,
- "phases": "abcn",
- "powers": [
- [12194.397907903025, 2438.879581580604],
- [12194.397908231655, 2438.8795816463326],
- [12194.397908231706, 2438.8795816463376]
- ]
- },
- {
- "id": 46,
- "bus": 84,
- "phases": "abcn",
- "powers": [
- [12194.521349752014, 2438.904269950403],
- [12194.521350080639, 2438.90427001613],
- [12194.52135008069, 2438.9042700161376]
- ]
- },
- {
- "id": 47,
- "bus": 85,
- "phases": "abcn",
- "powers": [
- [12194.031723143064, 2438.8063446286124],
- [12194.031723471682, 2438.806344694336],
- [12194.03172347173, 2438.806344694346]
- ]
- },
- {
- "id": 48,
- "bus": 86,
- "phases": "abcn",
- "powers": [
- [12193.998091744037, 2438.7996183488085],
- [12193.998092072648, 2438.7996184145322],
- [12193.9980920727, 2438.799618414539]
- ]
- },
- {
- "id": 49,
- "bus": 89,
- "phases": "abcn",
- "powers": [
- [12192.7961636406, 2438.55923272812],
- [12192.796163969175, 2438.5592327938366],
- [12192.796163969228, 2438.5592327938466]
- ]
- },
- {
- "id": 50,
- "bus": 91,
- "phases": "abcn",
- "powers": [
- [12193.081949536554, 2438.61638990731],
- [12193.081949865145, 2438.616389973028],
- [12193.081949865194, 2438.6163899730404]
- ]
- },
- {
- "id": 51,
- "bus": 96,
- "phases": "abcn",
- "powers": [
- [12262.77106449845, 2452.5542128996904],
- [12262.771064828907, 2452.5542129657824],
- [12262.771064828954, 2452.554212965794]
- ]
- },
- {
- "id": 52,
- "bus": 100,
- "phases": "abcn",
- "powers": [
- [12295.301951915377, 2459.060390383075],
- [12295.301952246733, 2459.0603904493455],
- [12295.301952246773, 2459.060390449357]
- ]
- },
- {
- "id": 53,
- "bus": 102,
- "phases": "abcn",
- "powers": [
- [12291.944396425028, 2458.3888792850057],
- [12291.94439675629, 2458.3888793512597],
- [12291.944396756355, 2458.3888793512733]
- ]
- },
- {
- "id": 54,
- "bus": 103,
- "phases": "abcn",
- "powers": [
- [12288.334961780476, 2457.6669923560976],
- [12288.334962111632, 2457.666992422327],
- [12288.334962111676, 2457.6669924223343]
- ]
- },
- {
- "id": 55,
- "bus": 105,
- "phases": "abcn",
- "powers": [
- [12287.830777190737, 2457.566155438148],
- [12287.83077752188, 2457.566155504377],
- [12287.830777521927, 2457.5661555043857]
- ]
- },
- {
- "id": 56,
- "bus": 107,
- "phases": "abcn",
- "powers": [
- [12287.088405667299, 2457.41768113346],
- [12287.088405998416, 2457.4176811996813],
- [12287.088405998471, 2457.417681199692]
- ]
- },
- {
- "id": 57,
- "bus": 110,
- "phases": "abcn",
- "powers": [
- [12288.621960893228, 2457.724392178644],
- [12288.621961224388, 2457.724392244875],
- [12288.621961224457, 2457.7243922448897]
- ]
- },
- {
- "id": 58,
- "bus": 112,
- "phases": "abcn",
- "powers": [
- [12285.436006820195, 2457.087201364039],
- [12285.436007151286, 2457.0872014302577],
- [12285.436007151342, 2457.0872014302668]
- ]
- },
- {
- "id": 59,
- "bus": 114,
- "phases": "abcn",
- "powers": [
- [12271.971328492453, 2454.394265698492],
- [12271.971328823172, 2454.394265764634],
- [12271.971328823241, 2454.394265764648]
- ]
- },
- {
- "id": 60,
- "bus": 116,
- "phases": "abcn",
- "powers": [
- [12271.566322333221, 2454.3132644666443],
- [12271.566322663948, 2454.3132645327887],
- [12271.566322664006, 2454.3132645327964]
- ]
- },
- {
- "id": 61,
- "bus": 118,
- "phases": "abcn",
- "powers": [
- [12270.592082030807, 2454.1184164061597],
- [12270.5920823615, 2454.1184164722963],
- [12270.592082361563, 2454.118416472311]
- ]
- },
- {
- "id": 62,
- "bus": 120,
- "phases": "abcn",
- "powers": [
- [12266.165321951908, 2453.2330643903806],
- [12266.165322282475, 2453.2330644564954],
- [12266.16532228254, 2453.2330644565054]
- ]
- },
- {
- "id": 63,
- "bus": 121,
- "phases": "abcn",
- "powers": [
- [12265.802915429917, 2453.16058308598],
- [12265.80291576048, 2453.1605831520974],
- [12265.802915760549, 2453.1605831521088]
- ]
- },
- {
- "id": 64,
- "bus": 125,
- "phases": "abcn",
- "powers": [
- [12264.682914183797, 2452.936582836761],
- [12264.682914514327, 2452.9365829028684],
- [12264.682914514397, 2452.9365829028775]
- ]
- },
- {
- "id": 65,
- "bus": 129,
- "phases": "abcn",
- "powers": [
- [12260.595819680475, 2452.119163936096],
- [12260.595820010902, 2452.11916400218],
- [12260.59582001097, 2452.119164002193]
- ]
- },
- {
- "id": 66,
- "bus": 131,
- "phases": "abcn",
- "powers": [
- [12432.876180518142, 2486.5752361036284],
- [12432.876180853233, 2486.575236170641],
- [12432.876180853253, 2486.5752361706454]
- ]
- },
- {
- "id": 67,
- "bus": 134,
- "phases": "abcn",
- "powers": [
- [12399.064781536277, 2479.8129563072544],
- [12399.064781870467, 2479.812956374095],
- [12399.064781870464, 2479.812956374092]
- ]
- },
- {
- "id": 68,
- "bus": 136,
- "phases": "abcn",
- "powers": [
- [12378.863033841777, 2475.772606768356],
- [12378.86303417543, 2475.7726068350885],
- [12378.863034175418, 2475.7726068350844]
- ]
- },
- {
- "id": 69,
- "bus": 138,
- "phases": "abcn",
- "powers": [
- [12377.709104796742, 2475.54182095935],
- [12377.709105130365, 2475.5418210260777],
- [12377.709105130349, 2475.5418210260727]
- ]
- },
- {
- "id": 70,
- "bus": 139,
- "phases": "abcn",
- "powers": [
- [12373.304471533807, 2474.660894306761],
- [12373.304471867308, 2474.6608943734655],
- [12373.304471867285, 2474.660894373461]
- ]
- },
- {
- "id": 71,
- "bus": 140,
- "phases": "abcn",
- "powers": [
- [12363.635345915347, 2472.727069183071],
- [12363.635346248599, 2472.727069249727],
- [12363.63534624858, 2472.727069249717]
- ]
- },
- {
- "id": 72,
- "bus": 144,
- "phases": "abcn",
- "powers": [
- [12357.53364027714, 2471.50672805543],
- [12357.533640610238, 2471.5067281220563],
- [12357.533640610227, 2471.5067281220427]
- ]
- },
- {
- "id": 73,
- "bus": 145,
- "phases": "abcn",
- "powers": [
- [12357.39491792443, 2471.4789835848856],
- [12357.394918257512, 2471.4789836515083],
- [12357.394918257492, 2471.4789836514915]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AA_147",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.243,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.243,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.243
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_22",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.75,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.75,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.75
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_37",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.041,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.041,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.041
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_54",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.775,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.775,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.775
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AA_75",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.609,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.609,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.609
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_34",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.505,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.505,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.505
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_54",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.613,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.613,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.613
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_AM_75",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.441,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.441,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.441
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_07",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.5,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_CU_12",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.5,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_37",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_38",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "A_LA_39",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.192,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.192,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.192
- ]
- ],
- [
- [
- 0.3499999999999999,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.3499999999999999,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.3499999999999999
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 1.5707963267948998e-06,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.5707963267948998e-06,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.5707963267948998e-06
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.20000000000000004,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.20000000000000004,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.20000000000000004
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001410575101461,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001410575101461,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001410575101461
- ]
- ]
- ]
- },
- {
- "id": "S_AL_240",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.125,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.125,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.125
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.0001834690109696,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0001834690109696,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0001834690109696
- ]
- ]
- ]
- },
- {
- "id": "S_AL_50",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.6,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.6,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.6
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 8.702211650443729e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 8.702211650443729e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 8.702211650443729e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_95",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.316,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.316,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.316
- ]
- ],
- [
- [
- 0.10000000000000002,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.10000000000000002,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.10000000000000002
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0
- ]
- ],
- [
- [
- 0.000115139370754,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.000115139370754,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.000115139370754
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.354205, 44.76649699999999]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.352489, 44.767044]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.350948000000001, 44.766465]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.349889, 44.768479]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.340990000000001, 44.771987]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.33796, 44.767887]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.333443, 44.772101]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.332152, 44.773154]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.328604, 44.771373]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.329613, 44.766793]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.329857, 44.766317]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.332717, 44.754985]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.335779, 44.751524]
+ }
+ },
+ {
+ "id": 14,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322039, 44.770639]
+ }
+ },
+ {
+ "id": 15,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322518, 44.773602]
+ }
+ },
+ {
+ "id": 16,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322693, 44.77292199999999]
+ }
+ },
+ {
+ "id": 17,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322789, 44.777828]
+ }
+ },
+ {
+ "id": 18,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.322418, 44.778323]
+ }
+ },
+ {
+ "id": 19,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.317114, 44.784118]
+ }
+ },
+ {
+ "id": 20,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.317399, 44.78419]
+ }
+ },
+ {
+ "id": 21,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.315126999999999, 44.788614]
+ }
+ },
+ {
+ "id": 22,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.314989, 44.769299]
+ }
+ },
+ {
+ "id": 23,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.314938, 44.768333]
+ }
+ },
+ {
+ "id": 24,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.306875, 44.765457]
+ }
+ },
+ {
+ "id": 25,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.294973000000001, 44.768387]
+ }
+ },
+ {
+ "id": 26,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.282789, 44.768455]
+ }
+ },
+ {
+ "id": 27,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.280849, 44.765393]
+ }
+ },
+ {
+ "id": 28,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.280136, 44.76502199999999]
+ }
+ },
+ {
+ "id": 29,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.279859, 44.764848]
+ }
+ },
+ {
+ "id": 30,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272926, 44.763672]
+ }
+ },
+ {
+ "id": 31,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.273633999999999, 44.76358]
+ }
+ },
+ {
+ "id": 32,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272794, 44.763982]
+ }
+ },
+ {
+ "id": 33,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270316999999999, 44.760419]
+ }
+ },
+ {
+ "id": 34,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.274366000000001, 44.758161]
+ }
+ },
+ {
+ "id": 35,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275697, 44.757549]
+ }
+ },
+ {
+ "id": 36,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.269593, 44.756572]
+ }
+ },
+ {
+ "id": 37,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.267119999999999, 44.752936]
+ }
+ },
+ {
+ "id": 38,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264632, 44.750295]
+ }
+ },
+ {
+ "id": 39,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.27005, 44.740412]
+ }
+ },
+ {
+ "id": 40,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.269245, 44.73877]
+ }
+ },
+ {
+ "id": 41,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271239, 44.739363]
+ }
+ },
+ {
+ "id": 42,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264574, 44.728315]
+ }
+ },
+ {
+ "id": 43,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264002, 44.727847]
+ }
+ },
+ {
+ "id": 44,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275233999999999, 44.727239]
+ }
+ },
+ {
+ "id": 45,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272823000000001, 44.720533]
+ }
+ },
+ {
+ "id": 46,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275627, 44.729237]
+ }
+ },
+ {
+ "id": 47,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276962, 44.736068]
+ }
+ },
+ {
+ "id": 48,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276011, 44.729195]
+ }
+ },
+ {
+ "id": 49,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.287058999999999, 44.727613]
+ }
+ },
+ {
+ "id": 50,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288065, 44.727506]
+ }
+ },
+ {
+ "id": 51,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288366000000001, 44.727226]
+ }
+ },
+ {
+ "id": 52,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291179000000001, 44.730151]
+ }
+ },
+ {
+ "id": 53,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291457, 44.731671]
+ }
+ },
+ {
+ "id": 54,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.303999999999999, 44.716648]
+ }
+ },
+ {
+ "id": 55,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260366, 44.716965]
+ }
+ },
+ {
+ "id": 56,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263661, 44.715183]
+ }
+ },
+ {
+ "id": 57,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.257317, 44.708429]
+ }
+ },
+ {
+ "id": 58,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.255011, 44.70945800000001]
+ }
+ },
+ {
+ "id": 59,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.255535, 44.709709]
+ }
+ },
+ {
+ "id": 60,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251427, 44.710828]
+ }
+ },
+ {
+ "id": 61,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.243164, 44.708558]
+ }
+ },
+ {
+ "id": 62,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251423, 44.711268]
+ }
+ },
+ {
+ "id": 63,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251258999999999, 44.71193]
+ }
+ },
+ {
+ "id": 64,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.247221, 44.712975]
+ }
+ },
+ {
+ "id": 65,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.246554, 44.7128]
+ }
+ },
+ {
+ "id": 66,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260308999999999, 44.706012]
+ }
+ },
+ {
+ "id": 67,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260567, 44.706227]
+ }
+ },
+ {
+ "id": 68,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.260624, 44.70527199999999]
+ }
+ },
+ {
+ "id": 69,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.256809, 44.701526]
+ }
+ },
+ {
+ "id": 70,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264354, 44.701611]
+ }
+ },
+ {
+ "id": 71,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.265117, 44.701458]
+ }
+ },
+ {
+ "id": 72,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.265736, 44.70128]
+ }
+ },
+ {
+ "id": 73,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264355999999999, 44.699422]
+ }
+ },
+ {
+ "id": 74,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271076, 44.699195]
+ }
+ },
+ {
+ "id": 75,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270124, 44.69265]
+ }
+ },
+ {
+ "id": 76,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.274132, 44.698074]
+ }
+ },
+ {
+ "id": 77,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.275216, 44.69925]
+ }
+ },
+ {
+ "id": 78,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.29159, 44.69426]
+ }
+ },
+ {
+ "id": 79,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293287, 44.697755]
+ }
+ },
+ {
+ "id": 80,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.290635, 44.692304]
+ }
+ },
+ {
+ "id": 81,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.28942, 44.691436]
+ }
+ },
+ {
+ "id": 82,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.284808, 44.691404]
+ }
+ },
+ {
+ "id": 83,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.295083, 44.688311]
+ }
+ },
+ {
+ "id": 84,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293566, 44.694074]
+ }
+ },
+ {
+ "id": 85,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293666, 44.692658]
+ }
+ },
+ {
+ "id": 86,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293688, 44.692509]
+ }
+ },
+ {
+ "id": 87,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.293481, 44.692697]
+ }
+ },
+ {
+ "id": 88,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.298165, 44.693851]
+ }
+ },
+ {
+ "id": 89,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.30206, 44.694964]
+ }
+ },
+ {
+ "id": 90,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.300629, 44.696719]
+ }
+ },
+ {
+ "id": 91,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.304166, 44.69539]
+ }
+ },
+ {
+ "id": 92,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.303697000000001, 44.695461]
+ }
+ },
+ {
+ "id": 93,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.309441099999999, 44.696444]
+ }
+ },
+ {
+ "id": 94,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.268341, 44.703601]
+ }
+ },
+ {
+ "id": 95,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270058000000001, 44.70570900000001]
+ }
+ },
+ {
+ "id": 96,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.272387999999999, 44.708816]
+ }
+ },
+ {
+ "id": 97,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271646, 44.709229]
+ }
+ },
+ {
+ "id": 98,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.276741, 44.711462]
+ }
+ },
+ {
+ "id": 99,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.286003, 44.70976]
+ }
+ },
+ {
+ "id": 100,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.251605000000001, 44.70417800000001]
+ }
+ },
+ {
+ "id": 101,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252232, 44.699817]
+ }
+ },
+ {
+ "id": 102,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.245869, 44.699619]
+ }
+ },
+ {
+ "id": 103,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.23077, 44.68984]
+ }
+ },
+ {
+ "id": 104,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.233189, 44.688771]
+ }
+ },
+ {
+ "id": 105,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.225613, 44.690414]
+ }
+ },
+ {
+ "id": 106,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.225658999999999, 44.689413]
+ }
+ },
+ {
+ "id": 107,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.229568, 44.685496]
+ }
+ },
+ {
+ "id": 108,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.229077999999999, 44.683975]
+ }
+ },
+ {
+ "id": 109,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.23335, 44.684175]
+ }
+ },
+ {
+ "id": 110,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252115, 44.696185]
+ }
+ },
+ {
+ "id": 111,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.252836, 44.696314]
+ }
+ },
+ {
+ "id": 112,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.257869, 44.692639]
+ }
+ },
+ {
+ "id": 113,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.258694999999999, 44.694684]
+ }
+ },
+ {
+ "id": 114,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271508, 44.666087]
+ }
+ },
+ {
+ "id": 115,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.27233, 44.664478]
+ }
+ },
+ {
+ "id": 116,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.270444, 44.665025]
+ }
+ },
+ {
+ "id": 117,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271881, 44.663251]
+ }
+ },
+ {
+ "id": 118,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.271709, 44.662301]
+ }
+ },
+ {
+ "id": 119,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.268746, 44.660331]
+ }
+ },
+ {
+ "id": 120,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.288922, 44.6484]
+ }
+ },
+ {
+ "id": 121,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.29191, 44.64957800000001]
+ }
+ },
+ {
+ "id": 122,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291696, 44.649937]
+ }
+ },
+ {
+ "id": 123,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.305674099999999, 44.660426]
+ }
+ },
+ {
+ "id": 124,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.306435, 44.663013]
+ }
+ },
+ {
+ "id": 125,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.291407, 44.637677]
+ }
+ },
+ {
+ "id": 126,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.279602, 44.637676]
+ }
+ },
+ {
+ "id": 127,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.273155, 44.632589]
+ }
+ },
+ {
+ "id": 128,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.302328, 44.630718]
+ }
+ },
+ {
+ "id": 129,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.310708999999999, 44.635436]
+ }
+ },
+ {
+ "id": 130,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.315926999999999, 44.637017]
+ }
+ },
+ {
+ "id": 131,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.264264, 44.753757]
+ }
+ },
+ {
+ "id": 132,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263632, 44.753395]
+ }
+ },
+ {
+ "id": 133,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.263077, 44.756667]
+ }
+ },
+ {
+ "id": 134,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.239022, 44.751841]
+ }
+ },
+ {
+ "id": 135,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.238964, 44.751516]
+ }
+ },
+ {
+ "id": 136,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.222045, 44.750602]
+ }
+ },
+ {
+ "id": 137,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.220266000000001, 44.749594]
+ }
+ },
+ {
+ "id": 138,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.218814, 44.748727]
+ }
+ },
+ {
+ "id": 139,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.215553, 44.74695]
+ }
+ },
+ {
+ "id": 140,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.209531, 44.736899]
+ }
+ },
+ {
+ "id": 141,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.208638, 44.734537]
+ }
+ },
+ {
+ "id": 142,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.206393, 44.725698]
+ }
+ },
+ {
+ "id": 143,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.218058999999999, 44.726117]
+ }
+ },
+ {
+ "id": 144,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.219531, 44.72863]
+ }
+ },
+ {
+ "id": 145,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.219654, 44.73002899999999]
+ }
+ },
+ {
+ "id": 146,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.217169, 44.734855]
+ }
+ },
+ {
+ "id": 147,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.220665, 44.720294]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.354205, 44.76649699999999],
+ [5.352489, 44.767044]
+ ]
+ },
+ "length": 0.847,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.352489, 44.767044],
+ [5.350948000000001, 44.766465]
+ ]
+ },
+ "length": 0.138,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.352489, 44.767044],
+ [5.349889, 44.768479]
+ ]
+ },
+ "length": 0.28,
+ "params_id": "S_AL_240",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.349889, 44.768479],
+ [5.340990000000001, 44.771987]
+ ]
+ },
+ "length": 0.8059999999999999,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 5,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.340990000000001, 44.771987],
+ [5.33796, 44.767887]
+ ]
+ },
+ "length": 0.349,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 5,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.340990000000001, 44.771987],
+ [5.333443, 44.772101]
+ ]
+ },
+ "length": 0.635,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.333443, 44.772101],
+ [5.332152, 44.773154]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.333443, 44.772101],
+ [5.328604, 44.771373]
+ ]
+ },
+ "length": 0.389,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.328604, 44.771373],
+ [5.329613, 44.766793]
+ ]
+ },
+ "length": 0.512,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.329613, 44.766793],
+ [5.329857, 44.766317]
+ ]
+ },
+ "length": 0.0579999999999999,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.329857, 44.766317],
+ [5.332717, 44.754985]
+ ]
+ },
+ "length": 0.981,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line12",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 12,
+ "bus2": 13,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.332717, 44.754985],
+ [5.335779, 44.751524]
+ ]
+ },
+ "length": 0.4539999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line13",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 14,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.328604, 44.771373],
+ [5.322039, 44.770639]
+ ]
+ },
+ "length": 0.53,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line14",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 14,
+ "bus2": 15,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322039, 44.770639],
+ [5.322518, 44.773602]
+ ]
+ },
+ "length": 0.3329999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line15",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 15,
+ "bus2": 16,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322518, 44.773602],
+ [5.322693, 44.77292199999999]
+ ]
+ },
+ "length": 0.077,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line16",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 16,
+ "bus2": 17,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322693, 44.77292199999999],
+ [5.322789, 44.777828]
+ ]
+ },
+ "length": 0.47,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line17",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 17,
+ "bus2": 18,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322789, 44.777828],
+ [5.322418, 44.778323]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line18",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 18,
+ "bus2": 19,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322418, 44.778323],
+ [5.317114, 44.784118]
+ ]
+ },
+ "length": 0.8420000000000001,
+ "params_id": "A_AA_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line19",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 19,
+ "bus2": 20,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.317114, 44.784118],
+ [5.317399, 44.78419]
+ ]
+ },
+ "length": 0.022,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line20",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 20,
+ "bus2": 21,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.317399, 44.78419],
+ [5.315126999999999, 44.788614]
+ ]
+ },
+ "length": 0.534,
+ "params_id": "A_AA_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line21",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 14,
+ "bus2": 22,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.322039, 44.770639],
+ [5.314989, 44.769299]
+ ]
+ },
+ "length": 0.575,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line22",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 22,
+ "bus2": 23,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.314989, 44.769299],
+ [5.314938, 44.768333]
+ ]
+ },
+ "length": 0.787,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line23",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 23,
+ "bus2": 24,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.314938, 44.768333],
+ [5.306875, 44.765457]
+ ]
+ },
+ "length": 0.787,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line24",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 24,
+ "bus2": 25,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.306875, 44.765457],
+ [5.294973000000001, 44.768387]
+ ]
+ },
+ "length": 1.224,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line25",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 25,
+ "bus2": 26,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.294973000000001, 44.768387],
+ [5.282789, 44.768455]
+ ]
+ },
+ "length": 1.37,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line26",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 26,
+ "bus2": 27,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.282789, 44.768455],
+ [5.280849, 44.765393]
+ ]
+ },
+ "length": 0.634,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line27",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 27,
+ "bus2": 28,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.280849, 44.765393],
+ [5.280136, 44.76502199999999]
+ ]
+ },
+ "length": 0.07,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line28",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 28,
+ "bus2": 29,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.280136, 44.76502199999999],
+ [5.279859, 44.764848]
+ ]
+ },
+ "length": 0.044,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line29",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 29,
+ "bus2": 30,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.279859, 44.764848],
+ [5.272926, 44.763672]
+ ]
+ },
+ "length": 0.501,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line30",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 30,
+ "bus2": 31,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272926, 44.763672],
+ [5.273633999999999, 44.76358]
+ ]
+ },
+ "length": 0.069,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line31",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 31,
+ "bus2": 32,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.273633999999999, 44.76358],
+ [5.272794, 44.763982]
+ ]
+ },
+ "length": 0.069,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line32",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 32,
+ "bus2": 33,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272794, 44.763982],
+ [5.270316999999999, 44.760419]
+ ]
+ },
+ "length": 0.4589999999999999,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line33",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 33,
+ "bus2": 34,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270316999999999, 44.760419],
+ [5.274366000000001, 44.758161]
+ ]
+ },
+ "length": 0.207,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line34",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 34,
+ "bus2": 35,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.274366000000001, 44.758161],
+ [5.275697, 44.757549]
+ ]
+ },
+ "length": 0.122,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line35",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 35,
+ "bus2": 36,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275697, 44.757549],
+ [5.269593, 44.756572]
+ ]
+ },
+ "length": 0.411,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line36",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 33,
+ "bus2": 37,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270316999999999, 44.760419],
+ [5.267119999999999, 44.752936]
+ ]
+ },
+ "length": 0.897,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line37",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 37,
+ "bus2": 38,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.267119999999999, 44.752936],
+ [5.264632, 44.750295]
+ ]
+ },
+ "length": 0.311,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line38",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 38,
+ "bus2": 39,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264632, 44.750295],
+ [5.27005, 44.740412]
+ ]
+ },
+ "length": 1.254,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line39",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 39,
+ "bus2": 40,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.27005, 44.740412],
+ [5.269245, 44.73877]
+ ]
+ },
+ "length": 0.1889999999999999,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line40",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 40,
+ "bus2": 41,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.269245, 44.73877],
+ [5.271239, 44.739363]
+ ]
+ },
+ "length": 0.177,
+ "params_id": "A_AA_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line41",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 41,
+ "bus2": 42,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271239, 44.739363],
+ [5.264574, 44.728315]
+ ]
+ },
+ "length": 1.217,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line42",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 43,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.264002, 44.727847]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line43",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 44,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.275233999999999, 44.727239]
+ ]
+ },
+ "length": 0.133,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line44",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 44,
+ "bus2": 45,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275233999999999, 44.727239],
+ [5.272823000000001, 44.720533]
+ ]
+ },
+ "length": 0.529,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line45",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 44,
+ "bus2": 46,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275233999999999, 44.727239],
+ [5.275627, 44.729237]
+ ]
+ },
+ "length": 0.213,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line46",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 46,
+ "bus2": 47,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275627, 44.729237],
+ [5.276962, 44.736068]
+ ]
+ },
+ "length": 1.121,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line47",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 46,
+ "bus2": 48,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275627, 44.729237],
+ [5.276011, 44.729195]
+ ]
+ },
+ "length": 0.03,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line48",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 48,
+ "bus2": 49,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.276011, 44.729195],
+ [5.287058999999999, 44.727613]
+ ]
+ },
+ "length": 0.888,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line49",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 49,
+ "bus2": 50,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.287058999999999, 44.727613],
+ [5.288065, 44.727506]
+ ]
+ },
+ "length": 0.083,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line50",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 51,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.288366000000001, 44.727226]
+ ]
+ },
+ "length": 0.034,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line51",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 52,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.291179000000001, 44.730151]
+ ]
+ },
+ "length": 0.238,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line52",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 50,
+ "bus2": 53,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288065, 44.727506],
+ [5.291457, 44.731671]
+ ]
+ },
+ "length": 0.379,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line53",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 49,
+ "bus2": 54,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.287058999999999, 44.727613],
+ [5.303999999999999, 44.716648]
+ ]
+ },
+ "length": 1.971,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line54",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 42,
+ "bus2": 55,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264574, 44.728315],
+ [5.260366, 44.716965]
+ ]
+ },
+ "length": 1.306,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line55",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 55,
+ "bus2": 56,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260366, 44.716965],
+ [5.263661, 44.715183]
+ ]
+ },
+ "length": 0.118,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line56",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 55,
+ "bus2": 57,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260366, 44.716965],
+ [5.257317, 44.708429]
+ ]
+ },
+ "length": 0.982,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line57",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 58,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.255011, 44.70945800000001]
+ ]
+ },
+ "length": 0.11,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line58",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 58,
+ "bus2": 59,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255011, 44.70945800000001],
+ [5.255535, 44.709709]
+ ]
+ },
+ "length": 0.05,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line59",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 59,
+ "bus2": 60,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255535, 44.709709],
+ [5.251427, 44.710828]
+ ]
+ },
+ "length": 0.321,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line60",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 60,
+ "bus2": 61,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251427, 44.710828],
+ [5.243164, 44.708558]
+ ]
+ },
+ "length": 0.732,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line61",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 59,
+ "bus2": 62,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.255535, 44.709709],
+ [5.251423, 44.711268]
+ ]
+ },
+ "length": 0.047,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line62",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 62,
+ "bus2": 63,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251423, 44.711268],
+ [5.251258999999999, 44.71193]
+ ]
+ },
+ "length": 0.064,
+ "params_id": "A_CU_12",
+ "ground": "ground"
+ },
+ {
+ "id": "line63",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 63,
+ "bus2": 64,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251258999999999, 44.71193],
+ [5.247221, 44.712975]
+ ]
+ },
+ "length": 0.376,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line64",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 64,
+ "bus2": 65,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.247221, 44.712975],
+ [5.246554, 44.7128]
+ ]
+ },
+ "length": 0.0559999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line65",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 66,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.260308999999999, 44.706012]
+ ]
+ },
+ "length": 0.2269999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line66",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 66,
+ "bus2": 67,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260308999999999, 44.706012],
+ [5.260567, 44.706227]
+ ]
+ },
+ "length": 0.038,
+ "params_id": "S_AL_150",
+ "ground": "ground"
+ },
+ {
+ "id": "line67",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 67,
+ "bus2": 68,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260567, 44.706227],
+ [5.260624, 44.70527199999999]
+ ]
+ },
+ "length": 0.085,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line68",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 68,
+ "bus2": 69,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260624, 44.70527199999999],
+ [5.256809, 44.701526]
+ ]
+ },
+ "length": 0.306,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line69",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 68,
+ "bus2": 70,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.260624, 44.70527199999999],
+ [5.264354, 44.701611]
+ ]
+ },
+ "length": 0.511,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line70",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 70,
+ "bus2": 71,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264354, 44.701611],
+ [5.265117, 44.701458]
+ ]
+ },
+ "length": 0.049,
+ "params_id": "A_CU_07",
+ "ground": "ground"
+ },
+ {
+ "id": "line71",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 71,
+ "bus2": 72,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265117, 44.701458],
+ [5.265736, 44.70128]
+ ]
+ },
+ "length": 0.0579999999999999,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line72",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 72,
+ "bus2": 73,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265736, 44.70128],
+ [5.264355999999999, 44.699422]
+ ]
+ },
+ "length": 0.236,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line73",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 73,
+ "bus2": 74,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264355999999999, 44.699422],
+ [5.271076, 44.699195]
+ ]
+ },
+ "length": 0.477,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line74",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 74,
+ "bus2": 75,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271076, 44.699195],
+ [5.270124, 44.69265]
+ ]
+ },
+ "length": 0.353,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line75",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 75,
+ "bus2": 76,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270124, 44.69265],
+ [5.274132, 44.698074]
+ ]
+ },
+ "length": 0.275,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line76",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 76,
+ "bus2": 77,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.274132, 44.698074],
+ [5.275216, 44.69925]
+ ]
+ },
+ "length": 0.158,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line77",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 77,
+ "bus2": 78,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.275216, 44.69925],
+ [5.29159, 44.69426]
+ ]
+ },
+ "length": 1.481,
+ "params_id": "A_LA_38",
+ "ground": "ground"
+ },
+ {
+ "id": "line78",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 79,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.293287, 44.697755]
+ ]
+ },
+ "length": 0.275,
+ "params_id": "A_LA_39",
+ "ground": "ground"
+ },
+ {
+ "id": "line79",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 80,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.290635, 44.692304]
+ ]
+ },
+ "length": 0.134,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line80",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 80,
+ "bus2": 81,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.290635, 44.692304],
+ [5.28942, 44.691436]
+ ]
+ },
+ "length": 0.136,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line81",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 81,
+ "bus2": 82,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.28942, 44.691436],
+ [5.284808, 44.691404]
+ ]
+ },
+ "length": 0.361,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line82",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 81,
+ "bus2": 83,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.28942, 44.691436],
+ [5.295083, 44.688311]
+ ]
+ },
+ "length": 0.763,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line83",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 78,
+ "bus2": 84,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29159, 44.69426],
+ [5.293566, 44.694074]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line84",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 84,
+ "bus2": 85,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293566, 44.694074],
+ [5.293666, 44.692658]
+ ]
+ },
+ "length": 0.154,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line85",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 85,
+ "bus2": 86,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293666, 44.692658],
+ [5.293688, 44.692509]
+ ]
+ },
+ "length": 0.021,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line86",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 85,
+ "bus2": 87,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293666, 44.692658],
+ [5.293481, 44.692697]
+ ]
+ },
+ "length": 0.023,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line87",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 84,
+ "bus2": 88,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.293566, 44.694074],
+ [5.298165, 44.693851]
+ ]
+ },
+ "length": 0.365,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line88",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 88,
+ "bus2": 89,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.298165, 44.693851],
+ [5.30206, 44.694964]
+ ]
+ },
+ "length": 0.353,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line89",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 89,
+ "bus2": 90,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.30206, 44.694964],
+ [5.300629, 44.696719]
+ ]
+ },
+ "length": 0.281,
+ "params_id": "A_LA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line90",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 88,
+ "bus2": 91,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.298165, 44.693851],
+ [5.304166, 44.69539]
+ ]
+ },
+ "length": 0.174,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line91",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 91,
+ "bus2": 92,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.304166, 44.69539],
+ [5.303697000000001, 44.695461]
+ ]
+ },
+ "length": 0.037,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line92",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 91,
+ "bus2": 93,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.304166, 44.69539],
+ [5.309441099999999, 44.696444]
+ ]
+ },
+ "length": 0.428,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line93",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 71,
+ "bus2": 94,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.265117, 44.701458],
+ [5.268341, 44.703601]
+ ]
+ },
+ "length": 0.3329999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line94",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 94,
+ "bus2": 95,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.268341, 44.703601],
+ [5.270058000000001, 44.70570900000001]
+ ]
+ },
+ "length": 0.272,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line95",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 95,
+ "bus2": 96,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270058000000001, 44.70570900000001],
+ [5.272387999999999, 44.708816]
+ ]
+ },
+ "length": 0.4,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line96",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 96,
+ "bus2": 97,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272387999999999, 44.708816],
+ [5.271646, 44.709229]
+ ]
+ },
+ "length": 0.072,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line97",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 96,
+ "bus2": 98,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.272387999999999, 44.708816],
+ [5.276741, 44.711462]
+ ]
+ },
+ "length": 0.441,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line98",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 98,
+ "bus2": 99,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.276741, 44.711462],
+ [5.286003, 44.70976]
+ ]
+ },
+ "length": 0.772,
+ "params_id": "A_AA_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line99",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 57,
+ "bus2": 100,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257317, 44.708429],
+ [5.251605000000001, 44.70417800000001]
+ ]
+ },
+ "length": 0.65,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line100",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 100,
+ "bus2": 101,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251605000000001, 44.70417800000001],
+ [5.252232, 44.699817]
+ ]
+ },
+ "length": 0.34,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line101",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 100,
+ "bus2": 102,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.251605000000001, 44.70417800000001],
+ [5.245869, 44.699619]
+ ]
+ },
+ "length": 0.682,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line102",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 102,
+ "bus2": 103,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.245869, 44.699619],
+ [5.23077, 44.68984]
+ ]
+ },
+ "length": 1.841,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line103",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 103,
+ "bus2": 104,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.23077, 44.68984],
+ [5.233189, 44.688771]
+ ]
+ },
+ "length": 0.226,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line104",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 103,
+ "bus2": 105,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.23077, 44.68984],
+ [5.225613, 44.690414]
+ ]
+ },
+ "length": 0.407,
+ "params_id": "A_AA_147",
+ "ground": "ground"
+ },
+ {
+ "id": "line105",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 105,
+ "bus2": 106,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.225613, 44.690414],
+ [5.225658999999999, 44.689413]
+ ]
+ },
+ "length": 0.067,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line106",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 106,
+ "bus2": 107,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.225658999999999, 44.689413],
+ [5.229568, 44.685496]
+ ]
+ },
+ "length": 0.272,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line107",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 107,
+ "bus2": 108,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.229568, 44.685496],
+ [5.229077999999999, 44.683975]
+ ]
+ },
+ "length": 0.2319999999999999,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line108",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 107,
+ "bus2": 109,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.229568, 44.685496],
+ [5.23335, 44.684175]
+ ]
+ },
+ "length": 0.253,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line109",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 102,
+ "bus2": 110,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.245869, 44.699619],
+ [5.252115, 44.696185]
+ ]
+ },
+ "length": 0.515,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line110",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 110,
+ "bus2": 111,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.252115, 44.696185],
+ [5.252836, 44.696314]
+ ]
+ },
+ "length": 0.06,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line111",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 110,
+ "bus2": 112,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.252115, 44.696185],
+ [5.257869, 44.692639]
+ ]
+ },
+ "length": 0.607,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line112",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 112,
+ "bus2": 113,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257869, 44.692639],
+ [5.258694999999999, 44.694684]
+ ]
+ },
+ "length": 0.238,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line113",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 112,
+ "bus2": 114,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.257869, 44.692639],
+ [5.271508, 44.666087]
+ ]
+ },
+ "length": 3.315,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line114",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 114,
+ "bus2": 115,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271508, 44.666087],
+ [5.27233, 44.664478]
+ ]
+ },
+ "length": 0.09,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line115",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 114,
+ "bus2": 116,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271508, 44.666087],
+ [5.270444, 44.665025]
+ ]
+ },
+ "length": 0.141,
+ "params_id": "A_AM_75",
+ "ground": "ground"
+ },
+ {
+ "id": "line116",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 116,
+ "bus2": 117,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.270444, 44.665025],
+ [5.271881, 44.663251]
+ ]
+ },
+ "length": 0.242,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line117",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 117,
+ "bus2": 118,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271881, 44.663251],
+ [5.271709, 44.662301]
+ ]
+ },
+ "length": 0.11,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line118",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 118,
+ "bus2": 119,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271709, 44.662301],
+ [5.268746, 44.660331]
+ ]
+ },
+ "length": 0.299,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line119",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 118,
+ "bus2": 120,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.271709, 44.662301],
+ [5.288922, 44.6484]
+ ]
+ },
+ "length": 1.927,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line120",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 120,
+ "bus2": 121,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288922, 44.6484],
+ [5.29191, 44.64957800000001]
+ ]
+ },
+ "length": 0.2289999999999999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line121",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 121,
+ "bus2": 122,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29191, 44.64957800000001],
+ [5.291696, 44.649937]
+ ]
+ },
+ "length": 0.039,
+ "params_id": "A_AA_22",
+ "ground": "ground"
+ },
+ {
+ "id": "line122",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 121,
+ "bus2": 123,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.29191, 44.64957800000001],
+ [5.305674099999999, 44.660426]
+ ]
+ },
+ "length": 1.67,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line123",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 123,
+ "bus2": 124,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.305674099999999, 44.660426],
+ [5.306435, 44.663013]
+ ]
+ },
+ "length": 0.291,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line124",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 120,
+ "bus2": 125,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.288922, 44.6484],
+ [5.291407, 44.637677]
+ ]
+ },
+ "length": 1.266,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line125",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 125,
+ "bus2": 126,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.291407, 44.637677],
+ [5.279602, 44.637676]
+ ]
+ },
+ "length": 0.3389999999999999,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line126",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 126,
+ "bus2": 127,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.279602, 44.637676],
+ [5.273155, 44.632589]
+ ]
+ },
+ "length": 0.871,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line127",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 125,
+ "bus2": 128,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.291407, 44.637677],
+ [5.302328, 44.630718]
+ ]
+ },
+ "length": 0.799,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line128",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 128,
+ "bus2": 129,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.302328, 44.630718],
+ [5.310708999999999, 44.635436]
+ ]
+ },
+ "length": 0.8290000000000001,
+ "params_id": "A_AA_22",
+ "ground": "ground"
+ },
+ {
+ "id": "line129",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 129,
+ "bus2": 130,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.310708999999999, 44.635436],
+ [5.315926999999999, 44.637017]
+ ]
+ },
+ "length": 0.444,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line130",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 37,
+ "bus2": 131,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.267119999999999, 44.752936],
+ [5.264264, 44.753757]
+ ]
+ },
+ "length": 0.216,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line131",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 132,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.263632, 44.753395]
+ ]
+ },
+ "length": 0.064,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line132",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 133,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.263077, 44.756667]
+ ]
+ },
+ "length": 0.337,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line133",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 131,
+ "bus2": 134,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.264264, 44.753757],
+ [5.239022, 44.751841]
+ ]
+ },
+ "length": 1.992,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line134",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 134,
+ "bus2": 135,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.239022, 44.751841],
+ [5.238964, 44.751516]
+ ]
+ },
+ "length": 0.031,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line135",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 134,
+ "bus2": 136,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.239022, 44.751841],
+ [5.222045, 44.750602]
+ ]
+ },
+ "length": 1.41,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line136",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 136,
+ "bus2": 137,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.222045, 44.750602],
+ [5.220266000000001, 44.749594]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line137",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 137,
+ "bus2": 138,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.220266000000001, 44.749594],
+ [5.218814, 44.748727]
+ ]
+ },
+ "length": 0.075,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line138",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 138,
+ "bus2": 139,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218814, 44.748727],
+ [5.215553, 44.74695]
+ ]
+ },
+ "length": 0.487,
+ "params_id": "A_AA_37",
+ "ground": "ground"
+ },
+ {
+ "id": "line139",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 139,
+ "bus2": 140,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.215553, 44.74695],
+ [5.209531, 44.736899]
+ ]
+ },
+ "length": 0.995,
+ "params_id": "A_AM_34",
+ "ground": "ground"
+ },
+ {
+ "id": "line140",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 140,
+ "bus2": 141,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.209531, 44.736899],
+ [5.208638, 44.734537]
+ ]
+ },
+ "length": 0.2739999999999999,
+ "params_id": "S_AL_50",
+ "ground": "ground"
+ },
+ {
+ "id": "line141",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 141,
+ "bus2": 142,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.208638, 44.734537],
+ [5.206393, 44.725698]
+ ]
+ },
+ "length": 1.095,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line142",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 142,
+ "bus2": 143,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.206393, 44.725698],
+ [5.218058999999999, 44.726117]
+ ]
+ },
+ "length": 0.999,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line143",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 143,
+ "bus2": 144,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218058999999999, 44.726117],
+ [5.219531, 44.72863]
+ ]
+ },
+ "length": 0.28,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line144",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 144,
+ "bus2": 145,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.219531, 44.72863],
+ [5.219654, 44.73002899999999]
+ ]
+ },
+ "length": 0.18,
+ "params_id": "S_AL_95",
+ "ground": "ground"
+ },
+ {
+ "id": "line145",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 145,
+ "bus2": 146,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.219654, 44.73002899999999],
+ [5.217169, 44.734855]
+ ]
+ },
+ "length": 0.564,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ },
+ {
+ "id": "line146",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 143,
+ "bus2": 147,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.218058999999999, 44.726117],
+ [5.220665, 44.720294]
+ ]
+ },
+ "length": 0.687,
+ "params_id": "A_AM_54",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [12802.501990789257, 2560.500398157851],
+ [12802.501991134319, 2560.5003982268627],
+ [12802.501991134317, 2560.5003982268668]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [12796.567508638322, 2559.313501727664],
+ [12796.56750898323, 2559.313501796648],
+ [12796.567508983235, 2559.3135017966506]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [12765.017770922159, 2553.0035541844327],
+ [12765.017771266208, 2553.0035542532423],
+ [12765.017771266213, 2553.0035542532382]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 7,
+ "phases": "abcn",
+ "powers": [
+ [12740.737737064119, 2548.1475474128224],
+ [12740.737737407515, 2548.1475474815006],
+ [12740.737737407508, 2548.1475474814974]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [12726.200419221137, 2545.2400838442263],
+ [12726.200419564138, 2545.240083912827],
+ [12726.20041956414, 2545.2400839128277]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 10,
+ "phases": "abcn",
+ "powers": [
+ [12725.465466076494, 2545.0930932152983],
+ [12725.465466419479, 2545.0930932838937],
+ [12725.465466419473, 2545.093093283894]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 11,
+ "phases": "abcn",
+ "powers": [
+ [12725.43517637802, 2545.0870352756046],
+ [12725.435176721006, 2545.0870353442015],
+ [12725.435176721006, 2545.087035344201]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 14,
+ "phases": "abcn",
+ "powers": [
+ [12707.602683905367, 2541.5205367810727],
+ [12707.602684247868, 2541.5205368495754],
+ [12707.60268424787, 2541.520536849573]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 15,
+ "phases": "abcn",
+ "powers": [
+ [12704.901205829321, 2540.9802411658625],
+ [12704.901206171744, 2540.980241234349],
+ [12704.901206171748, 2540.9802412343515]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 17,
+ "phases": "abcn",
+ "powers": [
+ [12701.770964275058, 2540.3541928550126],
+ [12701.770964617397, 2540.3541929234825],
+ [12701.770964617403, 2540.354192923482]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 19,
+ "phases": "abcn",
+ "powers": [
+ [12700.205603076367, 2540.041120615274],
+ [12700.20560341866, 2540.0411206837325],
+ [12700.205603418672, 2540.0411206837343]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 22,
+ "phases": "abcn",
+ "powers": [
+ [12689.217617966586, 2537.8435235933175],
+ [12689.217618308583, 2537.843523661718],
+ [12689.217618308587, 2537.8435236617197]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 24,
+ "phases": "abcn",
+ "powers": [
+ [12597.043984934118, 2519.4087969868233],
+ [12597.043985273627, 2519.408797054728],
+ [12597.04398527364, 2519.408797054729]
+ ]
+ },
+ {
+ "id": 13,
+ "bus": 27,
+ "phases": "abcn",
+ "powers": [
+ [12506.045785991091, 2501.209157198218],
+ [12506.045786328154, 2501.2091572656273],
+ [12506.045786328166, 2501.2091572656327]
+ ]
+ },
+ {
+ "id": 14,
+ "bus": 28,
+ "phases": "abcn",
+ "powers": [
+ [12503.726828561492, 2500.7453657122983],
+ [12503.726828898474, 2500.745365779696],
+ [12503.7268288985, 2500.7453657797]
+ ]
+ },
+ {
+ "id": 15,
+ "bus": 30,
+ "phases": "abcn",
+ "powers": [
+ [12488.622180748127, 2497.7244361496264],
+ [12488.62218108472, 2497.7244362169386],
+ [12488.622181084738, 2497.7244362169495]
+ ]
+ },
+ {
+ "id": 16,
+ "bus": 31,
+ "phases": "abcn",
+ "powers": [
+ [12486.739679367176, 2497.3479358734335],
+ [12486.739679703718, 2497.3479359407356],
+ [12486.739679703738, 2497.347935940747]
+ ]
+ },
+ {
+ "id": 17,
+ "bus": 33,
+ "phases": "abcn",
+ "powers": [
+ [12460.422372843175, 2492.0844745686345],
+ [12460.422373179015, 2492.0844746358],
+ [12460.422373179032, 2492.0844746358007]
+ ]
+ },
+ {
+ "id": 18,
+ "bus": 34,
+ "phases": "abcn",
+ "powers": [
+ [12459.873117109248, 2491.9746234218496],
+ [12459.873117445062, 2491.97462348901],
+ [12459.873117445082, 2491.9746234890154]
+ ]
+ },
+ {
+ "id": 19,
+ "bus": 37,
+ "phases": "abcn",
+ "powers": [
+ [12437.115136541554, 2487.42302730831],
+ [12437.115136876753, 2487.4230273753437],
+ [12437.115136876771, 2487.4230273753515]
+ ]
+ },
+ {
+ "id": 20,
+ "bus": 39,
+ "phases": "abcn",
+ "powers": [
+ [12402.516318557688, 2480.503263711538],
+ [12402.516318891954, 2480.5032637783843],
+ [12402.516318891981, 2480.5032637783997]
+ ]
+ },
+ {
+ "id": 21,
+ "bus": 40,
+ "phases": "abcn",
+ "powers": [
+ [12397.2955315958, 2479.4591063191597],
+ [12397.295531929922, 2479.4591063859853],
+ [12397.29553192994, 2479.4591063859916]
+ ]
+ },
+ {
+ "id": 22,
+ "bus": 42,
+ "phases": "abcn",
+ "powers": [
+ [12350.08915464453, 2470.017830928906],
+ [12350.089154977362, 2470.0178309954717],
+ [12350.089154977402, 2470.0178309954817]
+ ]
+ },
+ {
+ "id": 23,
+ "bus": 44,
+ "phases": "abcn",
+ "powers": [
+ [12348.387911342532, 2469.6775822685045],
+ [12348.387911675325, 2469.677582335068],
+ [12348.387911675358, 2469.6775823350767]
+ ]
+ },
+ {
+ "id": 24,
+ "bus": 46,
+ "phases": "abcn",
+ "powers": [
+ [12346.223486490066, 2469.244697298013],
+ [12346.223486822808, 2469.244697364561],
+ [12346.223486822846, 2469.244697364572]
+ ]
+ },
+ {
+ "id": 25,
+ "bus": 48,
+ "phases": "abcn",
+ "powers": [
+ [12346.179516601576, 2469.2359033203147],
+ [12346.179516934308, 2469.2359033868615],
+ [12346.17951693435, 2469.235903386871]
+ ]
+ },
+ {
+ "id": 26,
+ "bus": 49,
+ "phases": "abcn",
+ "powers": [
+ [12339.833388750798, 2467.9666777501598],
+ [12339.83338908336, 2467.966677816674],
+ [12339.833389083396, 2467.9666778166784]
+ ]
+ },
+ {
+ "id": 27,
+ "bus": 50,
+ "phases": "abcn",
+ "powers": [
+ [12339.54775798752, 2467.909551597504],
+ [12339.54775832008, 2467.9095516640164],
+ [12339.547758320114, 2467.9095516640236]
+ ]
+ },
+ {
+ "id": 28,
+ "bus": 55,
+ "phases": "abcn",
+ "powers": [
+ [12320.47105093255, 2464.0942101865103],
+ [12320.471051264594, 2464.094210252916],
+ [12320.471051264638, 2464.0942102529316]
+ ]
+ },
+ {
+ "id": 29,
+ "bus": 57,
+ "phases": "abcn",
+ "powers": [
+ [12298.97759572786, 2459.7955191455717],
+ [12298.97759605932, 2459.795519211865],
+ [12298.97759605936, 2459.7955192118743]
+ ]
+ },
+ {
+ "id": 30,
+ "bus": 58,
+ "phases": "abcn",
+ "powers": [
+ [12297.246110182197, 2459.4492220364396],
+ [12297.24611051361, 2459.449222102722],
+ [12297.246110513644, 2459.449222102731]
+ ]
+ },
+ {
+ "id": 31,
+ "bus": 60,
+ "phases": "abcn",
+ "powers": [
+ [12295.160815223391, 2459.032163044679],
+ [12295.160815554753, 2459.0321631109546],
+ [12295.160815554796, 2459.0321631109605]
+ ]
+ },
+ {
+ "id": 32,
+ "bus": 61,
+ "phases": "abcn",
+ "powers": [
+ [12293.982395686638, 2458.796479137327],
+ [12293.982396017964, 2458.796479203591],
+ [12293.982396018006, 2458.796479203602]
+ ]
+ },
+ {
+ "id": 33,
+ "bus": 62,
+ "phases": "abcn",
+ "powers": [
+ [12296.616039898434, 2459.323207979687],
+ [12296.616040229826, 2459.323208045964],
+ [12296.616040229861, 2459.3232080459734]
+ ]
+ },
+ {
+ "id": 34,
+ "bus": 63,
+ "phases": "abcn",
+ "powers": [
+ [12296.141244021726, 2459.2282488043456],
+ [12296.1412443531, 2459.228248870614],
+ [12296.14124435314, 2459.228248870628]
+ ]
+ },
+ {
+ "id": 35,
+ "bus": 64,
+ "phases": "abcn",
+ "powers": [
+ [12295.535246857302, 2459.107049371459],
+ [12295.535247188673, 2459.1070494377327],
+ [12295.535247188709, 2459.107049437743]
+ ]
+ },
+ {
+ "id": 36,
+ "bus": 66,
+ "phases": "abcn",
+ "powers": [
+ [12289.633404085758, 2457.926680817149],
+ [12289.633404416963, 2457.926680883391],
+ [12289.633404417002, 2457.926680883402]
+ ]
+ },
+ {
+ "id": 37,
+ "bus": 68,
+ "phases": "abcn",
+ "powers": [
+ [12286.066845253778, 2457.2133690507517],
+ [12286.066845584883, 2457.2133691169765],
+ [12286.066845584923, 2457.2133691169824]
+ ]
+ },
+ {
+ "id": 38,
+ "bus": 70,
+ "phases": "abcn",
+ "powers": [
+ [12267.700626786547, 2453.540125357308],
+ [12267.700627117149, 2453.540125423431],
+ [12267.700627117203, 2453.5401254234407]
+ ]
+ },
+ {
+ "id": 39,
+ "bus": 71,
+ "phases": "abcn",
+ "powers": [
+ [12265.380072032627, 2453.0760144065243],
+ [12265.38007236317, 2453.076014472633],
+ [12265.380072363218, 2453.0760144726446]
+ ]
+ },
+ {
+ "id": 40,
+ "bus": 72,
+ "phases": "abcn",
+ "powers": [
+ [12263.523709578187, 2452.7047419156356],
+ [12263.523709908673, 2452.7047419817363],
+ [12263.52370990872, 2452.7047419817454]
+ ]
+ },
+ {
+ "id": 41,
+ "bus": 73,
+ "phases": "abcn",
+ "powers": [
+ [12254.935892839552, 2450.987178567909],
+ [12254.935893169812, 2450.987178633961],
+ [12254.93589316986, 2450.9871786339727]
+ ]
+ },
+ {
+ "id": 42,
+ "bus": 74,
+ "phases": "abcn",
+ "powers": [
+ [12242.51281613178, 2448.5025632263564],
+ [12242.512816461702, 2448.50256329234],
+ [12242.512816461749, 2448.5025632923516]
+ ]
+ },
+ {
+ "id": 43,
+ "bus": 76,
+ "phases": "abcn",
+ "powers": [
+ [12228.027002796374, 2445.6054005592746],
+ [12228.027003125919, 2445.6054006251834],
+ [12228.027003125964, 2445.6054006251943]
+ ]
+ },
+ {
+ "id": 44,
+ "bus": 78,
+ "phases": "abcn",
+ "powers": [
+ [12195.094540595564, 2439.018908119113],
+ [12195.094540924201, 2439.018908184843],
+ [12195.094540924252, 2439.0189081848507]
+ ]
+ },
+ {
+ "id": 45,
+ "bus": 81,
+ "phases": "abcn",
+ "powers": [
+ [12194.397907903025, 2438.879581580604],
+ [12194.397908231655, 2438.8795816463326],
+ [12194.397908231706, 2438.8795816463376]
+ ]
+ },
+ {
+ "id": 46,
+ "bus": 84,
+ "phases": "abcn",
+ "powers": [
+ [12194.521349752014, 2438.904269950403],
+ [12194.521350080639, 2438.90427001613],
+ [12194.52135008069, 2438.9042700161376]
+ ]
+ },
+ {
+ "id": 47,
+ "bus": 85,
+ "phases": "abcn",
+ "powers": [
+ [12194.031723143064, 2438.8063446286124],
+ [12194.031723471682, 2438.806344694336],
+ [12194.03172347173, 2438.806344694346]
+ ]
+ },
+ {
+ "id": 48,
+ "bus": 86,
+ "phases": "abcn",
+ "powers": [
+ [12193.998091744037, 2438.7996183488085],
+ [12193.998092072648, 2438.7996184145322],
+ [12193.9980920727, 2438.799618414539]
+ ]
+ },
+ {
+ "id": 49,
+ "bus": 89,
+ "phases": "abcn",
+ "powers": [
+ [12192.7961636406, 2438.55923272812],
+ [12192.796163969175, 2438.5592327938366],
+ [12192.796163969228, 2438.5592327938466]
+ ]
+ },
+ {
+ "id": 50,
+ "bus": 91,
+ "phases": "abcn",
+ "powers": [
+ [12193.081949536554, 2438.61638990731],
+ [12193.081949865145, 2438.616389973028],
+ [12193.081949865194, 2438.6163899730404]
+ ]
+ },
+ {
+ "id": 51,
+ "bus": 96,
+ "phases": "abcn",
+ "powers": [
+ [12262.77106449845, 2452.5542128996904],
+ [12262.771064828907, 2452.5542129657824],
+ [12262.771064828954, 2452.554212965794]
+ ]
+ },
+ {
+ "id": 52,
+ "bus": 100,
+ "phases": "abcn",
+ "powers": [
+ [12295.301951915377, 2459.060390383075],
+ [12295.301952246733, 2459.0603904493455],
+ [12295.301952246773, 2459.060390449357]
+ ]
+ },
+ {
+ "id": 53,
+ "bus": 102,
+ "phases": "abcn",
+ "powers": [
+ [12291.944396425028, 2458.3888792850057],
+ [12291.94439675629, 2458.3888793512597],
+ [12291.944396756355, 2458.3888793512733]
+ ]
+ },
+ {
+ "id": 54,
+ "bus": 103,
+ "phases": "abcn",
+ "powers": [
+ [12288.334961780476, 2457.6669923560976],
+ [12288.334962111632, 2457.666992422327],
+ [12288.334962111676, 2457.6669924223343]
+ ]
+ },
+ {
+ "id": 55,
+ "bus": 105,
+ "phases": "abcn",
+ "powers": [
+ [12287.830777190737, 2457.566155438148],
+ [12287.83077752188, 2457.566155504377],
+ [12287.830777521927, 2457.5661555043857]
+ ]
+ },
+ {
+ "id": 56,
+ "bus": 107,
+ "phases": "abcn",
+ "powers": [
+ [12287.088405667299, 2457.41768113346],
+ [12287.088405998416, 2457.4176811996813],
+ [12287.088405998471, 2457.417681199692]
+ ]
+ },
+ {
+ "id": 57,
+ "bus": 110,
+ "phases": "abcn",
+ "powers": [
+ [12288.621960893228, 2457.724392178644],
+ [12288.621961224388, 2457.724392244875],
+ [12288.621961224457, 2457.7243922448897]
+ ]
+ },
+ {
+ "id": 58,
+ "bus": 112,
+ "phases": "abcn",
+ "powers": [
+ [12285.436006820195, 2457.087201364039],
+ [12285.436007151286, 2457.0872014302577],
+ [12285.436007151342, 2457.0872014302668]
+ ]
+ },
+ {
+ "id": 59,
+ "bus": 114,
+ "phases": "abcn",
+ "powers": [
+ [12271.971328492453, 2454.394265698492],
+ [12271.971328823172, 2454.394265764634],
+ [12271.971328823241, 2454.394265764648]
+ ]
+ },
+ {
+ "id": 60,
+ "bus": 116,
+ "phases": "abcn",
+ "powers": [
+ [12271.566322333221, 2454.3132644666443],
+ [12271.566322663948, 2454.3132645327887],
+ [12271.566322664006, 2454.3132645327964]
+ ]
+ },
+ {
+ "id": 61,
+ "bus": 118,
+ "phases": "abcn",
+ "powers": [
+ [12270.592082030807, 2454.1184164061597],
+ [12270.5920823615, 2454.1184164722963],
+ [12270.592082361563, 2454.118416472311]
+ ]
+ },
+ {
+ "id": 62,
+ "bus": 120,
+ "phases": "abcn",
+ "powers": [
+ [12266.165321951908, 2453.2330643903806],
+ [12266.165322282475, 2453.2330644564954],
+ [12266.16532228254, 2453.2330644565054]
+ ]
+ },
+ {
+ "id": 63,
+ "bus": 121,
+ "phases": "abcn",
+ "powers": [
+ [12265.802915429917, 2453.16058308598],
+ [12265.80291576048, 2453.1605831520974],
+ [12265.802915760549, 2453.1605831521088]
+ ]
+ },
+ {
+ "id": 64,
+ "bus": 125,
+ "phases": "abcn",
+ "powers": [
+ [12264.682914183797, 2452.936582836761],
+ [12264.682914514327, 2452.9365829028684],
+ [12264.682914514397, 2452.9365829028775]
+ ]
+ },
+ {
+ "id": 65,
+ "bus": 129,
+ "phases": "abcn",
+ "powers": [
+ [12260.595819680475, 2452.119163936096],
+ [12260.595820010902, 2452.11916400218],
+ [12260.59582001097, 2452.119164002193]
+ ]
+ },
+ {
+ "id": 66,
+ "bus": 131,
+ "phases": "abcn",
+ "powers": [
+ [12432.876180518142, 2486.5752361036284],
+ [12432.876180853233, 2486.575236170641],
+ [12432.876180853253, 2486.5752361706454]
+ ]
+ },
+ {
+ "id": 67,
+ "bus": 134,
+ "phases": "abcn",
+ "powers": [
+ [12399.064781536277, 2479.8129563072544],
+ [12399.064781870467, 2479.812956374095],
+ [12399.064781870464, 2479.812956374092]
+ ]
+ },
+ {
+ "id": 68,
+ "bus": 136,
+ "phases": "abcn",
+ "powers": [
+ [12378.863033841777, 2475.772606768356],
+ [12378.86303417543, 2475.7726068350885],
+ [12378.863034175418, 2475.7726068350844]
+ ]
+ },
+ {
+ "id": 69,
+ "bus": 138,
+ "phases": "abcn",
+ "powers": [
+ [12377.709104796742, 2475.54182095935],
+ [12377.709105130365, 2475.5418210260777],
+ [12377.709105130349, 2475.5418210260727]
+ ]
+ },
+ {
+ "id": 70,
+ "bus": 139,
+ "phases": "abcn",
+ "powers": [
+ [12373.304471533807, 2474.660894306761],
+ [12373.304471867308, 2474.6608943734655],
+ [12373.304471867285, 2474.660894373461]
+ ]
+ },
+ {
+ "id": 71,
+ "bus": 140,
+ "phases": "abcn",
+ "powers": [
+ [12363.635345915347, 2472.727069183071],
+ [12363.635346248599, 2472.727069249727],
+ [12363.63534624858, 2472.727069249717]
+ ]
+ },
+ {
+ "id": 72,
+ "bus": 144,
+ "phases": "abcn",
+ "powers": [
+ [12357.53364027714, 2471.50672805543],
+ [12357.533640610238, 2471.5067281220563],
+ [12357.533640610227, 2471.5067281220427]
+ ]
+ },
+ {
+ "id": 73,
+ "bus": 145,
+ "phases": "abcn",
+ "powers": [
+ [12357.39491792443, 2471.4789835848856],
+ [12357.394918257512, 2471.4789836515083],
+ [12357.394918257492, 2471.4789836514915]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AA_147",
+ "z_line": [
+ [
+ [0.243, 0.0, 0.0],
+ [0.0, 0.243, 0.0],
+ [0.0, 0.0, 0.243]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_22",
+ "z_line": [
+ [
+ [1.75, 0.0, 0.0],
+ [0.0, 1.75, 0.0],
+ [0.0, 0.0, 1.75]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_37",
+ "z_line": [
+ [
+ [1.041, 0.0, 0.0],
+ [0.0, 1.041, 0.0],
+ [0.0, 0.0, 1.041]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_54",
+ "z_line": [
+ [
+ [0.775, 0.0, 0.0],
+ [0.0, 0.775, 0.0],
+ [0.0, 0.0, 0.775]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AA_75",
+ "z_line": [
+ [
+ [0.609, 0.0, 0.0],
+ [0.0, 0.609, 0.0],
+ [0.0, 0.0, 0.609]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_34",
+ "z_line": [
+ [
+ [1.505, 0.0, 0.0],
+ [0.0, 1.505, 0.0],
+ [0.0, 0.0, 1.505]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_54",
+ "z_line": [
+ [
+ [0.613, 0.0, 0.0],
+ [0.0, 0.613, 0.0],
+ [0.0, 0.0, 0.613]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_AM_75",
+ "z_line": [
+ [
+ [0.441, 0.0, 0.0],
+ [0.0, 0.441, 0.0],
+ [0.0, 0.0, 0.441]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_07",
+ "z_line": [
+ [
+ [1.5, 0.0, 0.0],
+ [0.0, 1.5, 0.0],
+ [0.0, 0.0, 1.5]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_CU_12",
+ "z_line": [
+ [
+ [1.5, 0.0, 0.0],
+ [0.0, 1.5, 0.0],
+ [0.0, 0.0, 1.5]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_37",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_38",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "A_LA_39",
+ "z_line": [
+ [
+ [1.192, 0.0, 0.0],
+ [0.0, 1.192, 0.0],
+ [0.0, 0.0, 1.192]
+ ],
+ [
+ [0.3499999999999999, 0.0, 0.0],
+ [0.0, 0.3499999999999999, 0.0],
+ [0.0, 0.0, 0.3499999999999999]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [1.5707963267948998e-6, 0.0, 0.0],
+ [0.0, 1.5707963267948998e-6, 0.0],
+ [0.0, 0.0, 1.5707963267948998e-6]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150",
+ "z_line": [
+ [
+ [0.20000000000000004, 0.0, 0.0],
+ [0.0, 0.20000000000000004, 0.0],
+ [0.0, 0.0, 0.20000000000000004]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001410575101461, 0.0, 0.0],
+ [0.0, 0.0001410575101461, 0.0],
+ [0.0, 0.0, 0.0001410575101461]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_240",
+ "z_line": [
+ [
+ [0.125, 0.0, 0.0],
+ [0.0, 0.125, 0.0],
+ [0.0, 0.0, 0.125]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.0001834690109696, 0.0, 0.0],
+ [0.0, 0.0001834690109696, 0.0],
+ [0.0, 0.0, 0.0001834690109696]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_50",
+ "z_line": [
+ [
+ [0.6, 0.0, 0.0],
+ [0.0, 0.6, 0.0],
+ [0.0, 0.0, 0.6]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [8.702211650443729e-5, 0.0, 0.0],
+ [0.0, 8.702211650443729e-5, 0.0],
+ [0.0, 0.0, 8.702211650443729e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_95",
+ "z_line": [
+ [
+ [0.316, 0.0, 0.0],
+ [0.0, 0.316, 0.0],
+ [0.0, 0.0, 0.316]
+ ],
+ [
+ [0.10000000000000002, 0.0, 0.0],
+ [0.0, 0.10000000000000002, 0.0],
+ [0.0, 0.0, 0.10000000000000002]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0],
+ [0.0, 0.0, 0.0]
+ ],
+ [
+ [0.000115139370754, 0.0, 0.0],
+ [0.0, 0.000115139370754, 0.0],
+ [0.0, 0.0, 0.000115139370754]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json
index 1ac643b5..0c6910fc 100644
--- a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json
@@ -1,779 +1,494 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -2.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -3.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -3.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -4.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -4.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -4.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-2.0, -4.0]
- }
- },
- {
- "id": 8,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -5.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -5.0]
- }
- },
- {
- "id": 10,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -6.0]
- }
- },
- {
- "id": 11,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -7.0]
- }
- },
- {
- "id": 12,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -8.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -2.0],
- [1.0, -3.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [2.0, -3.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [1.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [0.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, -4.0],
- [-1.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [-1.0, -4.0],
- [-2.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [1.0, -5.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 8,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [2.0, -5.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 8,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [1.0, -6.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -6.0],
- [1.0, -7.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -7.0],
- [1.0, -8.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 7,
- "phases": "abcn",
- "impedances": [
- [10.0, 0.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 3,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 10,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 5,
- "bus": 12,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [5.0, 0.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -2.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -3.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -3.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -4.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -4.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -4.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-2.0, -4.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -5.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -5.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -6.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -7.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -8.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -2.0],
+ [1.0, -3.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [2.0, -3.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [1.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [0.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, -4.0],
+ [-1.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-1.0, -4.0],
+ [-2.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [1.0, -5.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 8,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [2.0, -5.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 8,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [1.0, -6.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_z_neutral"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -6.0],
+ [1.0, -7.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -7.0],
+ [1.0, -8.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 7,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 0.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 10,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 12,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [5.0, 0.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json
index ca59c1c8..18a37405 100644
--- a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json
+++ b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json
@@ -1,779 +1,494 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -2.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -3.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -3.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -4.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -4.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -4.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-2.0, -4.0]
- }
- },
- {
- "id": 8,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -5.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -5.0]
- }
- },
- {
- "id": 10,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -6.0]
- }
- },
- {
- "id": 11,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -7.0]
- }
- },
- {
- "id": 12,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -8.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -2.0],
- [1.0, -3.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [2.0, -3.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [1.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [0.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, -4.0],
- [-1.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [-1.0, -4.0],
- [-2.0, -4.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 4,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [1.0, -5.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 8,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [2.0, -5.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_lv_exact",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 8,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [1.0, -6.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_z_neutral",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -6.0],
- [1.0, -7.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_zy_neutral",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -7.0],
- [1.0, -8.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [4078.5759498434495, 2039.2879749217245],
- [4025.790789140828, 2012.8953945704143],
- [4144.855450640247, 2072.4277253201235]
- ]
- },
- {
- "id": 2,
- "bus": 7,
- "phases": "abcn",
- "powers": [
- [4838.426591499185, 0.0],
- [3872.7233399825973, 1936.3616699912986],
- [3968.978373876759, 1984.4891869383796]
- ]
- },
- {
- "id": 3,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [3914.5692437241705, 1957.2846218620853],
- [3656.4563343592586, 1828.2281671796295],
- [5046.083188458626, 4.547473508864641e-13]
- ]
- },
- {
- "id": 4,
- "bus": 10,
- "phases": "abcn",
- "powers": [
- [3849.8549167741094, 1924.9274583870556],
- [3572.255431241537, 1786.1277156207677],
- [4081.9861885154055, 2040.9930942577025]
- ]
- },
- {
- "id": 5,
- "bus": 12,
- "phases": "abcn",
- "powers": [
- [3786.43394177269, 1893.216970886345],
- [8414.187605768742, 0.0],
- [4152.23287801158, 2076.1164390057897]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_lv_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.26757551559358256,
- 0.24579965469054643,
- 0.26757551559358234
- ],
- [
- 0.26757551559358256,
- 0.32828402771266313,
- 0.26757551559358234,
- 0.24579965469054643
- ],
- [
- 0.24579965469054643,
- 0.26757551559358234,
- 0.32828402771266313,
- 0.26757551559358256
- ],
- [
- 0.26757551559358234,
- 0.24579965469054643,
- 0.26757551559358256,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 6.492990301993529e-07,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 7.760329608740529e-07,
- -0.0,
- 0.0
- ],
- [
- -0.0,
- -0.0,
- 6.492990301993506e-07,
- -0.0
- ],
- [
- -0.0,
- 0.0,
- -0.0,
- 3.5616901884786625e-07
- ]
- ],
- [
- [
- 0.0003163289867670228,
- -6.592686877000749e-05,
- -1.507901584696675e-06,
- -3.246120634586769e-05
- ],
- [
- -6.592686877000748e-05,
- 0.0003820159070099681,
- -6.592686877000684e-05,
- 8.515484154730534e-06
- ],
- [
- -1.5079015846966908e-06,
- -6.592686877000681e-05,
- 0.00031632898676702166,
- -3.246120634586795e-05
- ],
- [
- -3.246120634586768e-05,
- 8.51548415473053e-06,
- -3.246120634586795e-05,
- 0.0001751299348196272
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.24705491511278602,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.32828402771266313,
- 0.24705491511278602,
- 0.247054915112786
- ],
- [
- 0.24705491511278602,
- 0.24705491511278602,
- 0.32828402771266313,
- 0.247054915112786
- ],
- [
- 0.247054915112786,
- 0.247054915112786,
- 0.247054915112786,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.9233205197394304e-05,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 1.9233205197394304e-05,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 1.9233205197394304e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 0.00046329162067999997,
- -5.56183240209e-05,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- 0.00046329162067999997,
- -5.56183240209e-05,
- -3.150155268172179e-05
- ],
- [
- -5.56183240209e-05,
- -5.56183240209e-05,
- 0.00046329162067999997,
- -3.150155268172179e-05
- ],
- [
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- -3.150155268172179e-05,
- 0.0003030802149852
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.40285714285714286
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.8739702458486305e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.2514533416405092e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.0003030802149852502
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -2.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -3.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -3.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -4.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -4.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -4.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-2.0, -4.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -5.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -5.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -6.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -7.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -8.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -2.0],
+ [1.0, -3.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [2.0, -3.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [1.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [0.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, -4.0],
+ [-1.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-1.0, -4.0],
+ [-2.0, -4.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 4,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [1.0, -5.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 8,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [2.0, -5.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_lv_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 8,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [1.0, -6.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_z_neutral"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -6.0],
+ [1.0, -7.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_zy_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -7.0],
+ [1.0, -8.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [4078.5759498434495, 2039.2879749217245],
+ [4025.790789140828, 2012.8953945704143],
+ [4144.855450640247, 2072.4277253201235]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 7,
+ "phases": "abcn",
+ "powers": [
+ [4838.426591499185, 0.0],
+ [3872.7233399825973, 1936.3616699912986],
+ [3968.978373876759, 1984.4891869383796]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [3914.5692437241705, 1957.2846218620853],
+ [3656.4563343592586, 1828.2281671796295],
+ [5046.083188458626, 4.547473508864641e-13]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 10,
+ "phases": "abcn",
+ "powers": [
+ [3849.8549167741094, 1924.9274583870556],
+ [3572.255431241537, 1786.1277156207677],
+ [4081.9861885154055, 2040.9930942577025]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 12,
+ "phases": "abcn",
+ "powers": [
+ [3786.43394177269, 1893.216970886345],
+ [8414.187605768742, 0.0],
+ [4152.23287801158, 2076.1164390057897]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_lv_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234],
+ [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643],
+ [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256],
+ [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [6.492990301993529e-7, -0.0, -0.0, -0.0],
+ [-0.0, 7.760329608740529e-7, -0.0, 0.0],
+ [-0.0, -0.0, 6.492990301993506e-7, -0.0],
+ [-0.0, 0.0, -0.0, 3.5616901884786625e-7]
+ ],
+ [
+ [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5],
+ [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6],
+ [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5],
+ [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786],
+ [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786],
+ [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.9233205197394304e-5, 0.0, 0.0, -0.0],
+ [0.0, 1.9233205197394304e-5, 0.0, -0.0],
+ [0.0, 0.0, 1.9233205197394304e-5, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5],
+ [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5],
+ [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy_neutral",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0, 0.0],
+ [0.0, 0.188, 0.0, 0.0],
+ [0.0, 0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.0, 0.40285714285714286]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.8739702458486305e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.2514533416405092e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json
index 6f628938..b12b1395 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json
@@ -1,937 +1,807 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 13,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, 0.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, -1.0]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, -1.0]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, -1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [6.0, -1.0]
- }
- },
- {
- "id": 13,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -2.0]
- }
- },
- {
- "id": 14,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -3.0]
- }
- },
- {
- "id": 15,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -3.0]
- }
- },
- {
- "id": 16,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -4.0]
- }
- },
- {
- "id": 17,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -4.0]
- }
- },
- {
- "id": 18,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -4.0]
- }
- },
- {
- "id": 19,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-2.0, -4.0]
- }
- },
- {
- "id": 20,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -5.0]
- }
- },
- {
- "id": 21,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -5.0]
- }
- },
- {
- "id": 22,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -6.0]
- }
- },
- {
- "id": 23,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -7.0]
- }
- },
- {
- "id": 24,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -8.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [2.0, 0.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [3.0, 0.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [4.0, 0.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, 0.0],
- [5.0, 0.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [3.0, -1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, -1.0],
- [4.0, -1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, -1.0],
- [5.0, -1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.0, -1.0],
- [6.0, -1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "transformateur",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 13,
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.5]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- },
- {
- "id": "line13",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13,
- "bus2": 14,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -2.0],
- [1.0, -3.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line14",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 14,
- "bus2": 15,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [2.0, -3.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line15",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 14,
- "bus2": 16,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [1.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line16",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 16,
- "bus2": 17,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [0.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line17",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 17,
- "bus2": 18,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, -4.0],
- [-1.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line18",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 18,
- "bus2": 19,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [-1.0, -4.0],
- [-2.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line19",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 16,
- "bus2": 20,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [1.0, -5.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line20",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 20,
- "bus2": 21,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [2.0, -5.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line21",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 20,
- "bus2": 22,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [1.0, -6.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line22",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 22,
- "bus2": 23,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -6.0],
- [1.0, -7.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line23",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 23,
- "bus2": 24,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -7.0],
- [1.0, -8.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [500.0, 100.0],
- [500.0, 100.0],
- [500.0, 100.0]
- ]
- },
- {
- "id": 2,
- "bus": 8,
- "phases": "abcn",
- "impedances": [
- [500.0, 100.0],
- [500.0, 100.0],
- [500.0, 100.0]
- ]
- },
- {
- "id": 3,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [500.0, 100.0],
- [500.0, 100.0],
- [500.0, 100.0]
- ]
- },
- {
- "id": 4,
- "bus": 12,
- "phases": "abcn",
- "impedances": [
- [500.0, 100.0],
- [500.0, 100.0],
- [500.0, 100.0]
- ]
- },
- {
- "id": 5,
- "bus": 15,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [8.0, 5.0],
- [12.0, 5.0]
- ]
- },
- {
- "id": 6,
- "bus": 19,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [8.0, 5.0],
- [12.0, 5.0]
- ]
- },
- {
- "id": 7,
- "bus": 21,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [8.0, 5.0],
- [12.0, 5.0]
- ]
- },
- {
- "id": 8,
- "bus": 22,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [8.0, 5.0],
- [12.0, 5.0]
- ]
- },
- {
- "id": 9,
- "bus": 24,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [8.0, 5.0],
- [12.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 13,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, 0.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, -1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, -1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, -1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [6.0, -1.0]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -2.0]
+ }
+ },
+ {
+ "id": 14,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -3.0]
+ }
+ },
+ {
+ "id": 15,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -3.0]
+ }
+ },
+ {
+ "id": 16,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -4.0]
+ }
+ },
+ {
+ "id": 17,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -4.0]
+ }
+ },
+ {
+ "id": 18,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -4.0]
+ }
+ },
+ {
+ "id": 19,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-2.0, -4.0]
+ }
+ },
+ {
+ "id": 20,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -5.0]
+ }
+ },
+ {
+ "id": 21,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -5.0]
+ }
+ },
+ {
+ "id": 22,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -6.0]
+ }
+ },
+ {
+ "id": 23,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -7.0]
+ }
+ },
+ {
+ "id": 24,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -8.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [2.0, 0.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [3.0, 0.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [4.0, 0.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, 0.0],
+ [5.0, 0.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [3.0, -1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, -1.0],
+ [4.0, -1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, -1.0],
+ [5.0, -1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.0, -1.0],
+ [6.0, -1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "transformateur",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 13,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.5]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "line13",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13,
+ "bus2": 14,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -2.0],
+ [1.0, -3.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line14",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 14,
+ "bus2": 15,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [2.0, -3.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line15",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 14,
+ "bus2": 16,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [1.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line16",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 16,
+ "bus2": 17,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [0.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line17",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 17,
+ "bus2": 18,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, -4.0],
+ [-1.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line18",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 18,
+ "bus2": 19,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-1.0, -4.0],
+ [-2.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line19",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 16,
+ "bus2": 20,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [1.0, -5.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line20",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 20,
+ "bus2": 21,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [2.0, -5.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line21",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 20,
+ "bus2": 22,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [1.0, -6.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line22",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 22,
+ "bus2": 23,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -6.0],
+ [1.0, -7.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line23",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 23,
+ "bus2": 24,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -7.0],
+ [1.0, -8.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [500.0, 100.0],
+ [500.0, 100.0],
+ [500.0, 100.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 8,
+ "phases": "abcn",
+ "impedances": [
+ [500.0, 100.0],
+ [500.0, 100.0],
+ [500.0, 100.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [500.0, 100.0],
+ [500.0, 100.0],
+ [500.0, 100.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 12,
+ "phases": "abcn",
+ "impedances": [
+ [500.0, 100.0],
+ [500.0, 100.0],
+ [500.0, 100.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 15,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [8.0, 5.0],
+ [12.0, 5.0]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 19,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [8.0, 5.0],
+ [12.0, 5.0]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 21,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [8.0, 5.0],
+ [12.0, 5.0]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 22,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [8.0, 5.0],
+ [12.0, 5.0]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 24,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [8.0, 5.0],
+ [12.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json
index e59df850..e7c378cb 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json
@@ -1,937 +1,807 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 13,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, 0.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, -1.0]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, -1.0]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, -1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [6.0, -1.0]
- }
- },
- {
- "id": 13,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -2.0]
- }
- },
- {
- "id": 14,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -3.0]
- }
- },
- {
- "id": 15,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -3.0]
- }
- },
- {
- "id": 16,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -4.0]
- }
- },
- {
- "id": 17,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, -4.0]
- }
- },
- {
- "id": 18,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-1.0, -4.0]
- }
- },
- {
- "id": 19,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-2.0, -4.0]
- }
- },
- {
- "id": 20,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -5.0]
- }
- },
- {
- "id": 21,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -5.0]
- }
- },
- {
- "id": 22,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -6.0]
- }
- },
- {
- "id": 23,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -7.0]
- }
- },
- {
- "id": 24,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -8.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 5.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [2.0, 0.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [3.0, 0.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [4.0, 0.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, 0.0],
- [5.0, 0.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [3.0, -1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, -1.0],
- [4.0, -1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, -1.0],
- [5.0, -1.0]
- ]
- },
- "length": 2.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.0, -1.0],
- [6.0, -1.0]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "transformateur",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 13,
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.5]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- },
- {
- "id": "line13",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 13,
- "bus2": 14,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -2.0],
- [1.0, -3.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line14",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 14,
- "bus2": 15,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [2.0, -3.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line15",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 14,
- "bus2": 16,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -3.0],
- [1.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line16",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 16,
- "bus2": 17,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [0.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line17",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 17,
- "bus2": 18,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, -4.0],
- [-1.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line18",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 18,
- "bus2": 19,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [-1.0, -4.0],
- [-2.0, -4.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line19",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 16,
- "bus2": 20,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -4.0],
- [1.0, -5.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line20",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 20,
- "bus2": 21,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [2.0, -5.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line21",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 20,
- "bus2": 22,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -5.0],
- [1.0, -6.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line22",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 22,
- "bus2": 23,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -6.0],
- [1.0, -7.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line23",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 23,
- "bus2": 24,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, -7.0],
- [1.0, -8.0]
- ]
- },
- "length": 0.1,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [251009.2634237357, 50201.85268474712],
- [250995.49287217823, 50199.09857443569],
- [251009.0826811284, 50201.81653622564]
- ]
- },
- {
- "id": 2,
- "bus": 8,
- "phases": "abcn",
- "powers": [
- [250205.73959141047, 50041.147918282135],
- [250192.01312175737, 50038.402624351525],
- [250205.5594273914, 50041.11188547827]
- ]
- },
- {
- "id": 3,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [250000.8781073924, 50000.17562147856],
- [249987.16287658954, 49997.43257531784],
- [250000.69809088638, 50000.1396181774]
- ]
- },
- {
- "id": 4,
- "bus": 12,
- "phases": "abcn",
- "powers": [
- [249207.2413601394, 49841.448272027876],
- [249193.5696688285, 49838.71393376577],
- [249207.0619151023, 49841.4123830203]
- ]
- },
- {
- "id": 5,
- "bus": 15,
- "phases": "abcn",
- "powers": [
- [4022.684654015081, 2011.3423270075414],
- [4396.4639371455905, 2747.789960715992],
- [3602.3239721679847, 1500.968321736661]
- ]
- },
- {
- "id": 6,
- "bus": 19,
- "phases": "abcn",
- "powers": [
- [3956.1153917407923, 1978.057695870396],
- [4235.944883388208, 2647.46555211763],
- [3559.2513593225367, 1483.021399717724]
- ]
- },
- {
- "id": 7,
- "bus": 21,
- "phases": "abcn",
- "powers": [
- [3944.7439109776074, 1972.371955488804],
- [4210.512435293473, 2631.57027205842],
- [3552.015927941965, 1480.0066366424855]
- ]
- },
- {
- "id": 8,
- "bus": 22,
- "phases": "abcn",
- "powers": [
- [3933.576461887421, 1966.7882309437105],
- [4184.640537609303, 2615.4003360058136],
- [3544.8493185110397, 1477.0205493796004]
- ]
- },
- {
- "id": 9,
- "bus": 24,
- "phases": "abcn",
- "powers": [
- [3911.425534062758, 1955.712767031379],
- [4132.774797382108, 2582.984248363817],
- [3530.59314215058, 1471.080475896075]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 13,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, 0.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, -1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, -1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, -1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [6.0, -1.0]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -2.0]
+ }
+ },
+ {
+ "id": 14,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -3.0]
+ }
+ },
+ {
+ "id": 15,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -3.0]
+ }
+ },
+ {
+ "id": 16,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -4.0]
+ }
+ },
+ {
+ "id": 17,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, -4.0]
+ }
+ },
+ {
+ "id": 18,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-1.0, -4.0]
+ }
+ },
+ {
+ "id": 19,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-2.0, -4.0]
+ }
+ },
+ {
+ "id": 20,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -5.0]
+ }
+ },
+ {
+ "id": 21,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -5.0]
+ }
+ },
+ {
+ "id": 22,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -6.0]
+ }
+ },
+ {
+ "id": 23,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -7.0]
+ }
+ },
+ {
+ "id": 24,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -8.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 5.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [2.0, 0.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [3.0, 0.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [4.0, 0.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, 0.0],
+ [5.0, 0.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [3.0, -1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, -1.0],
+ [4.0, -1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, -1.0],
+ [5.0, -1.0]
+ ]
+ },
+ "length": 2.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.0, -1.0],
+ [6.0, -1.0]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "transformateur",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 13,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.5]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "line13",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 13,
+ "bus2": 14,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -2.0],
+ [1.0, -3.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line14",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 14,
+ "bus2": 15,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [2.0, -3.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line15",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 14,
+ "bus2": 16,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -3.0],
+ [1.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line16",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 16,
+ "bus2": 17,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [0.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line17",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 17,
+ "bus2": 18,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, -4.0],
+ [-1.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line18",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 18,
+ "bus2": 19,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-1.0, -4.0],
+ [-2.0, -4.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line19",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 16,
+ "bus2": 20,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -4.0],
+ [1.0, -5.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line20",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 20,
+ "bus2": 21,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [2.0, -5.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line21",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 20,
+ "bus2": 22,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -5.0],
+ [1.0, -6.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line22",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 22,
+ "bus2": 23,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -6.0],
+ [1.0, -7.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line23",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 23,
+ "bus2": 24,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, -7.0],
+ [1.0, -8.0]
+ ]
+ },
+ "length": 0.1,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [251009.2634237357, 50201.85268474712],
+ [250995.49287217823, 50199.09857443569],
+ [251009.0826811284, 50201.81653622564]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 8,
+ "phases": "abcn",
+ "powers": [
+ [250205.73959141047, 50041.147918282135],
+ [250192.01312175737, 50038.402624351525],
+ [250205.5594273914, 50041.11188547827]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [250000.8781073924, 50000.17562147856],
+ [249987.16287658954, 49997.43257531784],
+ [250000.69809088638, 50000.1396181774]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 12,
+ "phases": "abcn",
+ "powers": [
+ [249207.2413601394, 49841.448272027876],
+ [249193.5696688285, 49838.71393376577],
+ [249207.0619151023, 49841.4123830203]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 15,
+ "phases": "abcn",
+ "powers": [
+ [4022.684654015081, 2011.3423270075414],
+ [4396.4639371455905, 2747.789960715992],
+ [3602.3239721679847, 1500.968321736661]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 19,
+ "phases": "abcn",
+ "powers": [
+ [3956.1153917407923, 1978.057695870396],
+ [4235.944883388208, 2647.46555211763],
+ [3559.2513593225367, 1483.021399717724]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 21,
+ "phases": "abcn",
+ "powers": [
+ [3944.7439109776074, 1972.371955488804],
+ [4210.512435293473, 2631.57027205842],
+ [3552.015927941965, 1480.0066366424855]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 22,
+ "phases": "abcn",
+ "powers": [
+ [3933.576461887421, 1966.7882309437105],
+ [4184.640537609303, 2615.4003360058136],
+ [3544.8493185110397, 1477.0205493796004]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 24,
+ "phases": "abcn",
+ "powers": [
+ [3911.425534062758, 1955.712767031379],
+ [4132.774797382108, 2582.984248363817],
+ [3530.59314215058, 1471.080475896075]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json
index 343d5445..74c5ab50 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json
@@ -1,96 +1,96 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
+ "id": 1,
+ "phase": "n"
},
{
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- }
- ],
- "loads": [
- {
- "id": 2,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ }
+ ],
+ "loads": [
+ {
+ "id": 2,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json
index 21714733..b24807a0 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json
@@ -1,96 +1,96 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
+ "id": 1,
+ "phase": "n"
},
{
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- }
- ],
- "loads": [
- {
- "id": 2,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [40459.798978684, 20229.899489342006],
- [40459.79897977452, 20229.899489887266],
- [40459.798978684004, 20229.899489342002]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ }
+ ],
+ "loads": [
+ {
+ "id": 2,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [40459.798978684, 20229.899489342006],
+ [40459.79897977452, 20229.899489887266],
+ [40459.798978684004, 20229.899489342002]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json
index 68c9d0d8..8bdfdf73 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json
@@ -1,85 +1,85 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
+ "id": 1,
+ "phase": "n"
},
{
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- }
- ],
- "loads": [],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ }
+ ],
+ "loads": [],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json
index 68c9d0d8..8bdfdf73 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json
@@ -1,85 +1,85 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
+ "id": 1,
+ "phase": "n"
},
{
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "transfo1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- }
- ],
- "loads": [],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "transfo1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ }
+ ],
+ "loads": [],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json
index cf9a13d9..fd3409a4 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json
@@ -1,617 +1,617 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 3,
- "phase": "n"
- },
- {
- "id": 4,
- "phase": "n"
- },
- {
- "id": 5,
- "phase": "n"
- },
- {
- "id": 7,
- "phase": "n"
- },
- {
- "id": 9,
- "phase": "n"
- },
- {
- "id": 10,
- "phase": "n"
- },
- {
- "id": 11,
- "phase": "n"
- },
- {
- "id": 13,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- },
- {
- "id": "line12",
- "bus": 2,
- "phases": null
- },
- {
- "id": "line56",
- "bus": 6,
- "phases": null
- },
- {
- "id": "line78",
- "bus": 8,
- "phases": null
- },
- {
- "id": "line1112",
- "bus": 12,
- "phases": null
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 10,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 11,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 13,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "tr1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dd0",
- "tap": 1.0
- },
- {
- "id": "tr2",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yyn0",
- "tap": 1.0
- },
- {
- "id": "tr3",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dzn0",
- "tap": 1.0
- },
- {
- "id": "tr4",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- },
- {
- "id": "tr5",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yd11",
- "tap": 1.0
- },
- {
- "id": "tr6",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yzn11",
- "tap": 1.0
- },
- {
- "id": "tr7",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 8,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dd6",
- "tap": 1.0
- },
- {
- "id": "tr8",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 9,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yyn6",
- "tap": 1.0
- },
- {
- "id": "tr9",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 10,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dzn6",
- "tap": 1.0
- },
- {
- "id": "tr10",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 11,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dyn5",
- "tap": 1.0
- },
- {
- "id": "tr11",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 12,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yd5",
- "tap": 1.0
- },
- {
- "id": "tr12",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 13,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yzn5",
- "tap": 1.0
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 7,
- "bus": 8,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 8,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 9,
- "bus": 10,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 10,
- "bus": 11,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 11,
- "bus": 12,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- },
- {
- "id": 12,
- "bus": 13,
- "phases": "abcn",
- "impedances": [
- [1.0, 0.5],
- [1.0, 0.5],
- [1.0, 0.5]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dd0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dd0"
- },
- {
- "id": "160kVA_Dd6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dd6"
- },
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
- },
- {
- "id": "160kVA_Dyn5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn5"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "160kVA_Dzn0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dzn0"
+ "id": 3,
+ "phase": "n"
},
{
- "id": "160kVA_Dzn6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dzn6"
+ "id": 4,
+ "phase": "n"
},
{
- "id": "160kVA_Yd11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yd11"
+ "id": 5,
+ "phase": "n"
},
{
- "id": "160kVA_Yd5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yd5"
+ "id": 7,
+ "phase": "n"
},
{
- "id": "160kVA_Yyn0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yyn0"
+ "id": 9,
+ "phase": "n"
},
{
- "id": "160kVA_Yyn6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yyn6"
+ "id": 10,
+ "phase": "n"
},
{
- "id": "160kVA_Yzn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yzn11"
+ "id": 11,
+ "phase": "n"
},
{
- "id": "160kVA_Yzn5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yzn5"
+ "id": 13,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ },
+ {
+ "id": "line12",
+ "bus": 2,
+ "phases": null
+ },
+ {
+ "id": "line56",
+ "bus": 6,
+ "phases": null
+ },
+ {
+ "id": "line78",
+ "bus": 8,
+ "phases": null
+ },
+ {
+ "id": "line1112",
+ "bus": 12,
+ "phases": null
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "tr1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dd0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr2",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yyn0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr3",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dzn0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr4",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr5",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yd11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr6",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yzn11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr7",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 8,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dd6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr8",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 9,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yyn6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr9",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 10,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dzn6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr10",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 11,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dyn5",
+ "tap": 1.0
+ },
+ {
+ "id": "tr11",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 12,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yd5",
+ "tap": 1.0
+ },
+ {
+ "id": "tr12",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 13,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yzn5",
+ "tap": 1.0
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 8,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 10,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 11,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 12,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 13,
+ "phases": "abcn",
+ "impedances": [
+ [1.0, 0.5],
+ [1.0, 0.5],
+ [1.0, 0.5]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dd0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dd0"
+ },
+ {
+ "id": "160kVA_Dd6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dd6"
+ },
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ },
+ {
+ "id": "160kVA_Dyn5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn5"
+ },
+ {
+ "id": "160kVA_Dzn0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dzn0"
+ },
+ {
+ "id": "160kVA_Dzn6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dzn6"
+ },
+ {
+ "id": "160kVA_Yd11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yd11"
+ },
+ {
+ "id": "160kVA_Yd5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yd5"
+ },
+ {
+ "id": "160kVA_Yyn0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yyn0"
+ },
+ {
+ "id": "160kVA_Yyn6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yyn6"
+ },
+ {
+ "id": "160kVA_Yzn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yzn11"
+ },
+ {
+ "id": "160kVA_Yzn5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yzn5"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json
index 81fddac8..0bb7b95a 100644
--- a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json
+++ b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json
@@ -1,617 +1,617 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 3,
- "phase": "n"
- },
- {
- "id": 4,
- "phase": "n"
- },
- {
- "id": 5,
- "phase": "n"
- },
- {
- "id": 7,
- "phase": "n"
- },
- {
- "id": 9,
- "phase": "n"
- },
- {
- "id": 10,
- "phase": "n"
- },
- {
- "id": 11,
- "phase": "n"
- },
- {
- "id": 13,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- },
- {
- "id": "line12",
- "bus": 2,
- "phases": null
- },
- {
- "id": "line56",
- "bus": 6,
- "phases": null
- },
- {
- "id": "line78",
- "bus": 8,
- "phases": null
- },
- {
- "id": "line1112",
- "bus": 12,
- "phases": null
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 7,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 9,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 10,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 11,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- },
- {
- "id": 13,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "tr1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dd0",
- "tap": 1.0
- },
- {
- "id": "tr2",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yyn0",
- "tap": 1.0
- },
- {
- "id": "tr3",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dzn0",
- "tap": 1.0
- },
- {
- "id": "tr4",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 5,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dyn11",
- "tap": 1.0
- },
- {
- "id": "tr5",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 6,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yd11",
- "tap": 1.0
- },
- {
- "id": "tr6",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 7,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yzn11",
- "tap": 1.0
- },
- {
- "id": "tr7",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 8,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dd6",
- "tap": 1.0
- },
- {
- "id": "tr8",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 9,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yyn6",
- "tap": 1.0
- },
- {
- "id": "tr9",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 10,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dzn6",
- "tap": 1.0
- },
- {
- "id": "tr10",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 11,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Dyn5",
- "tap": 1.0
- },
- {
- "id": "tr11",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 12,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yd5",
- "tap": 1.0
- },
- {
- "id": "tr12",
- "type": "transformer",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 13,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- },
- "params_id": "160kVA_Yzn5",
- "tap": 1.0
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [41916.482229647016, 20958.241114823508],
- [41916.482230776804, 20958.2411153884],
- [41916.4822307768, 20958.241115388402]
- ]
- },
- {
- "id": 2,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [40459.7989783205, 20229.89948916025],
- [40459.79897941102, 20229.89948970551],
- [40459.79897941102, 20229.89948970551]
- ]
- },
- {
- "id": 3,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [37922.04164877094, 18961.020824385465],
- [37922.04164985974, 18961.020824929874],
- [37922.04164980375, 18961.02082490188]
- ]
- },
- {
- "id": 4,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [40459.798978684, 20229.899489342002],
- [40459.79897977451, 20229.89948988726],
- [40459.798978684004, 20229.899489342002]
- ]
- },
- {
- "id": 5,
- "bus": 6,
- "phases": "abcn",
- "powers": [
- [41916.48223002361, 20958.24111501181],
- [41916.4822311534, 20958.241115576697],
- [41916.48223002363, 20958.241115011813]
- ]
- },
- {
- "id": 6,
- "bus": 7,
- "phases": "abcn",
- "powers": [
- [40932.79932474136, 20466.399662370677],
- [40932.79932583017, 20466.39966291509],
- [40932.79932479737, 20466.39966239868]
- ]
- },
- {
- "id": 7,
- "bus": 8,
- "phases": "abcn",
- "powers": [
- [41916.482229647016, 20958.241114823508],
- [41916.482230776804, 20958.241115388402],
- [41916.4822307768, 20958.241115388402]
- ]
- },
- {
- "id": 8,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [40459.79897832049, 20229.899489160252],
- [40459.79897941102, 20229.89948970551],
- [40459.79897941101, 20229.899489705513]
- ]
- },
- {
- "id": 9,
- "bus": 10,
- "phases": "abcn",
- "powers": [
- [37922.04164877094, 18961.020824385465],
- [37922.04164985973, 18961.020824929878],
- [37922.04164980376, 18961.02082490188]
- ]
- },
- {
- "id": 10,
- "bus": 11,
- "phases": "abcn",
- "powers": [
- [40459.798978684, 20229.899489342002],
- [40459.79897977452, 20229.899489887266],
- [40459.798978684004, 20229.899489342002]
- ]
- },
- {
- "id": 11,
- "bus": 12,
- "phases": "abcn",
- "powers": [
- [41916.48223002361, 20958.24111501181],
- [41916.4822311534, 20958.241115576693],
- [41916.48223002362, 20958.241115011817]
- ]
- },
- {
- "id": 12,
- "bus": 13,
- "phases": "abcn",
- "powers": [
- [40932.79932474137, 20466.399662370684],
- [40932.79932583017, 20466.399662915086],
- [40932.799324797365, 20466.399662398682]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": [
- {
- "id": "160kVA_Dd0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dd0"
- },
- {
- "id": "160kVA_Dd6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dd6"
- },
- {
- "id": "160kVA_Dyn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn11"
- },
- {
- "id": "160kVA_Dyn5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dyn5"
+ "id": 1,
+ "phase": "n"
},
{
- "id": "160kVA_Dzn0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dzn0"
+ "id": 3,
+ "phase": "n"
},
{
- "id": "160kVA_Dzn6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "dzn6"
+ "id": 4,
+ "phase": "n"
},
{
- "id": "160kVA_Yd11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yd11"
+ "id": 5,
+ "phase": "n"
},
{
- "id": "160kVA_Yd5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yd5"
+ "id": 7,
+ "phase": "n"
},
{
- "id": "160kVA_Yyn0",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yyn0"
+ "id": 9,
+ "phase": "n"
},
{
- "id": "160kVA_Yyn6",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yyn6"
+ "id": 10,
+ "phase": "n"
},
{
- "id": "160kVA_Yzn11",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yzn11"
+ "id": 11,
+ "phase": "n"
},
{
- "id": "160kVA_Yzn5",
- "sn": 160000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.023,
- "p0": 460.0,
- "psc": 2350.0,
- "vsc": 0.04,
- "type": "yzn5"
+ "id": 13,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ },
+ {
+ "id": "line12",
+ "bus": 2,
+ "phases": null
+ },
+ {
+ "id": "line56",
+ "bus": 6,
+ "phases": null
+ },
+ {
+ "id": "line78",
+ "bus": 8,
+ "phases": null
+ },
+ {
+ "id": "line1112",
+ "bus": 12,
+ "phases": null
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ },
+ {
+ "id": 13,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "tr1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dd0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr2",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yyn0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr3",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dzn0",
+ "tap": 1.0
+ },
+ {
+ "id": "tr4",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 5,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr5",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 6,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yd11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr6",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 7,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yzn11",
+ "tap": 1.0
+ },
+ {
+ "id": "tr7",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 8,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dd6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr8",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 9,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yyn6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr9",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 10,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dzn6",
+ "tap": 1.0
+ },
+ {
+ "id": "tr10",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 11,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Dyn5",
+ "tap": 1.0
+ },
+ {
+ "id": "tr11",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 12,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yd5",
+ "tap": 1.0
+ },
+ {
+ "id": "tr12",
+ "type": "transformer",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 13,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ },
+ "params_id": "160kVA_Yzn5",
+ "tap": 1.0
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [41916.482229647016, 20958.241114823508],
+ [41916.482230776804, 20958.2411153884],
+ [41916.4822307768, 20958.241115388402]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [40459.7989783205, 20229.89948916025],
+ [40459.79897941102, 20229.89948970551],
+ [40459.79897941102, 20229.89948970551]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [37922.04164877094, 18961.020824385465],
+ [37922.04164985974, 18961.020824929874],
+ [37922.04164980375, 18961.02082490188]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [40459.798978684, 20229.899489342002],
+ [40459.79897977451, 20229.89948988726],
+ [40459.798978684004, 20229.899489342002]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 6,
+ "phases": "abcn",
+ "powers": [
+ [41916.48223002361, 20958.24111501181],
+ [41916.4822311534, 20958.241115576697],
+ [41916.48223002363, 20958.241115011813]
+ ]
+ },
+ {
+ "id": 6,
+ "bus": 7,
+ "phases": "abcn",
+ "powers": [
+ [40932.79932474136, 20466.399662370677],
+ [40932.79932583017, 20466.39966291509],
+ [40932.79932479737, 20466.39966239868]
+ ]
+ },
+ {
+ "id": 7,
+ "bus": 8,
+ "phases": "abcn",
+ "powers": [
+ [41916.482229647016, 20958.241114823508],
+ [41916.482230776804, 20958.241115388402],
+ [41916.4822307768, 20958.241115388402]
+ ]
+ },
+ {
+ "id": 8,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [40459.79897832049, 20229.899489160252],
+ [40459.79897941102, 20229.89948970551],
+ [40459.79897941101, 20229.899489705513]
+ ]
+ },
+ {
+ "id": 9,
+ "bus": 10,
+ "phases": "abcn",
+ "powers": [
+ [37922.04164877094, 18961.020824385465],
+ [37922.04164985973, 18961.020824929878],
+ [37922.04164980376, 18961.02082490188]
+ ]
+ },
+ {
+ "id": 10,
+ "bus": 11,
+ "phases": "abcn",
+ "powers": [
+ [40459.798978684, 20229.899489342002],
+ [40459.79897977452, 20229.899489887266],
+ [40459.798978684004, 20229.899489342002]
+ ]
+ },
+ {
+ "id": 11,
+ "bus": 12,
+ "phases": "abcn",
+ "powers": [
+ [41916.48223002361, 20958.24111501181],
+ [41916.4822311534, 20958.241115576693],
+ [41916.48223002362, 20958.241115011817]
+ ]
+ },
+ {
+ "id": 12,
+ "bus": 13,
+ "phases": "abcn",
+ "powers": [
+ [40932.79932474137, 20466.399662370684],
+ [40932.79932583017, 20466.399662915086],
+ [40932.799324797365, 20466.399662398682]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": [
+ {
+ "id": "160kVA_Dd0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dd0"
+ },
+ {
+ "id": "160kVA_Dd6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dd6"
+ },
+ {
+ "id": "160kVA_Dyn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ },
+ {
+ "id": "160kVA_Dyn5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dyn5"
+ },
+ {
+ "id": "160kVA_Dzn0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dzn0"
+ },
+ {
+ "id": "160kVA_Dzn6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "dzn6"
+ },
+ {
+ "id": "160kVA_Yd11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yd11"
+ },
+ {
+ "id": "160kVA_Yd5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yd5"
+ },
+ {
+ "id": "160kVA_Yyn0",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yyn0"
+ },
+ {
+ "id": "160kVA_Yyn6",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yyn6"
+ },
+ {
+ "id": "160kVA_Yzn11",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yzn11"
+ },
+ {
+ "id": "160kVA_Yzn5",
+ "sn": 160000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.023,
+ "p0": 460.0,
+ "psc": 2350.0,
+ "vsc": 0.04,
+ "type": "yzn5"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json
index b5e54147..1f0c1c93 100644
--- a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json
@@ -1,577 +1,453 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, 0.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, -1.0]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, -1.0]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, -1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [6.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [2.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [3.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [4.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, 0.0],
- [5.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [3.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, -1.0],
- [4.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, -1.0],
- [5.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.0, -1.0],
- [6.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [10.0, 0.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 3,
- "bus": 8,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 0.0]
- ]
- },
- {
- "id": 4,
- "bus": 9,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 5,
- "bus": 12,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [5.0, 0.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, 0.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, -1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, -1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, -1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [6.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [2.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [3.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [4.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, 0.0],
+ [5.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [3.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, -1.0],
+ [4.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, -1.0],
+ [5.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.0, -1.0],
+ [6.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 0.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 8,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 0.0]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 9,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 12,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [5.0, 0.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json
index c68294ec..44eb795a 100644
--- a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json
+++ b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json
@@ -1,577 +1,453 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, -1.0]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 6,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 7,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, 0.0]
- }
- },
- {
- "id": 8,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, 0.0]
- }
- },
- {
- "id": 9,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, -1.0]
- }
- },
- {
- "id": 10,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [4.0, -1.0]
- }
- },
- {
- "id": 11,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [5.0, -1.0]
- }
- },
- {
- "id": 12,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [6.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [-1.0, 1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 2,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [1.0, 1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [1.0, 0.0],
- [2.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [3.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line6",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 7,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [4.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line7",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 7,
- "bus2": 8,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, 0.0],
- [5.0, 0.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line8",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 6,
- "bus2": 9,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, 0.0],
- [3.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line9",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 9,
- "bus2": 10,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [3.0, -1.0],
- [4.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- },
- {
- "id": "line10",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 10,
- "bus2": 11,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [4.0, -1.0],
- [5.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_zy",
- "ground": "ground"
- },
- {
- "id": "line11",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 11,
- "bus2": 12,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [5.0, -1.0],
- [6.0, -1.0]
- ]
- },
- "length": 0.2,
- "params_id": "S_AL_150_z",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [10209993.930569092, 5104996.965284546],
- [10184427.504083402, 5092213.752041699],
- [10212001.154821586, 5106000.577410791]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [12043978.809777597, -4.656612873077393e-10],
- [13158161.958345288, 6579080.979172645],
- [7680405.992758585, 3840202.996379295]
- ]
- },
- {
- "id": 3,
- "bus": 8,
- "phases": "abcn",
- "powers": [
- [12809516.860629251, 6404758.430314625],
- [7390933.725022931, 3695466.8625114667],
- [11674812.395720374, 1.862645149230957e-09]
- ]
- },
- {
- "id": 4,
- "bus": 9,
- "phases": "abcn",
- "powers": [
- [9617974.845066011, 4808987.422533005],
- [9509297.777580347, 4754648.888790177],
- [9592528.112592854, 4796264.056296427]
- ]
- },
- {
- "id": 5,
- "bus": 12,
- "phases": "abcn",
- "powers": [
- [10351324.247540874, 5175662.123770438],
- [12159260.542917678, 0.0],
- [15946791.22791296, 7973395.613956487]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_z",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_zy",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.188,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.188,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.188
- ]
- ],
- [
- [
- 0.3283,
- 0.2543,
- 0.2325
- ],
- [
- 0.2543,
- 0.3283,
- 0.2543
- ],
- [
- 0.2325,
- 0.2543,
- 0.3283
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.046e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.108e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.046e-05
- ]
- ],
- [
- [
- 0.00017437,
- -7.293e-05,
- -2.099e-05
- ],
- [
- -7.293e-05,
- 0.0001847,
- -7.293e-05
- ],
- [
- -2.099e-05,
- -7.293e-05,
- 0.00017437
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, -1.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 7,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, 0.0]
+ }
+ },
+ {
+ "id": 8,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, 0.0]
+ }
+ },
+ {
+ "id": 9,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, -1.0]
+ }
+ },
+ {
+ "id": 10,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [4.0, -1.0]
+ }
+ },
+ {
+ "id": 11,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [5.0, -1.0]
+ }
+ },
+ {
+ "id": 12,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [6.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [-1.0, 1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 2,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [1.0, 1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [1.0, 0.0],
+ [2.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [3.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line6",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 7,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [4.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line7",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 7,
+ "bus2": 8,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, 0.0],
+ [5.0, 0.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line8",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 6,
+ "bus2": 9,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, 0.0],
+ [3.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line9",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 9,
+ "bus2": 10,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [3.0, -1.0],
+ [4.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ },
+ {
+ "id": "line10",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 10,
+ "bus2": 11,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [4.0, -1.0],
+ [5.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_zy",
+ "ground": "ground"
+ },
+ {
+ "id": "line11",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 11,
+ "bus2": 12,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [5.0, -1.0],
+ [6.0, -1.0]
+ ]
+ },
+ "length": 0.2,
+ "params_id": "S_AL_150_z"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [10209993.930569092, 5104996.965284546],
+ [10184427.504083402, 5092213.752041699],
+ [10212001.154821586, 5106000.577410791]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [12043978.809777597, -4.656612873077393e-10],
+ [13158161.958345288, 6579080.979172645],
+ [7680405.992758585, 3840202.996379295]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 8,
+ "phases": "abcn",
+ "powers": [
+ [12809516.860629251, 6404758.430314625],
+ [7390933.725022931, 3695466.8625114667],
+ [11674812.395720374, 1.862645149230957e-9]
+ ]
+ },
+ {
+ "id": 4,
+ "bus": 9,
+ "phases": "abcn",
+ "powers": [
+ [9617974.845066011, 4808987.422533005],
+ [9509297.777580347, 4754648.888790177],
+ [9592528.112592854, 4796264.056296427]
+ ]
+ },
+ {
+ "id": 5,
+ "bus": 12,
+ "phases": "abcn",
+ "powers": [
+ [10351324.247540874, 5175662.123770438],
+ [12159260.542917678, 0.0],
+ [15946791.22791296, 7973395.613956487]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_z",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_zy",
+ "z_line": [
+ [
+ [0.188, 0.0, 0.0],
+ [0.0, 0.188, 0.0],
+ [0.0, 0.0, 0.188]
+ ],
+ [
+ [0.3283, 0.2543, 0.2325],
+ [0.2543, 0.3283, 0.2543],
+ [0.2325, 0.2543, 0.3283]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.046e-5, 0.0, 0.0],
+ [0.0, 1.108e-5, 0.0],
+ [0.0, 0.0, 1.046e-5]
+ ],
+ [
+ [0.00017437, -7.293e-5, -2.099e-5],
+ [-7.293e-5, 0.0001847, -7.293e-5],
+ [-2.099e-5, -7.293e-5, 0.00017437]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/network_1/network_impedance.json b/roseau/load_flow/tests/data/networks/network_1/network_impedance.json
index 943393c8..fd3a99db 100644
--- a/roseau/load_flow/tests/data/networks/network_1/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/network_1/network_impedance.json
@@ -1,367 +1,237 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.25]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [-0.4, 0.25]
- }
- }
- ],
- "branches": [
- {
- "id": "tr1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.125]
- },
- "params_id": "H61_50kVA_Dyn11",
- "tap": 1.0
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [0.0, 0.5]
- ]
- },
- "length": 1.0,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "switch",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "Point",
- "coordinates": [0.2, 0.0]
- }
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-0.4, 0.25]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [5.0, 0.0],
- [15.0, 10.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [500.0, 100.0],
- [500.0, 100.0],
- [500.0, 100.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "H61_50kVA_Dyn11",
- "sn": 50000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.018000000000000002,
- "p0": 145.0,
- "psc": 1350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.25]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-0.4, 0.25]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "tr1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.125]
+ },
+ "params_id": "H61_50kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [0.0, 0.5]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "switch",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.2, 0.0]
+ }
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-0.4, 0.25]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [5.0, 0.0],
+ [15.0, 10.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [500.0, 100.0],
+ [500.0, 100.0],
+ [500.0, 100.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "H61_50kVA_Dyn11",
+ "sn": 50000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.018000000000000002,
+ "p0": 145.0,
+ "psc": 1350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/network_1/network_power.json b/roseau/load_flow/tests/data/networks/network_1/network_power.json
index b8110f5d..95b8ddc8 100644
--- a/roseau/load_flow/tests/data/networks/network_1/network_power.json
+++ b/roseau/load_flow/tests/data/networks/network_1/network_power.json
@@ -1,367 +1,237 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- },
- {
- "id": 2,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.25]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- },
- {
- "id": 4,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abc",
- "geometry": {
- "type": "Point",
- "coordinates": [-0.4, 0.25]
- }
- }
- ],
- "branches": [
- {
- "id": "tr1",
- "type": "transformer",
- "phases1": "abc",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.125]
- },
- "params_id": "H61_50kVA_Dyn11",
- "tap": 1.0
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
},
{
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [0.0, 0.5]
- ]
- },
- "length": 1.0,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "switch",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "Point",
- "coordinates": [0.2, 0.0]
- }
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abc",
- "phases2": "abc",
- "bus1": 4,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [-0.4, 0.25]
- ]
- },
- "length": 0.5,
- "params_id": "S_AL_150_sym",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [8711.474896898504, 0.0],
- [2594.04717163006, 1729.364781086707],
- [4059.8222333751887, 2029.9111166875941]
- ]
- },
- {
- "id": 2,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [256310.03712190496, 51262.00742438098],
- [256310.03712881327, 51262.00742576264],
- [256310.03712881327, 51262.0074257627]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [11547.005383792515, 0.0],
- [-5773.502691896258, -10000.000000179687],
- [-5773.502691896258, 10000.000000179687]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_sym",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003
- ]
- ],
- [
- [
- 0.328,
- 0.254,
- 0.254
- ],
- [
- 0.254,
- 0.328,
- 0.254
- ],
- [
- 0.254,
- 0.254,
- 0.328
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2.8506e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2.8506e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2.8506e-05
- ]
- ],
- [
- [
- 1.7782e-05,
- -2.2840000000000005e-06,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- 1.7782e-05,
- -2.2840000000000005e-06
- ],
- [
- -2.2840000000000005e-06,
- -2.2840000000000005e-06,
- 1.7782e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": [
- {
- "id": "H61_50kVA_Dyn11",
- "sn": 50000.0,
- "uhv": 20000.0,
- "ulv": 400.0,
- "i0": 0.018000000000000002,
- "p0": 145.0,
- "psc": 1350.0,
- "vsc": 0.04,
- "type": "dyn11"
+ "id": 2,
+ "phase": "n"
}
- ]
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.25]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abc",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-0.4, 0.25]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "tr1",
+ "type": "transformer",
+ "phases1": "abc",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.125]
+ },
+ "params_id": "H61_50kVA_Dyn11",
+ "tap": 1.0
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [0.0, 0.5]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "switch",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.2, 0.0]
+ }
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abc",
+ "phases2": "abc",
+ "bus1": 4,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [-0.4, 0.25]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "S_AL_150_sym",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [8711.474896898504, 0.0],
+ [2594.04717163006, 1729.364781086707],
+ [4059.8222333751887, 2029.9111166875941]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [256310.03712190496, 51262.00742438098],
+ [256310.03712881327, 51262.00742576264],
+ [256310.03712881327, 51262.0074257627]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [11547.005383792515, 0.0],
+ [-5773.502691896258, -10000.000000179687],
+ [-5773.502691896258, 10000.000000179687]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_sym",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.18800000000000003]
+ ],
+ [
+ [0.328, 0.254, 0.254],
+ [0.254, 0.328, 0.254],
+ [0.254, 0.254, 0.328]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2.8506e-5, 0.0, 0.0],
+ [0.0, 2.8506e-5, 0.0],
+ [0.0, 0.0, 2.8506e-5]
+ ],
+ [
+ [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6],
+ [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": [
+ {
+ "id": "H61_50kVA_Dyn11",
+ "sn": 50000.0,
+ "uhv": 20000.0,
+ "ulv": 400.0,
+ "i0": 0.018000000000000002,
+ "p0": 145.0,
+ "psc": 1350.0,
+ "vsc": 0.04,
+ "type": "dyn11"
+ }
+ ]
}
diff --git a/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json
index 9f5660f1..3deec92a 100644
--- a/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json
@@ -1,433 +1,271 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.25]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-0.4, 0.25]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 0.25]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [0.0, 0.5]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.4, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [-0.4, 0.25]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.5],
- [0.4, 0.5]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 3,
- "bus": 3,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.25]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-0.4, 0.25]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 0.25]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [0.0, 0.5]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.4, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [-0.4, 0.25]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.5],
+ [0.4, 0.5]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 3,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json b/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json
index 90fb6cbe..4d959072 100644
--- a/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json
+++ b/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json
@@ -1,433 +1,271 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.25]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.5]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [-0.4, 0.25]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.4, 0.5]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.0, 0.25]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [0.0, 0.5]
- ]
- },
- "length": 1.0,
- "params_id": "S_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [0.4, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line4",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 5,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.25],
- [-0.4, 0.25]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- },
- {
- "id": "line5",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.5],
- [0.4, 0.5]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_exact",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 1,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [3784.13906992178, 1892.0695349608898],
- [3832.6932935361037, 1916.3466467680526],
- [3894.240495272786, 1947.1202476363933]
- ]
- },
- {
- "id": 2,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [3784.13906992178, 1892.0695349608898],
- [3832.693293536103, 1916.3466467680532],
- [3894.2404952727857, 1947.1202476363922]
- ]
- },
- {
- "id": 3,
- "bus": 3,
- "phases": "abcn",
- "powers": [
- [3632.2230994219854, 1816.1115497109927],
- [3695.415813939502, 1847.7079069697513],
- [3774.1174774789292, 1887.058738739465]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2548374535443866,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.2548374535443866,
- 0.32828402771266313,
- 0.25483745354438475,
- 0.2893513764966162
- ],
- [
- 0.25483745354438475,
- 0.25483745354438475,
- 0.32828402771266313,
- 0.28935137649662
- ],
- [
- 0.2893513764966162,
- 0.2893513764966162,
- 0.28935137649662,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.883653691123443e-08,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 9.883653691123448e-08,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 9.884227445522741e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 2.1303235898335101e-07
- ]
- ],
- [
- [
- 4.88246546842203e-05,
- -1.9265213360533982e-06,
- -1.925552134660659e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.926521336053397e-06,
- 4.882465468422033e-05,
- -1.925552134660666e-06,
- -1.2027068909761439e-05
- ],
- [
- -1.925552134660659e-06,
- -1.9255521346606663e-06,
- 4.88265396812771e-05,
- -1.2028010593546635e-05
- ],
- [
- -1.2027068909761442e-05,
- -1.2027068909761439e-05,
- -1.2028010593546635e-05,
- 0.0001070929347408532
- ]
- ]
- ]
- },
- {
- "id": "S_AL_150_exact",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571429
- ]
- ],
- [
- [
- 0.32828402771266313,
- 0.2543135354137983,
- 0.23253767451076202,
- 0.25431353541379775
- ],
- [
- 0.2543135354137983,
- 0.32828402771266313,
- 0.25431353541379775,
- 0.23253767451076202
- ],
- [
- 0.23253767451076202,
- 0.25431353541379775,
- 0.32828402771266313,
- 0.2543135354137983
- ],
- [
- 0.25431353541379775,
- 0.23253767451076202,
- 0.2543135354137983,
- 0.35222736359783396
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 1.8739702458486386e-05,
- -0.0,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- 2.0220210675210224e-05,
- -0.0,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- 1.87397024584863e-05,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 1.251453341640509e-05
- ]
- ],
- [
- [
- 0.0004502863047450181,
- -7.293254163840195e-05,
- -2.098988878582756e-05,
- -4.403550001268221e-05
- ],
- [
- -7.293254163840193e-05,
- 0.0004893022525501052,
- -7.293254163839993e-05,
- -6.4336580197996484e-06
- ],
- [
- -2.0989888785827554e-05,
- -7.293254163839992e-05,
- 0.00045028630474501605,
- -4.403550001268351e-05
- ],
- [
- -4.403550001268222e-05,
- -6.433658019799651e-06,
- -4.403550001268351e-05,
- 0.00030308021498525026
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.25]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.5]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-0.4, 0.25]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.4, 0.5]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.0, 0.25]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [0.0, 0.5]
+ ]
+ },
+ "length": 1.0,
+ "params_id": "S_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [0.4, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line4",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 5,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.25],
+ [-0.4, 0.25]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ },
+ {
+ "id": "line5",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.5],
+ [0.4, 0.5]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_exact",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 1,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [3784.13906992178, 1892.0695349608898],
+ [3832.6932935361037, 1916.3466467680526],
+ [3894.240495272786, 1947.1202476363933]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [3784.13906992178, 1892.0695349608898],
+ [3832.693293536103, 1916.3466467680532],
+ [3894.2404952727857, 1947.1202476363922]
+ ]
+ },
+ {
+ "id": 3,
+ "bus": 3,
+ "phases": "abcn",
+ "powers": [
+ [3632.2230994219854, 1816.1115497109927],
+ [3695.415813939502, 1847.7079069697513],
+ [3774.1174774789292, 1887.058738739465]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162],
+ [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162],
+ [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662],
+ [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.883653691123443e-8, -0.0, -0.0, -0.0],
+ [-0.0, 9.883653691123448e-8, -0.0, -0.0],
+ [-0.0, -0.0, 9.884227445522741e-8, -0.0],
+ [-0.0, -0.0, -0.0, 2.1303235898335101e-7]
+ ],
+ [
+ [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5],
+ [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5],
+ [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5],
+ [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532]
+ ]
+ ]
+ },
+ {
+ "id": "S_AL_150_exact",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571429]
+ ],
+ [
+ [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775],
+ [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202],
+ [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983],
+ [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [1.8739702458486386e-5, -0.0, -0.0, -0.0],
+ [-0.0, 2.0220210675210224e-5, -0.0, -0.0],
+ [-0.0, -0.0, 1.87397024584863e-5, -0.0],
+ [-0.0, -0.0, -0.0, 1.251453341640509e-5]
+ ],
+ [
+ [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5],
+ [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6],
+ [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5],
+ [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json b/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json
index 981515e9..22d88dca 100644
--- a/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "test_rounded_line",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [200.0, 0.0],
- [0.0, -200.0],
- [0.0, 200.0]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "test_rounded_line",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.0
- ]
- ],
- [
- [
- 1.0,
- 0.5,
- 0.4,
- 0.3
- ],
- [
- 0.5,
- 1.0,
- 0.3,
- 0.6
- ],
- [
- 0.4,
- 0.3,
- 1.0,
- 0.7
- ],
- [
- 0.2,
- 0.6,
- 0.7,
- 1.0
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 4e-05
- ]
- ],
- [
- [
- 2e-05,
- 0.0001,
- 5e-05,
- 5e-05
- ],
- [
- 0.0001,
- 2e-05,
- 1.5e-05,
- 0.0001
- ],
- [
- 5e-05,
- 1.5e-05,
- 2e-05,
- 0.00015
- ],
- [
- 5e-05,
- 0.0001,
- 0.00015,
- 4e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "test_rounded_line",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [200.0, 0.0],
+ [0.0, -200.0],
+ [0.0, 200.0]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "test_rounded_line",
+ "z_line": [
+ [
+ [1.0, 0.0, 0.0, 0.0],
+ [0.0, 1.0, 0.0, 0.0],
+ [0.0, 0.0, 1.0, 0.0],
+ [0.0, 0.0, 0.0, 1.0]
+ ],
+ [
+ [1.0, 0.5, 0.4, 0.3],
+ [0.5, 1.0, 0.3, 0.6],
+ [0.4, 0.3, 1.0, 0.7],
+ [0.2, 0.6, 0.7, 1.0]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2e-5, 0.0, 0.0, 0.0],
+ [0.0, 2e-5, 0.0, 0.0],
+ [0.0, 0.0, 2e-5, 0.0],
+ [0.0, 0.0, 0.0, 4e-5]
+ ],
+ [
+ [2e-5, 0.0001, 5e-5, 5e-5],
+ [0.0001, 2e-5, 1.5e-5, 0.0001],
+ [5e-5, 1.5e-5, 2e-5, 0.00015],
+ [5e-5, 0.0001, 0.00015, 4e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/rounded_network/network_power.json b/roseau/load_flow/tests/data/networks/rounded_network/network_power.json
index 7b5b6167..77eb670e 100644
--- a/roseau/load_flow/tests/data/networks/rounded_network/network_power.json
+++ b/roseau/load_flow/tests/data/networks/rounded_network/network_power.json
@@ -1,197 +1,116 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "test_rounded_line",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [2580.0629575034304, 1290.0314787517152],
- [2921.8470639936513, 1460.923531996826],
- [2890.62814719932, 1445.31407359966]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [200.0, 0.0],
- [0.0, -200.0],
- [0.0, 200.0]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "test_rounded_line",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 1.0,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 1.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 1.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 1.0
- ]
- ],
- [
- [
- 1.0,
- 0.5,
- 0.4,
- 0.3
- ],
- [
- 0.5,
- 1.0,
- 0.3,
- 0.6
- ],
- [
- 0.4,
- 0.3,
- 1.0,
- 0.7
- ],
- [
- 0.2,
- 0.6,
- 0.7,
- 1.0
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 2e-05,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 2e-05,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 2e-05,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 4e-05
- ]
- ],
- [
- [
- 2e-05,
- 0.0001,
- 5e-05,
- 5e-05
- ],
- [
- 0.0001,
- 2e-05,
- 1.5e-05,
- 0.0001
- ],
- [
- 5e-05,
- 1.5e-05,
- 2e-05,
- 0.00015
- ],
- [
- 5e-05,
- 0.0001,
- 0.00015,
- 4e-05
- ]
- ]
- ]
- }
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "test_rounded_line",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [2580.0629575034304, 1290.0314787517152],
+ [2921.8470639936513, 1460.923531996826],
+ [2890.62814719932, 1445.31407359966]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [200.0, 0.0],
+ [0.0, -200.0],
+ [0.0, 200.0]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "test_rounded_line",
+ "z_line": [
+ [
+ [1.0, 0.0, 0.0, 0.0],
+ [0.0, 1.0, 0.0, 0.0],
+ [0.0, 0.0, 1.0, 0.0],
+ [0.0, 0.0, 0.0, 1.0]
+ ],
+ [
+ [1.0, 0.5, 0.4, 0.3],
+ [0.5, 1.0, 0.3, 0.6],
+ [0.4, 0.3, 1.0, 0.7],
+ [0.2, 0.6, 0.7, 1.0]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [2e-5, 0.0, 0.0, 0.0],
+ [0.0, 2e-5, 0.0, 0.0],
+ [0.0, 0.0, 2e-5, 0.0],
+ [0.0, 0.0, 0.0, 4e-5]
+ ],
+ [
+ [2e-5, 0.0001, 5e-5, 5e-5],
+ [0.0001, 2e-5, 1.5e-5, 0.0001],
+ [5e-5, 1.5e-5, 2e-5, 0.00015],
+ [5e-5, 0.0001, 0.00015, 4e-5]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch/network_impedance.json b/roseau/load_flow/tests/data/networks/switch/network_impedance.json
index 919fb2bb..e7e1ca93 100644
--- a/roseau/load_flow/tests/data/networks/switch/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/switch/network_impedance.json
@@ -1,78 +1,78 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.5, 0.0]
- }
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.5, 0.0]
+ }
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch/network_power.json b/roseau/load_flow/tests/data/networks/switch/network_power.json
index 55d01234..c117aeea 100644
--- a/roseau/load_flow/tests/data/networks/switch/network_power.json
+++ b/roseau/load_flow/tests/data/networks/switch/network_power.json
@@ -1,78 +1,78 @@
{
- "version": 1,
- "grounds": [
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
{
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
+ "id": 1,
+ "phase": "n"
}
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- }
- ],
- "branches": [
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "Point",
- "coordinates": [0.5, 0.0]
- }
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 2,
- "phases": "abcn",
- "powers": [
- [4266.666666666668, 2133.333333333334],
- [4266.666675649767, 2133.3333378248835],
- [4266.666675649767, 2133.3333378248835]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.5, 0.0]
+ }
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 2,
+ "phases": "abcn",
+ "powers": [
+ [4266.666666666668, 2133.333333333334],
+ [4266.666675649767, 2133.3333378248835],
+ [4266.666675649767, 2133.3333378248835]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json b/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json
index e471c7a0..fb0bb28f 100644
--- a/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json
@@ -1,309 +1,228 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [1.5, 0.0]
- }
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch2",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 5,
- "geometry": {
- "type": "Point",
- "coordinates": [2.5, 0.0]
- }
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 6,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.5, 0.0]
+ }
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch2",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 5,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.5, 0.0]
+ }
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 6,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch_2/network_power.json b/roseau/load_flow/tests/data/networks/switch_2/network_power.json
index 34b81719..318d6ae2 100644
--- a/roseau/load_flow/tests/data/networks/switch_2/network_power.json
+++ b/roseau/load_flow/tests/data/networks/switch_2/network_power.json
@@ -1,309 +1,228 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [1.5, 0.0]
- }
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch2",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 5,
- "geometry": {
- "type": "Point",
- "coordinates": [2.5, 0.0]
- }
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 6,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [3974.9996426948624, 1987.4998213474314],
- [3974.999651063881, 1987.4998255319404],
- [3974.9996510638803, 1987.4998255319404]
- ]
- },
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [4046.781785147598, 2023.3908925737978],
- [4046.7817936677493, 2023.3908968338749],
- [4046.7817936677493, 2023.3908968338735]
- ]
- },
- {
- "id": 2,
- "bus": 6,
- "phases": "abcn",
- "powers": [
- [3974.9996426948665, 1987.4998213474332],
- [3974.9996510638844, 1987.4998255319422],
- [3974.999651063884, 1987.4998255319417]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.5, 0.0]
+ }
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch2",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 5,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.5, 0.0]
+ }
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 6,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [3974.9996426948624, 1987.4998213474314],
+ [3974.999651063881, 1987.4998255319404],
+ [3974.9996510638803, 1987.4998255319404]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [4046.781785147598, 2023.3908925737978],
+ [4046.7817936677493, 2023.3908968338749],
+ [4046.7817936677493, 2023.3908968338735]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 6,
+ "phases": "abcn",
+ "powers": [
+ [3974.9996426948665, 1987.4998213474332],
+ [3974.9996510638844, 1987.4998255319422],
+ [3974.999651063884, 1987.4998255319417]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json b/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json
index 53a91905..6aada42d 100644
--- a/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json
+++ b/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json
@@ -1,309 +1,228 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [1.5, 0.0]
- }
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch2",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [2.5, 0.0]
- }
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 4,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- },
- {
- "id": 2,
- "bus": 6,
- "phases": "abcn",
- "impedances": [
- [10.0, 5.0],
- [10.0, 5.0],
- [10.0, 5.0]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.5, 0.0]
+ }
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch2",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.5, 0.0]
+ }
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 4,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 6,
+ "phases": "abcn",
+ "impedances": [
+ [10.0, 5.0],
+ [10.0, 5.0],
+ [10.0, 5.0]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/data/networks/switch_3/network_power.json b/roseau/load_flow/tests/data/networks/switch_3/network_power.json
index d95f008c..d22016bc 100644
--- a/roseau/load_flow/tests/data/networks/switch_3/network_power.json
+++ b/roseau/load_flow/tests/data/networks/switch_3/network_power.json
@@ -1,309 +1,228 @@
{
- "version": 1,
- "grounds": [
- {
- "id": "ground",
- "buses": [
- {
- "id": 1,
- "phase": "n"
- }
- ]
- }
- ],
- "potential_refs": [
- {
- "id": "pref",
- "ground": "ground"
- }
- ],
- "buses": [
- {
- "id": 1,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [0.0, 0.0]
- }
- },
- {
- "id": 2,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [1.0, 0.0]
- }
- },
- {
- "id": 3,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 0.0]
- }
- },
- {
- "id": 4,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, 1.0]
- }
- },
- {
- "id": 5,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [3.0, 0.0]
- }
- },
- {
- "id": 6,
- "phases": "abcn",
- "geometry": {
- "type": "Point",
- "coordinates": [2.0, -1.0]
- }
- }
- ],
- "branches": [
- {
- "id": "line1",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 1,
- "bus2": 2,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [0.0, 0.0],
- [1.0, 0.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch1",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 2,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [1.5, 0.0]
- }
- },
- {
- "id": "line2",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 3,
- "bus2": 4,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, 1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- },
- {
- "id": "switch2",
- "type": "switch",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 5,
- "bus2": 3,
- "geometry": {
- "type": "Point",
- "coordinates": [2.5, 0.0]
- }
- },
- {
- "id": "line3",
- "type": "line",
- "phases1": "abcn",
- "phases2": "abcn",
- "bus1": 6,
- "bus2": 3,
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [2.0, 0.0],
- [2.0, -1.0]
- ]
- },
- "length": 0.5,
- "params_id": "A_AL_150_sym_neutral",
- "ground": "ground"
- }
- ],
- "loads": [
- {
- "id": 0,
- "bus": 4,
- "phases": "abcn",
- "powers": [
- [3974.9996426948624, 1987.4998213474314],
- [3974.999651063881, 1987.4998255319404],
- [3974.9996510638803, 1987.4998255319404]
- ]
- },
- {
- "id": 1,
- "bus": 5,
- "phases": "abcn",
- "powers": [
- [4046.781785147598, 2023.3908925737978],
- [4046.7817936677493, 2023.3908968338749],
- [4046.7817936677493, 2023.3908968338735]
- ]
- },
- {
- "id": 2,
- "bus": 6,
- "phases": "abcn",
- "powers": [
- [3974.9996426948665, 1987.4998213474332],
- [3974.9996510638844, 1987.4998255319422],
- [3974.999651063884, 1987.4998255319417]
- ]
- }
- ],
- "sources": [
- {
- "id": 1,
- "bus": 1,
- "phases": "abcn",
- "voltages": [
- [230.94010767585033, 0.0],
- [-115.47005383792516, -200.00000028072188],
- [-115.47005383792516, 200.00000028072188]
- ]
- }
- ],
- "lines_params": [
- {
- "id": "A_AL_150_sym_neutral",
- "model": "zy_neutral",
- "z_line": [
- [
- [
- 0.18800000000000003,
- 0.0,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.18800000000000003,
- 0.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.18800000000000003,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 0.0,
- 0.4028571428571428
- ]
- ],
- [
- [
- 0.3282840277126631,
- 0.25483745354438536,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.3282840277126631,
- 0.25483745354438536,
- 0.2893513764966174
- ],
- [
- 0.25483745354438536,
- 0.25483745354438536,
- 0.3282840277126631,
- 0.2893513764966174
- ],
- [
- 0.2893513764966174,
- 0.2893513764966174,
- 0.2893513764966174,
- 0.3522273635978339
- ]
- ]
- ],
- "y_shunt": [
- [
- [
- 9.88384494258988e-08,
- 0.0,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 9.88384494258988e-08,
- 0.0,
- -0.0
- ],
- [
- 0.0,
- 0.0,
- 9.88384494258988e-08,
- -0.0
- ],
- [
- -0.0,
- -0.0,
- -0.0,
- 0.0
- ]
- ],
- [
- [
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.9258752017915745e-06,
- -1.2027382804356504e-05
- ],
- [
- -1.9258752017915745e-06,
- -1.9258752017915745e-06,
- 4.882528301657259e-05,
- -1.2027382804356504e-05
- ],
- [
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- -1.2027382804356504e-05,
- 0.0001070929347408
- ]
- ]
- ]
+ "version": 1,
+ "grounds": [
+ {
+ "id": "ground",
+ "buses": [
+ {
+ "id": 1,
+ "phase": "n"
}
- ],
- "transformers_params": []
+ ]
+ }
+ ],
+ "potential_refs": [
+ {
+ "id": "pref",
+ "ground": "ground"
+ }
+ ],
+ "buses": [
+ {
+ "id": 1,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [0.0, 0.0]
+ }
+ },
+ {
+ "id": 2,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.0, 0.0]
+ }
+ },
+ {
+ "id": 3,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 0.0]
+ }
+ },
+ {
+ "id": 4,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, 1.0]
+ }
+ },
+ {
+ "id": 5,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.0, 0.0]
+ }
+ },
+ {
+ "id": 6,
+ "phases": "abcn",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.0, -1.0]
+ }
+ }
+ ],
+ "branches": [
+ {
+ "id": "line1",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 1,
+ "bus2": 2,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [0.0, 0.0],
+ [1.0, 0.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch1",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 2,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [1.5, 0.0]
+ }
+ },
+ {
+ "id": "line2",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 3,
+ "bus2": 4,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, 1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ },
+ {
+ "id": "switch2",
+ "type": "switch",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 5,
+ "bus2": 3,
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.5, 0.0]
+ }
+ },
+ {
+ "id": "line3",
+ "type": "line",
+ "phases1": "abcn",
+ "phases2": "abcn",
+ "bus1": 6,
+ "bus2": 3,
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [2.0, 0.0],
+ [2.0, -1.0]
+ ]
+ },
+ "length": 0.5,
+ "params_id": "A_AL_150_sym_neutral",
+ "ground": "ground"
+ }
+ ],
+ "loads": [
+ {
+ "id": 0,
+ "bus": 4,
+ "phases": "abcn",
+ "powers": [
+ [3974.9996426948624, 1987.4998213474314],
+ [3974.999651063881, 1987.4998255319404],
+ [3974.9996510638803, 1987.4998255319404]
+ ]
+ },
+ {
+ "id": 1,
+ "bus": 5,
+ "phases": "abcn",
+ "powers": [
+ [4046.781785147598, 2023.3908925737978],
+ [4046.7817936677493, 2023.3908968338749],
+ [4046.7817936677493, 2023.3908968338735]
+ ]
+ },
+ {
+ "id": 2,
+ "bus": 6,
+ "phases": "abcn",
+ "powers": [
+ [3974.9996426948665, 1987.4998213474332],
+ [3974.9996510638844, 1987.4998255319422],
+ [3974.999651063884, 1987.4998255319417]
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "id": 1,
+ "bus": 1,
+ "phases": "abcn",
+ "voltages": [
+ [230.94010767585033, 0.0],
+ [-115.47005383792516, -200.00000028072188],
+ [-115.47005383792516, 200.00000028072188]
+ ]
+ }
+ ],
+ "lines_params": [
+ {
+ "id": "A_AL_150_sym_neutral",
+ "z_line": [
+ [
+ [0.18800000000000003, 0.0, 0.0, 0.0],
+ [0.0, 0.18800000000000003, 0.0, 0.0],
+ [0.0, 0.0, 0.18800000000000003, 0.0],
+ [0.0, 0.0, 0.0, 0.4028571428571428]
+ ],
+ [
+ [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174],
+ [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174],
+ [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339]
+ ]
+ ],
+ "y_shunt": [
+ [
+ [9.88384494258988e-8, 0.0, 0.0, -0.0],
+ [0.0, 9.88384494258988e-8, 0.0, -0.0],
+ [0.0, 0.0, 9.88384494258988e-8, -0.0],
+ [-0.0, -0.0, -0.0, 0.0]
+ ],
+ [
+ [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5],
+ [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5],
+ [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408]
+ ]
+ ]
+ }
+ ],
+ "transformers_params": []
}
diff --git a/roseau/load_flow/tests/test_electrical_network.py b/roseau/load_flow/tests/test_electrical_network.py
index 00276b07..33331316 100644
--- a/roseau/load_flow/tests/test_electrical_network.py
+++ b/roseau/load_flow/tests/test_electrical_network.py
@@ -1,4 +1,5 @@
import itertools as it
+import re
import warnings
from contextlib import contextmanager
from urllib.parse import urljoin
@@ -14,6 +15,7 @@
from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode
from roseau.load_flow.models import (
Bus,
+ FlexibleParameter,
Ground,
Line,
LineParameters,
@@ -26,6 +28,7 @@
)
from roseau.load_flow.network import _PHASE_DTYPE, _VOLTAGE_PHASES_DTYPE, ElectricalNetwork
from roseau.load_flow.units import Q_
+from roseau.load_flow.utils import console
@pytest.fixture()
@@ -95,7 +98,7 @@ def single_phase_network() -> ElectricalNetwork:
)
-@pytest.fixture
+@pytest.fixture()
def good_json_results() -> dict:
return {
"info": {
@@ -209,7 +212,7 @@ def test_connect_and_disconnect():
assert load.bus is None
with pytest.raises(RoseauLoadFlowException) as e:
load.to_dict()
- assert e.value.args[0] == "The load 'power load' is disconnected and can not be used anymore."
+ assert e.value.args[0] == "The load 'power load' is disconnected and cannot be used anymore."
assert e.value.args[1] == RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT
new_load = PowerLoad(id="power load", phases="abcn", bus=load_bus, powers=[100 + 0j, 100 + 0j, 100 + 0j])
assert new_load.network == en
@@ -221,7 +224,7 @@ def test_connect_and_disconnect():
assert vs.bus is None
with pytest.raises(RoseauLoadFlowException) as e:
vs.to_dict()
- assert e.value.args[0] == "The voltage source 'vs' is disconnected and can not be used anymore."
+ assert e.value.args[0] == "The voltage source 'vs' is disconnected and cannot be used anymore."
assert e.value.args[1] == RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT
# Bad key
@@ -242,7 +245,7 @@ def test_connect_and_disconnect():
en._disconnect_element(line)
assert (
e.value.msg
- == "Line(id='line', phases1='abcn', phases2='abcn', bus1='source', bus2='load bus') is a Line and it can not "
+ == "Line(id='line', phases1='abcn', phases2='abcn', bus1='source', bus2='load bus') is a Line and it cannot "
"be disconnected from a network."
)
assert e.value.code == RoseauLoadFlowExceptionCode.BAD_ELEMENT_OBJECT
@@ -447,7 +450,7 @@ def test_bad_networks():
# No potential reference
bus3 = Bus("bus3", phases="abcn")
tp = TransformerParameters(
- "t", windings="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100
+ "t", type="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100
)
t = Transformer("transfo", bus2, bus3, parameters=tp)
with pytest.raises(RoseauLoadFlowException) as e:
@@ -608,17 +611,19 @@ def test_solve_load_flow_error(small_network):
# Parse RLF error
json_result = {"msg": "toto", "code": "roseau.load_flow.bad_branch_type"}
- with requests_mock.Mocker() as m, pytest.raises(RoseauLoadFlowException) as e:
+ with requests_mock.Mocker() as m:
m.post(solve_url, status_code=400, json=json_result, headers={"content-type": "application/json"})
- small_network.solve_load_flow(auth=("", ""))
+ with pytest.raises(RoseauLoadFlowException) as e:
+ small_network.solve_load_flow(auth=("", ""))
assert e.value.msg == json_result["msg"]
assert e.value.code == RoseauLoadFlowExceptionCode.BAD_BRANCH_TYPE
# Load flow error (other than official exceptions of RoseauLoadFlowException)
json_result = {"msg": "Error while solving the load flow", "code": "load_flow_error"}
- with requests_mock.Mocker() as m, pytest.raises(RoseauLoadFlowException) as e:
+ with requests_mock.Mocker() as m:
m.post(solve_url, status_code=400, json=json_result, headers={"content-type": "application/json"})
- small_network.solve_load_flow(auth=("", ""))
+ with pytest.raises(RoseauLoadFlowException) as e:
+ small_network.solve_load_flow(auth=("", ""))
assert json_result["msg"] in e.value.msg
assert e.value.code == RoseauLoadFlowExceptionCode.BAD_REQUEST
@@ -854,6 +859,58 @@ def test_single_phase_network(single_phase_network: ElectricalNetwork):
)
.set_index(["branch_id", "phase"]),
)
+ # Lines results
+ expected_res_lines = (
+ pd.DataFrame.from_records(
+ [
+ {
+ "line_id": "line",
+ "phase": "b",
+ "current1": 0.005000025000117603 + 0j,
+ "current2": -0.005000025000117603 - 0j,
+ "power1": (19999.94999975 + 0j) * (0.005000025000117603 + 0j).conjugate(),
+ "power2": (19999.899999499998 + 0j) * (-0.005000025000117603 - 0j).conjugate(),
+ "potential1": 19999.94999975 + 0j,
+ "potential2": 19999.899999499998 + 0j,
+ "series_losses": (
+ (19999.94999975 + 0j) * (0.005000025000117603 + 0j).conjugate()
+ + (19999.899999499998 + 0j) * (-0.005000025000117603 - 0j).conjugate()
+ ),
+ "series_current": 0.005000025000117603 + 0j,
+ },
+ {
+ "line_id": "line",
+ "phase": "n",
+ "current1": -0.005000025000125 + 0j,
+ "current2": 0.005000025000125 - 0j,
+ "power1": (-0.050000250001249996 + 0j) * (-0.005000025000125 + 0j).conjugate(),
+ "power2": (0j) * (0.005000025000125 - 0j).conjugate(),
+ "potential1": -0.050000250001249996 + 0j,
+ "potential2": 0j,
+ "series_losses": (
+ (-0.050000250001249996 + 0j) * (-0.005000025000125 + 0j).conjugate()
+ + (0j) * (0.005000025000125 - 0j).conjugate()
+ ),
+ "series_current": -0.005000025000125 + 0j,
+ },
+ ]
+ )
+ .astype(
+ {
+ "phase": _PHASE_DTYPE,
+ "current1": complex,
+ "current2": complex,
+ "power1": complex,
+ "power2": complex,
+ "potential1": complex,
+ "potential2": complex,
+ "series_losses": complex,
+ "series_current": complex,
+ }
+ )
+ .set_index(["line_id", "phase"])
+ )
+ pd.testing.assert_frame_equal(single_phase_network.res_lines, expected_res_lines)
# Loads results
pd.testing.assert_frame_equal(
single_phase_network.res_loads,
@@ -1211,6 +1268,44 @@ def set_index_dtype(df, dtype):
)
assert_frame_equal(small_network.res_potential_refs, expected_res_potential_refs)
+ # No flexible loads
+ assert small_network.res_loads_flexible_powers.empty
+
+ # Let's add a flexible load
+ fp = FlexibleParameter.p_max_u_consumption(u_min=16000, u_down=17000, s_max=1000)
+ load = small_network.loads["load"]
+ assert isinstance(load, PowerLoad)
+ load._flexible_params = [fp, fp, fp]
+ good_json_results = good_json_results.copy()
+ good_json_results["loads"][0]["powers"] = [
+ [99.99999999999994, 0.0],
+ [99.99999999999994, 0.0],
+ [99.99999999999994, 0.0],
+ ]
+ small_network.results_from_dict(good_json_results)
+ expected_res_flex_powers = pd.DataFrame.from_records(
+ [
+ {
+ "load_id": "load",
+ "phase": "an",
+ "power": 99.99999999999994 + 0j,
+ },
+ {
+ "load_id": "load",
+ "phase": "bn",
+ "power": 99.99999999999994 + 0j,
+ },
+ {
+ "load_id": "load",
+ "phase": "cn",
+ "power": 99.99999999999994 + 0j,
+ },
+ ],
+ index=["load_id", "phase"],
+ )
+ set_index_dtype(expected_res_flex_powers, _VOLTAGE_PHASES_DTYPE)
+ assert_frame_equal(small_network.res_loads_flexible_powers, expected_res_flex_powers, rtol=1e-4)
+
def test_solver_warm_start(small_network: ElectricalNetwork, good_json_results):
load: PowerLoad = small_network.loads["load"]
@@ -1294,3 +1389,154 @@ def json_callback(request, context):
assert not small_network._results_valid
small_network.solve_load_flow(auth=("", ""), warm_start=True)
assert small_network.results_to_dict() == good_json_results
+
+
+def test_short_circuits():
+ vn = 400 / np.sqrt(3)
+ voltages = [vn, vn * np.exp(-2 / 3 * np.pi * 1j), vn * np.exp(2 / 3 * np.pi * 1j)]
+ bus = Bus("bus", phases="abcn")
+ bus.add_short_circuit("a", "n")
+ _ = VoltageSource(id="vs", bus=bus, voltages=voltages)
+ _ = PotentialRef(id="pref", element=bus)
+ en = ElectricalNetwork.from_element(initial_bus=bus)
+ df = pd.DataFrame.from_records(
+ data=[("bus", "abcn", "an", None)],
+ columns=["bus_id", "phases", "short_circuit", "ground"],
+ )
+ assert_frame_equal(en.short_circuits_frame, df)
+
+ assert bus.short_circuits
+ en.clear_short_circuits()
+ assert not bus.short_circuits
+
+
+def test_catalogue_data():
+ # The catalogue data path exists
+ catalogue_path = ElectricalNetwork.catalogue_path()
+ assert catalogue_path.exists()
+
+ # Read it and copy it
+ catalogue_data = ElectricalNetwork.catalogue_data().copy()
+
+ # Iterate over the folder and ensure that the elements are in the catalogue data
+ error_message = (
+ "Something changed in the network catalogue. Please regenerate the Catalogue.json file for the "
+ "network catalogues by using the python file `scripts/generate_network_catalogue_data.py`."
+ )
+ for p in catalogue_path.glob("*.json"):
+ if p.stem == "Catalogue":
+ continue
+
+ # Check that the network exists in the catalogue data
+ network_name, load_point_name = p.stem.split("_")
+ assert network_name in catalogue_data, error_message
+
+ # Check the counts
+ en = ElectricalNetwork.from_json(p)
+ c_data = catalogue_data[network_name]
+ assert len(c_data) == 7
+ assert c_data["nb_buses"] == len(en.buses)
+ assert c_data["nb_branches"] == len(en.branches)
+ assert c_data["nb_loads"] == len(en.loads)
+ assert c_data["nb_sources"] == len(en.sources)
+ assert c_data["nb_grounds"] == len(en.grounds)
+ assert c_data["nb_potential_refs"] == len(en.potential_refs)
+
+ # Check the load point
+ remaining_load_points: list[str] = c_data["load_points"]
+ assert load_point_name in remaining_load_points, error_message
+ remaining_load_points.remove(load_point_name)
+ if not remaining_load_points:
+ catalogue_data.pop(network_name)
+
+ # At the end of the process, the copy of the catalogue data should be empty
+ assert len(catalogue_data) == 0, error_message
+
+
+def test_from_catalogue():
+ # Unknown network name
+ with pytest.raises(RoseauLoadFlowException) as e:
+ ElectricalNetwork.from_catalogue(name="unknown", load_point_name="winter")
+ assert (
+ e.value.args[0]
+ == "No network matching the name 'unknown' has been found. Please look at the catalogue using the "
+ "`print_catalogue` class method."
+ )
+ assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND
+
+ # Unknown load point name
+ with pytest.raises(RoseauLoadFlowException) as e:
+ ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name="unknown")
+ assert (
+ e.value.args[0]
+ == "No load point matching the name 'unknown' has been found for the network 'MVFeeder004'. Available "
+ "load points are 'Summer', 'Winter'."
+ )
+ assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND
+
+ # Several network name matched
+ with pytest.raises(RoseauLoadFlowException) as e:
+ ElectricalNetwork.from_catalogue(name="MVFeeder", load_point_name="winter")
+ assert e.value.args[0] == (
+ "Several networks matching the name 'MVFeeder' have been found: 'MVFeeder004', "
+ "'MVFeeder011', 'MVFeeder015', 'MVFeeder032', 'MVFeeder041', 'MVFeeder063', 'MVFeeder078', 'MVFeeder115', "
+ "'MVFeeder128', 'MVFeeder151', 'MVFeeder159', 'MVFeeder176', 'MVFeeder210', 'MVFeeder217', 'MVFeeder232',"
+ " 'MVFeeder251', 'MVFeeder290', 'MVFeeder312', 'MVFeeder320', 'MVFeeder339'."
+ )
+ assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND
+
+ # Several load point name matched
+ with pytest.raises(RoseauLoadFlowException) as e:
+ ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name=r".*")
+ assert e.value.args[0] == (
+ "Several load points matching the name '.*' have been found for the network 'MVFeeder004': 'Summer', 'Winter'."
+ )
+ assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND
+
+ # Both known
+ ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name="winter")
+
+
+def test_print_catalogue():
+ # Print the entire catalogue
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue()
+ assert len(capture.get().split("\n")) == 88
+
+ # Filter on the network name
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name="MV")
+ assert len(capture.get().split("\n")) == 48
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name=re.compile(r"^MV"))
+ assert len(capture.get().split("\n")) == 48
+
+ # Filter on the load point name
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(load_point_name="winter")
+ assert len(capture.get().split("\n")) == 88
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(load_point_name=re.compile(r"^Winter"))
+ assert len(capture.get().split("\n")) == 88
+
+ # Filter on both
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name="MV", load_point_name="winter")
+ assert len(capture.get().split("\n")) == 48
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name="MV", load_point_name=re.compile(r"^Winter"))
+ assert len(capture.get().split("\n")) == 48
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name=re.compile(r"^MV"), load_point_name="winter")
+ assert len(capture.get().split("\n")) == 48
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name=re.compile(r"^MV"), load_point_name=re.compile(r"^Winter"))
+ assert len(capture.get().split("\n")) == 48
+
+ # Regexp error
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(name=r"^MV[0-")
+ assert len(capture.get().split("\n")) == 2
+ with console.capture() as capture:
+ ElectricalNetwork.print_catalogue(load_point_name=r"^winter[0-]")
+ assert len(capture.get().split("\n")) == 3
diff --git a/roseau/load_flow/units.py b/roseau/load_flow/units.py
index eb7be73f..07c774ba 100644
--- a/roseau/load_flow/units.py
+++ b/roseau/load_flow/units.py
@@ -11,15 +11,32 @@
.. _pint: https://pint.readthedocs.io/en/stable/getting/overview.html
"""
-from pint import UnitRegistry
+from collections.abc import Callable, Iterable
+from typing import TYPE_CHECKING, TypeVar, Union
-ureg = UnitRegistry(
+from pint import Unit, UnitRegistry
+from pint.facets.plain import PlainQuantity
+from typing_extensions import TypeAlias
+
+T = TypeVar("T")
+FuncT = TypeVar("FuncT", bound=Callable)
+
+ureg: UnitRegistry = UnitRegistry(
preprocessors=[
lambda s: s.replace("%", " percent "),
]
)
-Q_ = ureg.Quantity
+if TYPE_CHECKING:
+ Q_: TypeAlias = PlainQuantity[T]
+else:
+ Q_ = ureg.Quantity
+ Q_.__class_getitem__ = lambda cls, *args: cls
+
-# Define the percent unit
-ureg.define("percent = 0.01 = %")
+def ureg_wraps(
+ ret: Union[str, Unit, None, Iterable[Union[str, Unit, None]]],
+ args: Union[str, Unit, None, Iterable[Union[str, Unit, None]]],
+ strict: bool = True,
+) -> Callable[[FuncT], FuncT]:
+ return ureg.wraps(ret, args, strict)
diff --git a/roseau/load_flow/utils/__init__.py b/roseau/load_flow/utils/__init__.py
index 3dcc783c..99e7cb65 100644
--- a/roseau/load_flow/utils/__init__.py
+++ b/roseau/load_flow/utils/__init__.py
@@ -1,9 +1,10 @@
"""
This module contains utility classes and functions for Roseau Load Flow.
"""
+from roseau.load_flow.utils.console import console
from roseau.load_flow.utils.constants import CX, DELTA_P, EPSILON_0, EPSILON_R, MU_0, MU_R, OMEGA, PI, RHO, TAN_D, F
-from roseau.load_flow.utils.mixins import Identifiable, JsonMixin
-from roseau.load_flow.utils.types import BranchType, ConductorType, InsulationType, LineModel, LineType, TransformerType
+from roseau.load_flow.utils.mixins import CatalogueMixin, Identifiable, JsonMixin
+from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType
__all__ = [
# Constants
@@ -21,11 +22,11 @@
# Mixins
"Identifiable",
"JsonMixin",
+ "CatalogueMixin",
# Types
"LineType",
- "LineModel",
"ConductorType",
- "InsulationType",
- "BranchType",
- "TransformerType",
+ "InsulatorType",
+ # Console
+ "console",
]
diff --git a/roseau/load_flow/utils/console.py b/roseau/load_flow/utils/console.py
new file mode 100644
index 00000000..a9463afd
--- /dev/null
+++ b/roseau/load_flow/utils/console.py
@@ -0,0 +1,3 @@
+from rich.console import Console
+
+console = Console()
diff --git a/roseau/load_flow/utils/constants.py b/roseau/load_flow/utils/constants.py
index a0802302..eae33041 100644
--- a/roseau/load_flow/utils/constants.py
+++ b/roseau/load_flow/utils/constants.py
@@ -1,16 +1,16 @@
import numpy as np
from roseau.load_flow.units import Q_
-from roseau.load_flow.utils.types import ConductorType, InsulationType, LineType
+from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType
PI = np.pi
"""The famous constant :math:`\\pi`."""
-MU_0 = Q_(4 * PI * 1e-7, "H/m")
-"""magnetic permeability of the vacuum (H/m)."""
+MU_0 = Q_(1.25663706212e-6, "H/m")
+"""Magnetic permeability of the vacuum (H/m)."""
-EPSILON_0 = Q_(1e-9 / (36 * PI), "F/m")
-"""Relative permittivity of the vacuum (F/m)."""
+EPSILON_0 = Q_(8.8541878128e-12, "F/m")
+"""Permittivity of the vacuum (F/m)."""
F = Q_(50.0, "Hz")
"""Network frequency :math:`=50` (Hz)."""
@@ -25,7 +25,7 @@
ConductorType.AA: Q_(4.0587e-8, "ohm*m"),
ConductorType.LA: Q_(3.26e-8, "ohm*m"),
}
-"""Resistivity of certain conductor materials (ohm.m)."""
+"""Resistivity of common conductor materials (ohm.m)."""
CX = {
LineType.OVERHEAD: Q_(0.35, "ohm/km"),
@@ -41,7 +41,7 @@
ConductorType.AA: np.nan, # TODO
ConductorType.LA: np.nan, # TODO
}
-"""Magnetic permeability of certain conductor materials (H/m)."""
+"""Magnetic permeability of common conductor materials (H/m)."""
DELTA_P = {
ConductorType.CU: Q_(9.3, "mm"),
@@ -50,22 +50,22 @@
ConductorType.AA: np.nan, # TODO
ConductorType.LA: np.nan, # TODO
}
-"""Skin effect of certain conductor materials (mm)."""
+"""Skin effect of common conductor materials (mm)."""
TAN_D = {
- InsulationType.PVC: Q_(600e-4),
- InsulationType.HDPE: Q_(6e-4),
- InsulationType.LDPE: Q_(6e-4),
- InsulationType.PEX: Q_(30e-4),
- InsulationType.EPR: Q_(125e-4),
+ InsulatorType.PVC: Q_(600e-4),
+ InsulatorType.HDPE: Q_(6e-4),
+ InsulatorType.LDPE: Q_(6e-4),
+ InsulatorType.PEX: Q_(30e-4),
+ InsulatorType.EPR: Q_(125e-4),
}
-"""Loss angles of certain insulation materials."""
+"""Loss angles of common insulator materials."""
EPSILON_R = {
- InsulationType.PVC: Q_(6.5),
- InsulationType.HDPE: Q_(2.3),
- InsulationType.LDPE: Q_(2.2),
- InsulationType.PEX: Q_(2.5),
- InsulationType.EPR: Q_(3.1),
+ InsulatorType.PVC: Q_(6.5),
+ InsulatorType.HDPE: Q_(2.3),
+ InsulatorType.LDPE: Q_(2.2),
+ InsulatorType.PEX: Q_(2.5),
+ InsulatorType.EPR: Q_(3.1),
}
-"""Relative permittivity of certain insulation materials."""
+"""Relative permittivity of common insulator materials."""
diff --git a/roseau/load_flow/utils/mixins.py b/roseau/load_flow/utils/mixins.py
index 79bf141a..6e5c82d7 100644
--- a/roseau/load_flow/utils/mixins.py
+++ b/roseau/load_flow/utils/mixins.py
@@ -3,7 +3,7 @@
import re
from abc import ABCMeta, abstractmethod
from pathlib import Path
-from typing import Any
+from typing import Generic, TypeVar
from typing_extensions import Self
@@ -12,6 +12,8 @@
logger = logging.getLogger(__name__)
+_T = TypeVar("_T")
+
class Identifiable(metaclass=ABCMeta):
"""An identifiable object."""
@@ -32,7 +34,7 @@ class JsonMixin(metaclass=ABCMeta):
@classmethod
@abstractmethod
- def from_dict(cls, data: JsonDict, *args: Any) -> Self:
+ def from_dict(cls, data: JsonDict) -> Self:
"""Create an element from a dictionary."""
raise NotImplementedError
@@ -51,8 +53,13 @@ def from_json(cls, path: StrPath) -> Self:
return cls.from_dict(data=data)
@abstractmethod
- def to_dict(self) -> JsonDict:
- """Return the element information as a dictionary format."""
+ def to_dict(self, include_geometry: bool = True) -> JsonDict:
+ """Return the element information as a dictionary format.
+
+ Args:
+ include_geometry:
+ If False, the geometry will not be added to the result dictionary.
+ """
raise NotImplementedError
def to_json(self, path: StrPath) -> Path:
@@ -75,7 +82,7 @@ def to_json(self, path: StrPath) -> Path:
The expanded and resolved path of the written file.
"""
res = self.to_dict()
- output = json.dumps(res, ensure_ascii=False, indent=4)
+ output = json.dumps(res, ensure_ascii=False, indent=2)
output = re.sub(r"\[\s+(.*),\s+(.*)\s+]", r"[\1, \2]", output)
if not output.endswith("\n"):
output += "\n"
@@ -136,3 +143,42 @@ def results_from_json(self, path: StrPath) -> None:
"""
data = json.loads(Path(path).read_text())
self.results_from_dict(data)
+
+
+class CatalogueMixin(Generic[_T], metaclass=ABCMeta):
+ """A mixin class for objects which can be built from a catalogue. It adds the `from_catalogue` class method."""
+
+ @classmethod
+ @abstractmethod
+ def catalogue_path(cls) -> Path:
+ """Get the path to the catalogue."""
+ raise NotImplementedError
+
+ @classmethod
+ @abstractmethod
+ def catalogue_data(cls) -> _T:
+ """Get the catalogue data."""
+ raise NotImplementedError
+
+ @classmethod
+ @abstractmethod
+ def from_catalogue(cls, **kwargs) -> Self:
+ """Build an instance from the catalogue.
+
+ Keyword Args:
+ Arguments that can be used to select the options of the instance to create.
+
+ Returns:
+ The instance of the selected object.
+ """
+ raise NotImplementedError
+
+ @classmethod
+ @abstractmethod
+ def print_catalogue(cls, **kwargs) -> None:
+ """Print the catalogue.
+
+ Keyword Args:
+ Arguments that can be used to filter the printed part of the catalogue.
+ """
+ raise NotImplementedError
diff --git a/roseau/load_flow/utils/tests/test_constants.py b/roseau/load_flow/utils/tests/test_constants.py
index f50df1fa..db6fbfdc 100644
--- a/roseau/load_flow/utils/tests/test_constants.py
+++ b/roseau/load_flow/utils/tests/test_constants.py
@@ -1,5 +1,5 @@
from roseau.load_flow.utils.constants import DELTA_P, EPSILON_R, MU_R, RHO, TAN_D
-from roseau.load_flow.utils.types import ConductorType, InsulationType
+from roseau.load_flow.utils.types import ConductorType, InsulatorType
def test_constants():
@@ -8,8 +8,8 @@ def test_constants():
assert x in RHO
assert x in DELTA_P
- for x in InsulationType:
- if x == InsulationType.UNKNOWN:
+ for x in InsulatorType:
+ if x == InsulatorType.UNKNOWN:
continue
assert x in TAN_D
assert x in EPSILON_R
diff --git a/roseau/load_flow/utils/tests/test_types.py b/roseau/load_flow/utils/tests/test_types.py
index 3fba5548..5e0b7f31 100644
--- a/roseau/load_flow/utils/tests/test_types.py
+++ b/roseau/load_flow/utils/tests/test_types.py
@@ -1,15 +1,9 @@
import pytest
from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode
-from roseau.load_flow.utils.types import ConductorType, InsulationType, LineModel, LineType, TransformerType
+from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType
-TYPES = [
- ConductorType,
- InsulationType,
- LineModel,
- LineType,
- TransformerType,
-]
+TYPES = [ConductorType, InsulatorType, LineType]
TYPES_IDS = [x.__name__ for x in TYPES]
@@ -38,9 +32,9 @@ def test_line_type():
assert LineType.from_string("Torsade") == LineType.TWISTED
-def test_insulation_type():
- assert InsulationType.from_string("") == InsulationType.UNKNOWN
- assert InsulationType.from_string("nan") == InsulationType.UNKNOWN
+def test_insulator_type():
+ assert InsulatorType.from_string("") == InsulatorType.UNKNOWN
+ assert InsulatorType.from_string("nan") == InsulatorType.UNKNOWN
def test_conductor_type():
@@ -52,110 +46,3 @@ def test_conductor_type():
ConductorType.from_string("nan")
assert "cannot be converted into a ConductorType" in e.value.args[0]
assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_CONDUCTOR_TYPE
-
-
-def test_transformer_type():
- valid_windings = ("y", "yn", "z", "zn", "d")
- valid_phase_displacements = (0, 5, 6, 11)
- valid_types = {"dd", "yy", "yny", "yyn", "ynyn", "dz", "dzn", "dy", "dyn", "yd", "ynd", "yz", "ynz", "yzn", "ynzn"}
- valid_full_types = {
- "dd0",
- "dd6",
- "yy0",
- "yy6",
- "yny0",
- "yny6",
- "yyn0",
- "yyn6",
- "ynyn0",
- "ynyn6",
- "dz0",
- "dz6",
- "dzn0",
- "dzn6",
- "dy5",
- "dy11",
- "dyn5",
- "dyn11",
- "yd5",
- "yd11",
- "ynd5",
- "ynd11",
- "yz5",
- "yz11",
- "ynz5",
- "ynz11",
- "yzn5",
- "yzn11",
- "ynzn5",
- "ynzn11",
- }
-
- for winding1 in valid_windings:
- for winding2 in valid_windings:
- t = f"{winding1}{winding2}"
- if t in valid_types:
- assert not TransformerType.validate_windings(t)
- w1, w2, p = TransformerType.extract_windings(t)
- assert w1 == winding1.upper()
- assert w2 == winding2
- assert p is None
- for phase_displacement in valid_phase_displacements:
- t = f"{winding1}{winding2}{phase_displacement}"
- if t in valid_full_types:
- assert TransformerType.validate_windings(t)
- w1, w2, p = TransformerType.extract_windings(t)
- assert w1 == winding1.upper()
- assert w2 == winding2
- assert p == phase_displacement
- else:
- assert not TransformerType.validate_windings(t)
- with pytest.raises(RoseauLoadFlowException) as e:
- TransformerType.extract_windings(t)
- assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS
- else:
- assert not TransformerType.validate_windings(t)
- with pytest.raises(RoseauLoadFlowException):
- TransformerType.extract_windings(t)
- assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS
-
- for x in TransformerType:
- s = str(x)
- w1, w2, phase_displacement = TransformerType.extract_windings(s)
- assert f"{w1}{w2}" == s
- assert phase_displacement is None
-
-
-def test_line_model():
- assert LineModel.from_string("") == LineModel.UNKNOWN
- assert LineModel.from_string("nan") == LineModel.UNKNOWN
-
- # With neutral
- with_neutral = LineModel.with_neutral()
- without_neutral = LineModel.without_neutral()
- for x in LineModel:
- if x == LineModel.UNKNOWN:
- assert x not in without_neutral
- assert x not in with_neutral
- continue
- if x in (LineModel.LV_EXACT, LineModel.ZY_NEUTRAL, LineModel.Z_NEUTRAL, LineModel.SYM_NEUTRAL):
- assert x in with_neutral
- assert x not in without_neutral
- else:
- assert x not in with_neutral
- assert x in without_neutral
-
- # With Shunt
- with_shunt = LineModel.with_shunt()
- without_shunt = LineModel.without_shunt()
- for x in LineModel:
- if x == LineModel.UNKNOWN:
- assert x not in without_shunt
- assert x not in with_shunt
- continue
- if x in (LineModel.LV_EXACT, LineModel.SYM, LineModel.SYM_NEUTRAL, LineModel.ZY, LineModel.ZY_NEUTRAL):
- assert x in with_shunt
- assert x not in without_shunt
- else:
- assert x not in with_shunt
- assert x in without_shunt
diff --git a/roseau/load_flow/utils/types.py b/roseau/load_flow/utils/types.py
index 9c298c18..5e2f8be0 100644
--- a/roseau/load_flow/utils/types.py
+++ b/roseau/load_flow/utils/types.py
@@ -1,8 +1,6 @@
import logging
from enum import Enum, auto, unique
-from typing import Optional
-import regex
from typing_extensions import Self
from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode
@@ -63,9 +61,9 @@ def code(self) -> str:
The code of the enumerated value.
"""
if self == LineType.OVERHEAD:
- return "A"
+ return "O"
elif self == LineType.UNDERGROUND:
- return "S"
+ return "U"
elif self == LineType.TWISTED:
return "T"
else: # pragma: no cover
@@ -74,6 +72,10 @@ def code(self) -> str:
raise NotImplementedError(msg)
+# Add the list of codes for each line type
+LineType.CODES = {LineType.OVERHEAD: {"A", "O"}, LineType.UNDERGROUND: {"U", "S"}, LineType.TWISTED: {"T"}}
+
+
@unique
class ConductorType(Enum):
"""The type of conductor."""
@@ -151,40 +153,40 @@ def code(self) -> str:
@unique
-class InsulationType(Enum):
- """The type of the insulation for a wire."""
+class InsulatorType(Enum):
+ """The type of the insulator for a wire."""
UNKNOWN = auto()
- """The insulation of the conductor is made with unknown material."""
+ """The insulator of the conductor is made with unknown material."""
HDPE = auto()
- """The insulation of the conductor is made with High-Density PolyEthylene."""
+ """The insulator of the conductor is made with High-Density PolyEthylene."""
LDPE = auto()
- """The insulation of the conductor is made with Low-Density PolyEthylene."""
+ """The insulator of the conductor is made with Low-Density PolyEthylene."""
PEX = auto()
- """The insulation of the conductor is made with Cross-linked polyethylene."""
+ """The insulator of the conductor is made with Cross-linked polyethylene."""
EPR = auto()
- """The insulation of the conductor is made with Ethylene-Propylene Rubber."""
+ """The insulator of the conductor is made with Ethylene-Propylene Rubber."""
PVC = auto()
- """The insulation of the conductor is made with PolyVinyl Chloride."""
+ """The insulator of the conductor is made with PolyVinyl Chloride."""
def __str__(self) -> str:
- """Print a `InsulationType`
+ """Print a `InsulatorType`
Returns:
- A printable string of the insulation type.
+ A printable string of the insulator type.
"""
return self.name.upper()
@classmethod
def from_string(cls, string: str) -> Self:
- """Convert a string into a InsulationType
+ """Convert a string into a InsulatorType
Args:
string:
The string to convert
Returns:
- The corresponding InsulationType.
+ The corresponding InsulatorType.
"""
if string.lower() in ("", "unknown", "nan"):
return cls.UNKNOWN
@@ -199,277 +201,6 @@ def from_string(cls, string: str) -> Self:
elif string == "PVC":
return cls.PVC
else:
- msg = f"The string {string!r} cannot be converted into a InsulationType."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_INSULATION_TYPE)
-
-
-@unique
-class LineModel(Enum):
- """An enumerated class for the different line models."""
-
- UNKNOWN = auto()
- """The line is modelled through an unknown model."""
- LV_EXACT = auto()
- """The line is modelled through the position of the wire (with neutral). Some hypothesis limit this model to
- low voltages lines."""
- SYM = auto()
- """The line is modelled using a symmetric model (without neutral)."""
- SYM_NEUTRAL = auto()
- """The line is modelled using a symmetric model (with neutral)."""
- ZY = auto()
- """The line is modelled using two 3x3 matrices (shunt admittance and line impedance, without neutral)."""
- ZY_NEUTRAL = auto()
- """The line is modelled using two 4x4 matrices (shunt admittance and line impedance, with neutral)."""
- Z = auto()
- """The line is modelled using a single 3x3 matrices (line impedance, without neutral)."""
- Z_NEUTRAL = auto()
- """The line is modelled using a single 4x4 matrices (line impedance, with neutral)."""
-
- def __str__(self) -> str:
- """Print a `LineModel`
-
- Returns:
- A printable string of the names of line model.
- """
- return self.name.lower()
-
- @classmethod
- def from_string(cls, string: str) -> Self:
- """Convert a string into a LineModel
-
- Args:
- string:
- The string to convert
-
- Returns:
- The corresponding LineModel.
- """
- string = string.lower()
- if string == "lv_exact":
- return cls.LV_EXACT
- elif string == "sym":
- return cls.SYM
- elif string == "sym_neutral":
- return cls.SYM_NEUTRAL
- elif string == "zy":
- return cls.ZY
- elif string == "zy_neutral":
- return cls.ZY_NEUTRAL
- elif string == "z":
- return cls.Z
- elif string == "z_neutral":
- return cls.Z_NEUTRAL
- elif string in ("", "nan", "unknown"):
- return cls.UNKNOWN
- else:
- msg = f"The string {string!r} cannot be converted into a LineModel."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_LINE_MODEL)
-
- @classmethod
- def with_neutral(cls) -> tuple["LineModel", ...]:
- """Give the tuple of the line models which support the neutral.
-
- Returns:
- The tuple of line models which support the neutral.
- """
- return cls.SYM_NEUTRAL, cls.Z_NEUTRAL, cls.ZY_NEUTRAL, cls.LV_EXACT
-
- @classmethod
- def without_neutral(cls) -> tuple["LineModel", ...]:
- """Give the tuple of the line models which do not support the neutral.
-
- Returns:
- The tuple of line models which do not support the neutral.
- """
- return cls.SYM, cls.Z, cls.ZY
-
- @classmethod
- def with_shunt(cls) -> tuple["LineModel", ...]:
- """Give the tuple of the line models which support the shunt.
-
- Returns:
- The tuple of line models which supports the shunt.
- """
- return cls.LV_EXACT, cls.SYM, cls.SYM_NEUTRAL, cls.ZY, cls.ZY_NEUTRAL
-
- @classmethod
- def without_shunt(cls) -> tuple["LineModel", ...]:
- """Give the tuple of the line models which do not support the shunt.
-
- Returns:
- The tuple of line models which do not support the shunt.
- """
- return cls.Z_NEUTRAL, cls.Z
-
-
-@unique
-class BranchType(Enum):
- """The type of 'line' in a network."""
-
- LINE = auto()
- """The branch is a regular line."""
- TRANSFORMER = auto()
- """The branch is a regular transformer."""
- SWITCH = auto()
- """The branch is a regular switch."""
-
- def __str__(self) -> str:
- """Print a `BranchType`.
-
- Returns:
- A printable string of the connection type.
- """
- return self.name.lower()
-
- @classmethod
- def from_string(cls, string: str) -> Self:
- """Convert a string into a ConnectionType
-
- Args:
- string:
- The string to convert
-
- Returns:
- The corresponding ConnectionType.
- """
- if string == "line":
- return cls.LINE
- elif string == "transformer":
- return cls.TRANSFORMER
- elif string == "switch":
- return cls.SWITCH
- else:
- msg = f"The string {string!r} cannot be converted into a BranchType."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_BRANCH_TYPE)
-
-
-EXTRACT_WINDINGS_RE = regex.compile(
- "(?(DEFINE)(?Pyn?)(?Pd)(?Pzn?)(?P[06])"
- "(?P5|11))"
- ""
- "(?|(?P(?&y_winding))(?P(?&y_winding))(?P(?&p_set_1)?)" # yy
- "|(?P(?&y_winding))(?P(?&d_winding))(?P(?&p_set_2)?)" # yd
- "|(?P(?&y_winding))(?P(?&z_winding))(?P(?&p_set_2)?)" # yz
- "|(?P(?&d_winding))(?P(?&z_winding))(?P(?&p_set_1)?)" # dz
- "|(?P(?&d_winding))(?P(?&y_winding))(?P(?&p_set_2)?)" # dy
- "|(?P(?&d_winding))(?P(?&d_winding))(?P(?&p_set_1)?))", # dd
- regex.IGNORECASE,
-)
-"""The pattern to extract the winding of the primary and of the secondary of the transformer."""
-
-
-@unique
-class TransformerType(Enum):
- """The type of transformer."""
-
- Yy = auto()
- """A Wye-Wye transformer without neutral connected to the rest of the network."""
- YNy = auto()
- """A Wye-Wye transformer with a neutral connected to the network on the first winding."""
- YNyn = auto()
- """A Wye-Wye transformer with a neutral connected to the network on the two windings."""
- Yyn = auto()
- """A Wye-Wye transformer with a neutral connected to the network on the second winding."""
- Dz = auto()
- """A Delta-Zigzag transformer without neutral connected to the rest of the network."""
- Dzn = auto()
- """A Delta-Zigzag transformer with a neutral connected to the network on the second winding."""
- Dy = auto()
- """A Delta-Wye transformer without neutral connected to the rest of the network."""
- Dyn = auto()
- """A Delta-Wye transformer with a neutral connected to the network on the second winding."""
- Yz = auto()
- """A Wye-Zigzag transformer without neutral connected to the rest of the network."""
- YNz = auto()
- """A Wye-Zigzag transformer with a neutral connected to the network on the first winding."""
- YNzn = auto()
- """A Wye-Zigzag transformer with a neutral connected to the network on the two windings."""
- Yzn = auto()
- """A Wye-Zigzag transformer with a neutral connected to the network on the second winding."""
- Yd = auto()
- """A Wye-Delta transformer without neutral connected to the rest of the network."""
- YNd = auto()
- """A Wye-Delta transformer with a neutral connected to the network on the first winding."""
- Dd = auto()
- """A Delta-Delta transformer without neutral connected to the rest of the network."""
-
- def __str__(self) -> str:
- """Print a `TransformerType`
-
- Returns:
- A printable string of the transformer type.
- """
- return self.name
-
- @classmethod
- def from_string(cls, string: str) -> Self:
- """Convert a string into a TransformerType
-
- Args:
- string:
- The string to convert
-
- Returns:
- The corresponding TransformerType
- """
- winding1, winding2, phase_displacement = cls.extract_windings(string=string)
- try:
- return getattr(cls, f"{winding1}{winding2}")
- except AttributeError:
- msg = f"The string {string!r} cannot be converted into a TransformerType."
- logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_TYPE) from None
-
- @property
- def windings(self) -> tuple[str, str]:
- """Retrieve the windings and the phase displacement of the current
-
- Returns:
- The high voltages winding and the low voltages winding.
- """
- winding1, winding2, phase_displacement = self.extract_windings(str(self))
- return winding1, winding2
-
- @classmethod
- def validate_windings(cls, string: str) -> bool:
- """Validate the windings of the high and low voltages sides
-
- Args:
- string:
- A string depicting a winding
-
- Returns:
- True if the provided string corresponds to valid transformer windings.
- """
- try:
- match = EXTRACT_WINDINGS_RE.fullmatch(string=string)
- return bool(match) and bool(match.group("p"))
- except Exception:
- return False
-
- @classmethod
- def extract_windings(cls, string: str) -> tuple[str, str, Optional[int]]:
- """Extract the windings of the high and low voltages sides
-
- Args:
- string:
- A string depicting a winding
-
- Returns:
- The high voltages winding, the low voltages winding, and the phase displacement.
- """
- match = EXTRACT_WINDINGS_RE.fullmatch(string=string)
- if match:
- groups = match.groupdict()
- winding1, winding2, phase_displacement = groups["w1"], groups["w2"], groups["p"]
- if phase_displacement:
- return winding1.upper(), winding2.lower(), int(phase_displacement)
- else:
- return winding1.upper(), winding2.lower(), None
- else:
- msg = f"Transformer windings cannot be extracted from the string {string!r}."
+ msg = f"The string {string!r} cannot be converted into a InsulatorType."
logger.error(msg)
- raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS)
+ raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_INSULATOR_TYPE)
diff --git a/scripts/generate_network_catalogue_data.py b/scripts/generate_network_catalogue_data.py
new file mode 100644
index 00000000..dce8f7ee
--- /dev/null
+++ b/scripts/generate_network_catalogue_data.py
@@ -0,0 +1,30 @@
+"""Generate the catalogue data of the networks folder. This json file contains some statistics on the available
+networks."""
+import json
+from pathlib import Path
+
+from roseau.load_flow import ElectricalNetwork
+
+if __name__ == "__main__":
+ catalogue_path = (Path(__file__).parents[1] / "roseau" / "load_flow" / "data" / "networks").expanduser().absolute()
+ network_data = {}
+ for p in catalogue_path.glob("*.json"):
+ if p.stem == "Catalogue":
+ continue
+
+ network_name, load_point = p.stem.split("_")
+ if network_name in network_data:
+ network_data[network_name]["load_points"].append(load_point)
+ else:
+ en = ElectricalNetwork.from_json(p)
+ network_data[network_name] = {
+ "nb_buses": len(en.buses),
+ "nb_branches": len(en.branches),
+ "nb_loads": len(en.loads),
+ "nb_sources": len(en.sources),
+ "nb_grounds": len(en.grounds),
+ "nb_potential_refs": len(en.potential_refs),
+ "load_points": [load_point],
+ }
+ network_data = dict(sorted(network_data.items()))
+ (catalogue_path / "Catalogue.json").write_text(json.dumps(obj=network_data, indent=4))
diff --git a/scripts/generate_transformer_parameters_catalogue.py b/scripts/generate_transformer_parameters_catalogue.py
new file mode 100644
index 00000000..1f6f6336
--- /dev/null
+++ b/scripts/generate_transformer_parameters_catalogue.py
@@ -0,0 +1,45 @@
+"""Generate the catalogue of transformers from the CSV file of transformers."""
+from pathlib import Path
+
+import numpy as np
+import pandas as pd
+
+from roseau.load_flow import Q_, TransformerParameters
+
+if __name__ == "__main__":
+ catalogue_path = (
+ (Path(__file__).parents[1] / "roseau" / "load_flow" / "data" / "transformers").expanduser().absolute()
+ )
+ catalogue_data_path = catalogue_path / "Catalogue.csv"
+ df = pd.read_csv(catalogue_data_path)
+
+ for idx in df.index:
+ id = df.at[idx, "id"]
+ manufacturer = df.at[idx, "manufacturer"]
+ range = df.at[idx, "range"]
+ efficiency = df.at[idx, "efficiency"]
+ destination_path = catalogue_path / manufacturer / range / efficiency
+ destination_path.mkdir(exist_ok=True, parents=True)
+
+ # Get parameters
+ uhv = Q_(df.at[idx, "uhv"], "V") # Phase-to-phase nominal voltages of the high voltages side
+ ulv = Q_(df.at[idx, "ulv"], "V") # Phase-to-phase nominal voltages of the low voltages side
+ sn = Q_(df.at[idx, "sn"], "VA") # Nominal power
+ i0 = Q_(np.round(df.at[idx, "i0"], decimals=3), "") # Current during off-load test
+ p0 = Q_(df.at[idx, "p0"], "W") # Losses during off-load test
+ psc = Q_(df.at[idx, "psc"], "W") # Losses during short-circuit test
+ vsc = Q_(df.at[idx, "vsc"], "") # Voltages on LV side during short-circuit test
+ type = df.at[idx, "type"]
+
+ # Check the canonical name
+ sn_kva = int(sn.m_as("kVA"))
+ assert id == f"{manufacturer}_{range}_{efficiency}_{sn_kva}kVA"
+
+ # Generate transformer parameters
+ tp = TransformerParameters(id=id, type=type, uhv=uhv, ulv=ulv, sn=sn, p0=p0, i0=i0, psc=psc, vsc=vsc)
+ res = tp.to_zyk()
+ assert all(pd.notna(x) for x in res), id
+ tp.to_json(destination_path / f"{sn_kva}.json")
+
+ # Sort the catalogue and write it
+ df.sort_values(by=["manufacturer", "range", "efficiency", "sn"]).to_csv(catalogue_data_path, index=False)
diff --git a/scripts/network_files_upgrade.py b/scripts/network_files_upgrade.py
index 550d17de..1aa757d7 100644
--- a/scripts/network_files_upgrade.py
+++ b/scripts/network_files_upgrade.py
@@ -5,17 +5,17 @@
from roseau.load_flow import ElectricalNetwork, RoseauLoadFlowException
PROJECT_ROOT = Path(__file__).parent.parent
-DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "tests" / "data"
-DOC_DATA_DIR = PROJECT_ROOT / "doc" / "notebooks" / "data"
+TEST_DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "tests" / "data"
+DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "data" / "networks"
def all_network_paths() -> Generator[Path, None, None]:
# Test networks
- yield from (DATA_DIR / "networks").glob("**/network*.json")
+ yield from (TEST_DATA_DIR / "networks").glob("**/network*.json")
# Benchmark networks
- yield from (DATA_DIR / "benchmark").glob("**/network*.json")
- # Documentation networks
- yield from DOC_DATA_DIR.glob("*.json")
+ yield from (TEST_DATA_DIR / "benchmark").glob("**/network*.json")
+ # Package data
+ yield from DATA_DIR.glob("[!Catalogue]*.json")
def upgrade_network(path: Path) -> None:
@@ -37,7 +37,7 @@ def update_bad_transformer_id(path: Path) -> None:
if __name__ == "__main__":
# from roseau.load_flow import AbstractLoad, VoltageSource
-
+ #
# # Allow floating neutral otherwise the upgrade will fail for some files
# AbstractLoad._floating_neutral_allowed = True
# VoltageSource._floating_neutral_allowed = True
diff --git a/scripts/plot_network_catalogue.py b/scripts/plot_network_catalogue.py
new file mode 100644
index 00000000..1f1c6e4b
--- /dev/null
+++ b/scripts/plot_network_catalogue.py
@@ -0,0 +1,164 @@
+import folium
+import pandas as pd
+
+from roseau.load_flow import ElectricalNetwork
+
+
+def buses_style_function(feature):
+ if feature["properties"]["id"].startswith("HVMV"): # HV/MV substation
+ return {
+ "fill": True,
+ "fillColor": "#000000",
+ "color": "#000000",
+ "fillOpacity": 1,
+ "radius": 7,
+ }
+ elif feature["properties"]["id"].startswith("MVLV"): # MV/LV substations
+ return {
+ "fill": True,
+ "fillColor": "#234e83",
+ "color": "#234e83",
+ "fillOpacity": 1,
+ "radius": 5,
+ }
+ elif feature["properties"]["id"].startswith("MV"): # MV buses
+ return {
+ "fill": True,
+ "fillColor": "#234e83",
+ "color": "#234e83",
+ "fillOpacity": 1,
+ "radius": 3,
+ }
+ else: # LV buses
+ return {
+ "fill": True,
+ "fillColor": "#adb9cb",
+ "color": "#adb9cb",
+ "fillOpacity": 1,
+ "radius": 1,
+ }
+
+
+def buses_highlight_function(feature):
+ return {"color": "#cad40e", "fillColor": "#cad40e"}
+
+
+buses_tooltip = folium.GeoJsonTooltip(
+ fields=["id", "phases"],
+ aliases=["Id:", "Phases:"],
+ localize=True,
+ sticky=False,
+ labels=True,
+ max_width=800,
+)
+
+
+def branches_style_function(feature):
+ if feature["properties"]["branch_type"] == "line":
+ if feature["properties"]["network"].startswith("MV"):
+ return {"color": "#234e83", "weight": 4}
+ else:
+ return {"color": "#adb9cb", "weight": 2}
+ else:
+ # feature["properties"]["branch_type"] in ("transformer", "switch")
+ return {"opacity": 0}
+
+
+def branches_highlight_function(feature):
+ return {"color": "#cad40e"}
+
+
+branches_tooltip = folium.GeoJsonTooltip(
+ fields=["id", "branch_type", "bus1_id", "bus2_id"],
+ aliases=["Id:", "Type:", "Bus1:", "Bus2:"],
+ localize=True,
+ sticky=False,
+ labels=True,
+ max_width=800,
+)
+
+
+if __name__ == "__main__":
+ catalogue_data = ElectricalNetwork.catalogue_data()
+ aggregated_buses_gdf_list = []
+ aggregated_branches_gdf_list = []
+ for network_name in catalogue_data:
+ # Read the network data
+ en = ElectricalNetwork.from_catalogue(name=network_name, load_point_name="Winter")
+ buses_gdf = en.buses_frame.reset_index()
+ branches_gdf = en.branches_frame.reset_index()
+ buses_gdf["network"] = network_name
+ branches_gdf["network"] = network_name
+
+ # Create the map
+ zoom_start = 12 if network_name.startswith("MV") else 16
+ m = folium.Map(location=list(reversed(buses_gdf.unary_union.centroid.coords[0])), zoom_start=zoom_start)
+ folium.GeoJson(
+ branches_gdf,
+ name="branches",
+ marker=folium.CircleMarker(),
+ style_function=branches_style_function,
+ highlight_function=branches_highlight_function,
+ tooltip=branches_tooltip,
+ ).add_to(m)
+ folium.GeoJson(
+ buses_gdf,
+ name="buses",
+ marker=folium.CircleMarker(),
+ style_function=buses_style_function,
+ highlight_function=buses_highlight_function,
+ tooltip=buses_tooltip,
+ ).add_to(m)
+ folium.LayerControl().add_to(m)
+
+ # Save the map
+ m.save(f"{network_name}.html")
+
+ # Aggregate the data frame
+ aggregated_buses_gdf_list.append(buses_gdf)
+ aggregated_branches_gdf_list.append(branches_gdf)
+
+ # Create the global map
+ buses_gdf = pd.concat(aggregated_buses_gdf_list, ignore_index=True)
+ branches_gdf = pd.concat(aggregated_branches_gdf_list, ignore_index=True)
+
+ # Update the tooltips
+ buses_tooltip = folium.GeoJsonTooltip(
+ fields=["network", "id", "phases"],
+ aliases=["Network:", "Id:", "Phases:"],
+ localize=True,
+ sticky=False,
+ labels=True,
+ max_width=800,
+ )
+ branches_tooltip = folium.GeoJsonTooltip(
+ fields=["network", "id", "branch_type", "bus1_id", "bus2_id"],
+ aliases=["Network:", "Id:", "Type:", "Bus1:", "Bus2:"],
+ localize=True,
+ sticky=False,
+ labels=True,
+ max_width=800,
+ )
+
+ # Create the map
+ m = folium.Map(location=list(reversed(buses_gdf.unary_union.centroid.coords[0])), zoom_start=9)
+ folium.GeoJson(
+ branches_gdf,
+ name="branches",
+ marker=folium.CircleMarker(),
+ style_function=branches_style_function,
+ highlight_function=branches_highlight_function,
+ tooltip=branches_tooltip,
+ ).add_to(m)
+ folium.GeoJson(
+ buses_gdf,
+ name="buses",
+ marker=folium.CircleMarker(),
+ style_function=buses_style_function,
+ highlight_function=buses_highlight_function,
+ tooltip=buses_tooltip,
+ ).add_to(m)
+ folium.LayerControl().add_to(m)
+
+ # Save the map
+ m.save("Catalogue.html")