diff --git a/.gitignore b/.gitignore index c4664c61..f4526383 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,8 @@ var/ *.egg-info/ .installed.cfg *.egg +doc/_html/ +.idea/ # PyInstaller # Usually these files are written by a python script from a template @@ -56,6 +58,9 @@ doc/_build/ # PyBuilder target/ +# Data +.pkl + diff --git a/.readthedocs.yml b/.readthedocs.yml index eafb35e7..8bfebb57 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -18,6 +18,6 @@ formats: all # Optionally set the version of Python and requirements required to build your docs python: - version: 3.6 + version: 3.8 install: - requirements: rtd_requirements.txt \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 2cdc1715..50bc541e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ +dist: bionic language: python python: - - "3.4" - - "3.5" - - "3.6" + - "3.6.10" # - "3.7" # command to install dependencies install: - - pip install -r requirements.txt + - pip install -r requirements.txt -r dev_requirements.txt + - pip freeze # command to run tests script: - pytest -vv \ No newline at end of file diff --git a/README.md b/README.md index be5b6b9e..13be932c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ DING0 ===== DIstribution Network GeneratOr -- A tool to generate synthetic medium and low -voltage power distribution grids based on open (or at least accessible) data. +voltage power distribution grids based on open (or at least publicly available) +data. Installation and usage ---------------------- @@ -15,7 +16,7 @@ Installation and usage Ding0 is provided through the package management tool *pip*. Install it by ``` -pip3 install ding0 +pip install ding0 ``` Further details regarding the installation including dependencies are provided @@ -24,12 +25,13 @@ in the [documentation](https://dingo.readthedocs.io) A [set of examples](https://dingo.readthedocs.io/en/dev/usage_details.html#examples) is provided to show how to use Ding0. -An overview on versions of data already generated [can be found in the wiki](https://github.com/openego/ding0/wiki/Ding0-datasets). +An overview on versions of data already generated +[can be found in the wiki](https://github.com/openego/ding0/wiki/Ding0-datasets). LICENSE ------- -Copyright (C) 2017 openego project group +Copyright (C) 2017-2021 openego project group This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free diff --git a/dev_requirements.txt b/dev_requirements.txt new file mode 100644 index 00000000..c5a08e72 --- /dev/null +++ b/dev_requirements.txt @@ -0,0 +1,5 @@ +pytest +pytest-dependency +pytest-parallel +sphinx +sphinx_rtd_theme \ No newline at end of file diff --git a/ding0/core/__init__.py b/ding0/core/__init__.py index 9d0ae07a..dc713c75 100644 --- a/ding0/core/__init__.py +++ b/ding0/core/__init__.py @@ -22,10 +22,12 @@ from ding0.core.network.stations import * from ding0.core.structure.regions import * from ding0.core.powerflow import * -from ding0.tools import pypsa_io +from ding0.tools.pypsa_io import initialize_component_dataframes, fill_mvgd_component_dataframes from ding0.tools.animation import AnimationDing0 from ding0.tools.plots import plot_mv_topology from ding0.flexopt.reinforce_grid import * +from ding0.tools.logger import get_default_home_dir +from ding0.tools.tools import merge_two_dicts_of_dataframes import os import logging @@ -38,6 +40,7 @@ from sqlalchemy import func from geoalchemy2.shape import from_shape import subprocess +import json import oedialect if not 'READTHEDOCS' in os.environ: @@ -266,33 +269,28 @@ def run_ding0(self, session, mv_grid_districts_no=None, debug=False, export_figu Generators are connected to grids, used approach depends on voltage level. - * STEP 8: Set IDs for all branches in MV and LV grids - - While IDs of imported objects can be derived from dataset's ID, branches - are created in steps 5+6 and need unique IDs (e.g. for PF calculation). - - * STEP 9: Relocate switch disconnectors in MV grid + * STEP 8: Relocate switch disconnectors in MV grid Switch disconnectors are set during routing process (step 6) according to the load distribution within a ring. After further modifications of the grid within step 6+7 they have to be relocated (note: switch disconnectors are called circuit breakers in DING0 for historical reasons). - * STEP 10: Open all switch disconnectors in MV grid + * STEP 9: Open all switch disconnectors in MV grid Under normal conditions, rings are operated in open state (half-rings). Furthermore, this is required to allow powerflow for MV grid. - * STEP 11: Do power flow analysis of MV grid + * STEP 10: Do power flow analysis of MV grid The technically working MV grid created in step 6 was extended by satellite loads and generators. It is finally tested again using powerflow calculation. - * STEP 12: Reinforce MV grid + * STEP 11: Reinforce MV grid MV grid is eventually reinforced persuant to results from step 11. - STEP 13: Close all switch disconnectors in MV grid + * STEP 12: Close all switch disconnectors in MV grid The rings are finally closed to hold a complete graph (if the SDs are open, the edges adjacent to a SD will not be exported!) """ @@ -326,18 +324,15 @@ def run_ding0(self, session, mv_grid_districts_no=None, debug=False, export_figu if export_figures: plot_mv_topology(grid, subtitle='Generators connected', filename='2_generators_connected.png') - # STEP 8: Set IDs for all branches in MV and LV grids - self.set_branch_ids() - - # STEP 9: Relocate switch disconnectors in MV grid + # STEP 8: Relocate switch disconnectors in MV grid self.set_circuit_breakers(debug=debug) if export_figures: plot_mv_topology(grid, subtitle='Circuit breakers relocated', filename='3_circuit_breakers_relocated.png') - # STEP 10: Open all switch disconnectors in MV grid + # STEP 9: Open all switch disconnectors in MV grid self.control_circuit_breakers(mode='open') - # STEP 11: Do power flow analysis of MV grid + # STEP 10: Do power flow analysis of MV grid self.run_powerflow(session, method='onthefly', export_pypsa=False, debug=debug) if export_figures: plot_mv_topology(grid, subtitle='PF result (load case)', @@ -347,10 +342,10 @@ def run_ding0(self, session, mv_grid_districts_no=None, debug=False, export_figu filename='5_PF_result_feedin.png', line_color='loading', node_color='voltage', testcase='feedin') - # STEP 12: Reinforce MV grid + # STEP 11: Reinforce MV grid self.reinforce_grid() - # STEP 13: Close all switch disconnectors in MV grid + # STEP 12: Close all switch disconnectors in MV grid self.control_circuit_breakers(mode='close') if export_figures: @@ -979,7 +974,7 @@ def import_res_generators(): generator = GeneratorFluctuatingDing0( id_db=id_db, mv_grid=mv_grid, - capacity=row['electrical_capacity'], + capacity=float(row['electrical_capacity']), type=row['generation_type'], subtype=row['generation_subtype'], v_level=int(row['voltage_level']), @@ -988,7 +983,7 @@ def import_res_generators(): generator = GeneratorDing0( id_db=id_db, mv_grid=mv_grid, - capacity=row['electrical_capacity'], + capacity=float(row['electrical_capacity']), type=row['generation_type'], subtype=row['generation_subtype'], v_level=int(row['voltage_level'])) @@ -1349,7 +1344,7 @@ def validate_grid_districts(self): for grid_district in self.mv_grid_districts(): # there's only one node (MV station) => grid is empty - if len(grid_district.mv_grid._graph.nodes()) == 1: + if len(grid_district.mv_grid.graph.nodes()) == 1: invalid_mv_grid_districts.append(grid_district) msg_invalidity.append('MV Grid District {} seems to be empty ' \ 'and ' \ @@ -1412,7 +1407,7 @@ def export_mv_grid(self, session, mv_grid_districts): lines = [] # get nodes from grid's graph and append to corresponding array - for node in grid_district.mv_grid._graph.nodes(): + for node in grid_district.mv_grid.graph.nodes(): if isinstance(node, LVLoadAreaCentreDing0): lv_load_area_centres.append((node.geo_data.x, node.geo_data.y)) elif isinstance(node, MVCableDistributorDing0): @@ -1527,7 +1522,7 @@ def export_mv_grid_new(self, session, mv_grid_districts): for grid_district in self.mv_grid_districts(): # get nodes from grid's graph and create datasets - for node in grid_district.mv_grid._graph.nodes(): + for node in grid_district.mv_grid.graph.nodes(): if hasattr(node, 'voltage_res'): node_name = '_'.join(['MV', str(grid_district.mv_grid.id_db), @@ -1610,8 +1605,9 @@ def export_mv_grid_new(self, session, mv_grid_districts): logger.info('=====> MV Grids exported (NEW)') - def to_dataframe(self): + def to_dataframe_old(self): """ + Todo: remove? or replace by part of to_csv() Export grid data to dataframes for statistical analysis. The export to dataframe is similar to db tables exported by `export_mv_grid_new`. @@ -1728,6 +1724,95 @@ def to_dataframe(self): return nodes_df, edges_df + def to_csv(self, dir = '', only_export_mv = False): + ''' + Function to export network to csv. Converts network in dataframes which are adapted to pypsa format. + Respectively saves files for network, buses, lines, transformers, loads and generators. + + Parameters + ---------- + dir: :obj:`str` + Directory to which network is saved. + only_export_mv: bool + When True only mv topology is exported with aggregated lv grid districts + ''' + + buses_df, generators_df, lines_df, loads_df, transformer_df = initialize_component_dataframes() + if (dir == ''): + dir = get_default_home_dir() # eventuell ändern + # open all switch connectors + self.control_circuit_breakers(mode='open') + # start filling component dataframes + for grid_district in self.mv_grid_districts(): + gd_components, network_df, _ = fill_mvgd_component_dataframes( + grid_district, buses_df, generators_df, + lines_df, loads_df,transformer_df, only_export_mv) + # save network and components to csv + path = os.path.join(dir, str(grid_district.id_db)) + if not os.path.exists(path): + os.makedirs(path) + network_df.to_csv(os.path.join(path, 'network.csv')) + gd_components['HVMV_Transformer'].to_csv( + os.path.join(path, 'transformers_hvmv.csv')) + gd_components['Transformer'].to_csv( + os.path.join(path, 'transformers.csv')) + gd_components['Bus'].to_csv( + os.path.join(path, 'buses.csv')) + gd_components['Line'].to_csv( + os.path.join(path, 'lines.csv')) + gd_components['Load'].to_csv( + os.path.join(path, 'loads.csv')) + gd_components['Generator'].to_csv( + os.path.join(path, 'generators.csv')) + gd_components['Switch'].to_csv( + os.path.join(path, 'switches.csv')) + + # Merge metadata of multiple runs + if 'metadata' not in locals(): + metadata = self.metadata + + else: + if isinstance(grid_district, list): + metadata['mv_grid_districts'].extend(grid_district) + else: + metadata['mv_grid_districts'].append(grid_district) + + # Save metadata to disk + with open(os.path.join(path, 'Ding0_{}.meta'.format(metadata['run_id'])), + 'w') as f: + json.dump(metadata, f) + + + def to_dataframe(self, only_export_mv = False): + ''' + Function to export network to csv. Converts network in dataframes which are adapted to pypsa format. + Respectively saves files for network, buses, lines, transformers, loads and generators. + + Parameters + ---------- + only_export_mv: bool + When True only mv topology is exported with aggregated lv grid districts + ''' + buses_df, generators_df, lines_df, loads_df, transformer_df = initialize_component_dataframes() + components = {} + networks = pd.DataFrame() + # open all switch connectors + self.control_circuit_breakers(mode='open') + # start filling component dataframes + for grid_district in self.mv_grid_districts(): + gd_components, network_df, _ = fill_mvgd_component_dataframes(grid_district, buses_df, generators_df, + lines_df, loads_df, transformer_df, only_export_mv) + if len(components) == 0: + components = gd_components + networks = network_df + else: + components = merge_two_dicts_of_dataframes(components, gd_components) + networks = networks.append(network_df) + + components['Network'] = network_df + return components + + def mv_routing(self, debug=False, animation=False): """ Performs routing on all MV grids. @@ -1825,21 +1910,6 @@ def mv_parametrize_grid(self, debug=False): logger.info('=====> MV Grids parametrized') - def set_branch_ids(self): - """ - Performs generation and setting of ids - of branches for all MV and underlying LV grids. - - See Also - -------- - ding0.core.network.grids.MVGridDing0.set_branch_ids - """ - - for grid_district in self.mv_grid_districts(): - grid_district.mv_grid.set_branch_ids() - - logger.info('=====> Branch IDs set') - def set_circuit_breakers(self, debug=False): """ Calculates the optimal position of the existing circuit breakers @@ -1884,7 +1954,7 @@ def control_circuit_breakers(self, mode=None): elif mode == 'close': logger.info('=====> MV Circuit Breakers closed') - def run_powerflow(self, session, method='onthefly', export_pypsa=False, debug=False): + def run_powerflow(self, session = None, method='onthefly', only_calc_mv = True, export_pypsa=False, debug=False, export_result_dir=None): """ Performs power flow calculation for all MV grids @@ -1915,9 +1985,10 @@ def run_powerflow(self, session, method='onthefly', export_pypsa=False, debug=Fa export_pypsa_dir = repr(grid_district.mv_grid) else: export_pypsa_dir = None - grid_district.mv_grid.run_powerflow(session, method='db', + grid_district.mv_grid.run_powerflow(method='db', export_pypsa_dir=export_pypsa_dir, - debug=debug) + debug=debug, + export_result_dir=export_result_dir) elif method == 'onthefly': for grid_district in self.mv_grid_districts(): @@ -1925,10 +1996,11 @@ def run_powerflow(self, session, method='onthefly', export_pypsa=False, debug=Fa export_pypsa_dir = repr(grid_district.mv_grid) else: export_pypsa_dir = None - grid_district.mv_grid.run_powerflow(session, - method='onthefly', + grid_district.mv_grid.run_powerflow(method='onthefly', + only_calc_mv = only_calc_mv, export_pypsa_dir=export_pypsa_dir, - debug=debug) + debug=debug, + export_result_dir=export_result_dir) def reinforce_grid(self): """ diff --git a/ding0/core/network/__init__.py b/ding0/core/network/__init__.py index 3964db39..002c9986 100644 --- a/ding0/core/network/__init__.py +++ b/ding0/core/network/__init__.py @@ -17,6 +17,7 @@ import networkx as nx from ding0.core.structure.regions import LVLoadAreaDing0, LVLoadAreaCentreDing0 +import ding0.tools as tl class GridDing0: @@ -161,6 +162,11 @@ def add_generator(self, generator): self._generators.append(generator) self.graph_add_node(generator) + @property + def graph(self): + """Provide access to the graph""" + return self._graph + def graph_add_node(self, node_object): """ Adds a station or cable distributor object @@ -181,13 +187,13 @@ def graph_add_node(self, node_object): :class:`~.ding0.core.network.CableDistributorDing0` """ - if ((node_object not in self._graph.nodes()) and + if ((node_object not in self.graph.nodes()) and (isinstance(node_object, (StationDing0, CableDistributorDing0, LVLoadAreaCentreDing0, CircuitBreakerDing0, GeneratorDing0)))): - self._graph.add_node(node_object) + self.graph.add_node(node_object) def graph_draw(self, mode): """ @@ -212,7 +218,7 @@ def graph_draw(self, mode): performed, the drawn graph representation is falsified! """ - g = self._graph + g = self.graph if mode == 'MV': # get draw params from nodes and edges (coordinates, colors, demands, etc.) @@ -302,7 +308,7 @@ def graph_nodes_sorted(self): List of |ding0_node_object_types| """ - return sorted(self._graph.nodes(), key=lambda _: repr(_)) + return sorted(self.graph.nodes(), key=lambda _: repr(_)) def graph_nodes_from_branch(self, branch): """ @@ -321,7 +327,7 @@ def graph_nodes_from_branch(self, branch): 2-tuple of Ding0 node objects i.e. |ding0_node_object_types| """ - edges = nx.get_edge_attributes(self._graph, 'branch') + edges = nx.get_edge_attributes(self.graph, 'branch') nodes = list(edges.keys())[list(edges.values()).index(branch)] return nodes @@ -348,7 +354,7 @@ def graph_branches_from_node(self, node): # TODO: This method can be replaced and speed up by using NetworkX' neighbors() branches = [] - branches_dict = self._graph.adj[node] + branches_dict = self.graph.adj[node] for branch in branches_dict.items(): branches.append(branch) return sorted(branches, key=lambda _: repr(_)) @@ -398,7 +404,7 @@ def graph_edges(self): """ # get edges with attributes - edges = nx.get_edge_attributes(self._graph, 'branch').items() + edges = nx.get_edge_attributes(self.graph, 'branch').items() # sort them according to connected nodes edges_sorted = sorted(list(edges), key=lambda _: (''.join(sorted([repr(_[0][0]),repr(_[0][1])])))) @@ -448,14 +454,14 @@ def find_path(self, node_source, node_target, type='nodes'): See networkx' function shortest_path() function for details on how the path is calculated. """ - if (node_source in self._graph.nodes()) and (node_target in self._graph.nodes()): - path = nx.shortest_path(self._graph, node_source, node_target) + if (node_source in self.graph.nodes()) and (node_target in self.graph.nodes()): + path = nx.shortest_path(self.graph, node_source, node_target) else: raise Exception('At least one of the nodes is not a member of graph.') if type == 'nodes': return path elif type == 'edges': - return [_ for _ in self._graph.edges(nbunch=path, data=True) + return [_ for _ in self.graph.edges(nbunch=path, data=True) if (_[0] in path and _[1] in path)] else: raise ValueError('Please specify type as nodes or edges') @@ -487,7 +493,7 @@ def find_and_union_paths(self, node_source, nodes_target): path = self.find_path(node_source, node_target) node_pairs = list(zip(path[0:len(path) - 1], path[1:len(path)])) for n1, n2 in node_pairs: - branches.add(self._graph.adj[n1][n2]['branch']) + branches.add(self.graph.adj[n1][n2]['branch']) return list(branches) @@ -514,7 +520,7 @@ def graph_path_length(self, node_source, node_target): node_pairs = list(zip(path[0:len(path)-1], path[1:len(path)])) for n1, n2 in node_pairs: - length += self._graph.adj[n1][n2]['branch'].length + length += self.graph.adj[n1][n2]['branch'].length return length @@ -528,7 +534,7 @@ def graph_isolated_nodes(self): List of ding0 node objects i.e. |ding0_node_object_types| """ - return sorted(nx.isolates(self._graph), key=lambda x: repr(x)) + return sorted(nx.isolates(self.graph), key=lambda x: repr(x)) def control_generators(self, capacity_factor): """ Sets capacity factor of all generators of a grid. @@ -706,7 +712,7 @@ def lv_load_areas(self): List generator of :class:`~.ding0.core.structure.regions.LVLoadAreaDing0` objects """ - for lv_load_area in self._grid._graph.nodes(): + for lv_load_area in self._grid.graph.nodes(): if isinstance(lv_load_area, LVLoadAreaDing0): if lv_load_area.ring == self: yield lv_load_area @@ -752,16 +758,13 @@ class BranchDing0: Note ----- Important: id_db is not set until whole grid is finished (setting at the end). - - See Also - -------- - :meth:`~.ding0.core.network.grids.MVGridDing0.set_branch_ids` """ def __init__(self, **kwargs): self.id_db = kwargs.get('id_db', None) self.ring = kwargs.get('ring', None) + self.grid = kwargs.get('grid', None) self.length = kwargs.get('length', None) # branch (line/cable) length in m self.kind = kwargs.get('kind', None) # 'line' or 'cable' self.type = kwargs.get('type', None) # DataFrame with attributes of line/cable @@ -790,7 +793,9 @@ def __repr__(self): ------- :obj:`str` """ - return 'branch_' + str(self.id_db) + nodes = sorted(self.grid.graph_nodes_from_branch(self), + key=lambda _:repr(_)) + return '_'.join(['Branch', repr(nodes[0]), repr(nodes[1])]) class TransformerDing0: @@ -856,6 +861,10 @@ def z(self,voltage_level=None): Z_tr = (self.r_pu + self.x_pu * 1j) * voltage_level**2 / self.s_max_a *1000 return Z_tr + def __repr__(self): + # Todo: Change in a way that grid is seperated to mv and lv + return '_'.join(['Transformer', repr(self.grid), str(self.id_db)]) + class GeneratorDing0: """ Generators (power plants of any kind) @@ -955,7 +964,7 @@ def network(self): return self.mv_grid.network @property - def pypsa_id(self): + def pypsa_bus_id(self): """ Creates a unique identification for the generator to export to pypsa using the id_db of the mv_grid @@ -965,7 +974,11 @@ def pypsa_id(self): ------- :obj:`str` """ - return '_'.join(['MV', str(self.mv_grid.id_db), + if self.lv_grid != None: + return '_'.join(['Bus', 'mvgd', str(self.mv_grid.id_db), + 'lvgd', str(self.lv_grid.id_db),'gen', str(self.id_db)]) + else: + return '_'.join(['Bus', 'mvgd',str(self.mv_grid.id_db), 'gen', str(self.id_db)]) def __repr__(self): @@ -976,13 +989,18 @@ def __repr__(self): ------- :obj:`str` """ - if self.v_level in ['6', '7']: - return ('generator_' + str(self.type) + '_' + str(self.subtype) + - '_mvgd' + str(self.mv_grid.grid_district.id_db) + - '_lvgd' + str(self.lv_grid.id_db) + '_' + str(self.id_db)) + if self.subtype != None: + type = self.subtype + elif self.type != None: + type = self.type else: - return ('generator_' + str(self.type) + '_' + str(self.subtype) + - '_mvgd' + str(self.mv_grid.id_db) + '_' + str(self.id_db)) + type = '' + if self.lv_grid != None: + return '_'.join(['Generator', + 'mvgd', str(self.mv_grid.grid_district.id_db), + 'lvgd', str(self.lv_grid.id_db), type, str(self.id_db)]) + else: + return '_'.join(['Generator', 'mvgd', str(self.mv_grid.id_db),type, str(self.id_db)]) class GeneratorFluctuatingDing0(GeneratorDing0): @@ -1095,6 +1113,20 @@ def network(self): """ return self.grid.network + @property + def pypsa_bus_id(self): + """ + Creates a unique identification for the generator + to export to pypsa using the id_db of the mv_grid + and the current object + + Returns + ------- + :obj:`str` + """ + return '_'.join(['Bus', 'mvgd', str(self.grid.grid_district.lv_load_area.mv_grid_district.mv_grid.\ + id_db), 'lvgd', str(self.grid.id_db), 'loa', str(self.id_db)]) + class CircuitBreakerDing0: """ Class for modelling a circuit breaker @@ -1136,6 +1168,7 @@ def __init__(self, **kwargs): self.branch = kwargs.get('branch', None) self.branch_nodes = kwargs.get('branch_nodes', (None, None)) self.status = kwargs.get('status', 'closed') + self.switch_node = kwargs.get('switch_node', None) # get id from count of cable distributors in associated MV grid self.id_db = self.grid.circuit_breakers_count() + 1 @@ -1159,16 +1192,18 @@ def open(self): """ Open a Circuit Breaker """ - self.branch_nodes = self.grid.graph_nodes_from_branch(self.branch) - self.grid._graph.remove_edge(self.branch_nodes[0], self.branch_nodes[1]) - self.status = 'open' + if self.status == 'closed': + self.branch_nodes = self.grid.graph_nodes_from_branch(self.branch) + self.grid.graph.remove_edge(self.branch_nodes[0], self.branch_nodes[1]) + self.status = 'open' def close(self): """ Close a Circuit Breaker """ - self.grid._graph.add_edge(self.branch_nodes[0], self.branch_nodes[1], branch=self.branch) - self.status = 'closed' + if self.status == 'open': + self.grid.graph.add_edge(self.branch_nodes[0], self.branch_nodes[1], branch=self.branch) + self.status = 'closed' def __repr__(self): """ diff --git a/ding0/core/network/cable_distributors.py b/ding0/core/network/cable_distributors.py index 3f713953..98453daf 100644 --- a/ding0/core/network/cable_distributors.py +++ b/ding0/core/network/cable_distributors.py @@ -32,14 +32,20 @@ def __init__(self, **kwargs): self.id_db = self.grid.cable_distributors_count() + 1 @property - def pypsa_id(self): - """ :obj:`str`: Returns ...#TODO + def pypsa_bus_id(self): + """ + Returns specific ID for representing bus in pypsa network. + + Returns + ------- + :obj:`str`: + Representative of pypsa bus """ - return '_'.join(['MV', str(self.grid.id_db), - 'cld', str(self.id_db)]) + return '_'.join(['BranchTee', 'mvgd', str(self.grid.id_db), + str(self.id_db)]) def __repr__(self): - return 'mv_cable_dist_' + repr(self.grid) + '_' + str(self.id_db) + return '_'.join(['MVCableDist', 'mvgd', str(self.grid.id_db), str(self.id_db)]) class LVCableDistributorDing0(CableDistributorDing0): @@ -67,5 +73,21 @@ def __init__(self, **kwargs): self.id_db = self.grid.cable_distributors_count() + 1 self.in_building = kwargs.get('in_building', False) + @property + def pypsa_bus_id(self): + """ + Returns specific ID for representing bus in pypsa network. + + Returns + ------- + :obj:`str`: + Representative of pypsa bus + """ + return '_'.join(['BranchTee', 'mvgd', str(self.grid.grid_district. + lv_load_area.mv_grid_district.mv_grid.id_db), + 'lvgd', str(self.grid.id_db), str(self.id_db)]) + def __repr__(self): - return 'lv_cable_dist_' + repr(self.grid) + '_' + str(self.id_db) + return '_'.join(['LVCableDist', 'mvgd', str(self.grid.grid_district. + lv_load_area.mv_grid_district.mv_grid.id_db), + 'lvgd', str(self.grid.id_db), str(self.id_db)]) diff --git a/ding0/core/network/grids.py b/ding0/core/network/grids.py index 2cdfdf78..ff969462 100644 --- a/ding0/core/network/grids.py +++ b/ding0/core/network/grids.py @@ -22,17 +22,17 @@ from ding0.grid.mv_grid import mv_routing, mv_connect from ding0.grid.lv_grid import build_grid, lv_connect from ding0.tools import config as cfg_ding0, pypsa_io, tools -from ding0.tools.geo import calc_geo_dist_vincenty +from ding0.tools.geo import calc_geo_dist from ding0.grid.mv_grid.tools import set_circuit_breakers from ding0.flexopt.reinforce_grid import * from ding0.core.structure.regions import LVLoadAreaCentreDing0 +from ding0.tools.pypsa_io import initialize_component_dataframes, fill_mvgd_component_dataframes import os +import logging import networkx as nx from datetime import datetime -import pyproj -from functools import partial -import logging +from pyproj import Transformer if not 'READTHEDOCS' in os.environ: from shapely.ops import transform @@ -122,9 +122,13 @@ def add_station(self, mv_station, force=False): if self._station is None: self._station = mv_station self.graph_add_node(mv_station) + if mv_station.grid is None: + mv_station.grid = self else: if force: self._station = mv_station + if mv_station.grid is None: + mv_station.grid = self else: raise Exception('MV Station already set, use argument `force=True` to override.') @@ -161,8 +165,8 @@ def remove_cable_distributor(self, cable_dist): MVCableDistributorDing0): # remove from array and graph self._cable_distributors.remove(cable_dist) - if self._graph.has_node(cable_dist): - self._graph.remove_node(cable_dist) + if self.graph.has_node(cable_dist): + self.graph.remove_node(cable_dist) def add_ring(self, ring): """Adds a ring to _rings if not already existing""" @@ -202,15 +206,23 @@ def rings_nodes(self, include_root_node=False, include_satellites=False): Circuit breakers must be closed to find rings, this is done automatically. """ for circ_breaker in self.circuit_breakers(): - if circ_breaker.status is 'open': + if circ_breaker.status == 'open': circ_breaker.close() logger.info('Circuit breakers were closed in order to find MV ' 'rings') - for ring in nx.cycle_basis(self._graph, root=self._station): + for ring in nx.cycle_basis(self.graph, root=self._station): + if not include_root_node: ring.remove(self._station) + # make sure rings are always returned in same order, starting with + # node of which representative is smaller + start_node = repr(ring[0]) + end_node = repr(ring[len(ring) - 1]) + if start_node > end_node: + ring.reverse() + if include_satellites: ring_nodes = ring satellites = [] @@ -244,7 +256,7 @@ def rings_full_data(self): logger.info('Circuit breakers were closed in order to find MV ' 'rings') #find True rings (cycles from station through breaker and back to station) - for ring_nodes in nx.cycle_basis(self._graph, root=self._station): + for ring_nodes in nx.cycle_basis(self.graph, root=self._station): edges_ring = [] for node in ring_nodes: for edge in self.graph_branches_from_node(node): @@ -306,7 +318,7 @@ def graph_nodes_from_subtree(self, node_source, include_root_node=False): :obj:`list` of :obj:`GridDing0` List of nodes (Ding0 objects) """ - if node_source in self._graph.nodes(): + if node_source in self.graph.nodes(): # get all nodes that are member of a ring node_ring = [] @@ -320,7 +332,7 @@ def graph_nodes_from_subtree(self, node_source, include_root_node=False): # get nodes from subtree if node_source in node_ring: - for path in nx.shortest_path(self._graph, node_source).values(): + for path in nx.shortest_path(self.graph, node_source).values(): if len(path)>1: if (path[1] not in node_ring) and (path[1] is not self.station()): nodes_subtree.update(path[1:len(path)]) @@ -332,27 +344,6 @@ def graph_nodes_from_subtree(self, node_source, include_root_node=False): return list(nodes_subtree) - def set_branch_ids(self): - """ Generates and sets ids of branches for MV and underlying LV grids. - - While IDs of imported objects can be derived from dataset's ID, branches - are created within DING0 and need unique IDs (e.g. for PF calculation). - """ - - # MV grid: - ctr = 1 - for branch in self.graph_edges(): - branch['branch'].id_db = self.grid_district.id_db * 10**4 + ctr - ctr += 1 - - # LV grid: - for lv_load_area in self.grid_district.lv_load_areas(): - for lv_grid_district in lv_load_area.lv_grid_districts(): - ctr = 1 - for branch in lv_grid_district.lv_grid.graph_edges(): - branch['branch'].id_db = lv_grid_district.id_db * 10**7 + ctr - ctr += 1 - def routing(self, debug=False, anim=None): """ Performs routing on Load Area centres to build MV grid with ring topology. @@ -365,28 +356,28 @@ def routing(self, debug=False, anim=None): """ # do the routing - self._graph = mv_routing.solve(graph=self._graph, + self._graph = mv_routing.solve(graph=self.graph, debug=debug, anim=anim) logger.info('==> MV Routing for {} done'.format(repr(self))) # connect satellites (step 1, with restrictions like max. string length, max peak load per string) self._graph = mv_connect.mv_connect_satellites(mv_grid=self, - graph=self._graph, + graph=self.graph, mode='normal', debug=debug) logger.info('==> MV Sat1 for {} done'.format(repr(self))) # connect satellites to closest line/station on a MV ring that have not been connected in step 1 self._graph = mv_connect.mv_connect_satellites(mv_grid=self, - graph=self._graph, + graph=self.graph, mode='isolated', debug=debug) logger.info('==> MV Sat2 for {} done'.format(repr(self))) # connect stations self._graph = mv_connect.mv_connect_stations(mv_grid_district=self.grid_district, - graph=self._graph, + graph=self.graph, debug=debug) logger.info('==> MV Stations for {} done'.format(repr(self))) @@ -399,7 +390,7 @@ def connect_generators(self, debug=False): If True, information is printed during process """ - self._graph = mv_connect.mv_connect_generators(self.grid_district, self._graph, debug) + self._graph = mv_connect.mv_connect_generators(self.grid_district, self.graph, debug) def parametrize_grid(self, debug=False): """ Performs Parametrization of grid equipment: @@ -477,10 +468,7 @@ def set_voltage_level(self, mode='distance'): # transform MVGD's area to epsg 3035 # to achieve correct area calculation - projection = partial( - pyproj.transform, - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system + projection = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform # calculate load density kw2mw = 1e-3 @@ -509,7 +497,7 @@ def set_voltage_level(self, mode='distance'): for node in self.graph_nodes_sorted(): if isinstance(node, LVLoadAreaCentreDing0): # calc distance from MV-LV station to LA centre - dist_node = calc_geo_dist_vincenty(self.station(), node) / 1e3 + dist_node = calc_geo_dist(self.station(), node) / 1e3 if dist_node > dist_max: dist_max = dist_node @@ -672,7 +660,7 @@ def set_nodes_aggregation_flag(self, peak_current_branch_max): # add peak demand for all Load Areas of aggregation type self.grid_district.add_aggregated_peak_demand() - def export_to_pypsa(self, session, method='onthefly'): + def export_to_pypsa(self, session, method='onthefly', only_calc_mv = True): """Exports MVGridDing0 grid to PyPSA database tables Peculiarities of MV grids are implemented here. Derive general export @@ -704,7 +692,7 @@ def export_to_pypsa(self, session, method='onthefly'): start_time = datetime(1970, 1, 1, 00, 00, 0) resolution = 'H' - nodes = self._graph.nodes() + nodes = self.graph.nodes() edges = [edge for edge in list(self.graph_edges()) if (edge['adj_nodes'][0] in nodes and not isinstance( @@ -730,19 +718,19 @@ def export_to_pypsa(self, session, method='onthefly'): resolution=resolution, start_time=start_time) elif method == 'onthefly': - - nodes_dict, components_data = pypsa_io.nodes_to_dict_of_dataframes( - self, - nodes, - lv_transformer=False) - edges_dict = pypsa_io.edges_to_dict_of_dataframes(self, edges) - components = tools.merge_two_dicts(nodes_dict, edges_dict) + buses_df, generators_df, lines_df, loads_df, transformer_df = initialize_component_dataframes() + components, _, components_data = fill_mvgd_component_dataframes(self.grid_district, buses_df, generators_df, + lines_df, loads_df, transformer_df, + only_export_mv=only_calc_mv, + return_time_varying_data=True) return components, components_data else: raise ValueError('Sorry, this export method does not exist!') - def run_powerflow(self, session, export_pypsa_dir=None, method='onthefly', debug=False): + + + def run_powerflow(self, method='onthefly', only_calc_mv = True, export_pypsa_dir=None, debug=False, export_result_dir = None): """ Performs power flow calculation for all MV grids Args @@ -764,7 +752,6 @@ def run_powerflow(self, session, export_pypsa_dir=None, method='onthefly', debu Note ----- - It has to be proven that this method works for LV grids as well! Ding0 treats two stationary case of powerflow: 1) Full load: We assume no generation and loads to be set to peak load @@ -775,12 +762,16 @@ def run_powerflow(self, session, export_pypsa_dir=None, method='onthefly', debu raise NotImplementedError("Please use 'onthefly'.") elif method == 'onthefly': - components, components_data = self.export_to_pypsa(session, method) + buses_df, generators_df, lines_df, loads_df, transformer_df = initialize_component_dataframes() + components, _, components_data = fill_mvgd_component_dataframes(self.grid_district, buses_df, generators_df, + lines_df, loads_df, transformer_df, only_export_mv=only_calc_mv, + return_time_varying_data=True) pypsa_io.run_powerflow_onthefly(components, components_data, self, export_pypsa_dir=export_pypsa_dir, - debug=debug) + debug=debug, + export_result_dir=export_result_dir) def import_powerflow_results(self, session): """Assign results from power flow analysis to edges and nodes @@ -937,7 +928,7 @@ def connect_generators(self, debug=False): If True, information is printed during process """ - self._graph = lv_connect.lv_connect_generators(self.grid_district, self._graph, debug) + self._graph = lv_connect.lv_connect_generators(self.grid_district, self.graph, debug) def reinforce_grid(self): """ Performs grid reinforcement measures for current LV grid. @@ -945,6 +936,7 @@ def reinforce_grid(self): # TODO: Finalize docstring reinforce_grid(self, mode='LV') + def __repr__(self): return 'lv_grid_' + str(self.id_db) diff --git a/ding0/core/network/loads.py b/ding0/core/network/loads.py index a0f3187e..29965daa 100644 --- a/ding0/core/network/loads.py +++ b/ding0/core/network/loads.py @@ -30,7 +30,16 @@ def __init__(self, **kwargs): super().__init__(**kwargs) def __repr__(self): - return 'mv_load_' + str(self.id_db) + """ + The Representative of the + :class:`~.ding0.core.network.CircuitBreakerDing0` object. + + Returns + ------- + :obj:`str` + """ + return '_'.join(['Load', 'mvgd', str(self.grid.id_db), + str(self.id_db)]) class LVLoadDing0(LoadDing0): @@ -50,4 +59,14 @@ def __init__(self, **kwargs): self.load_no = kwargs.get('load_no', None) def __repr__(self): - return 'lv_load_' + str(self.id_db) + """ + The Representative of the + :class:`~.ding0.core.network.CircuitBreakerDing0` object. + + Returns + ------- + :obj:`str` + """ + return '_'.join(['Load', 'mvgd', str( + self.grid.grid_district.lv_load_area.mv_grid_district.mv_grid.\ + id_db), 'lvgd', str(self.grid.id_db), str(self.id_db)]) diff --git a/ding0/core/network/stations.py b/ding0/core/network/stations.py index ca4547e9..6f7828e6 100644 --- a/ding0/core/network/stations.py +++ b/ding0/core/network/stations.py @@ -157,7 +157,8 @@ def select_transformers(self): # add transformer on determined size with according parameters self.add_transformer(TransformerDing0(**{'grid': self.grid, 'v_level': self.grid.v_level, - 's_max_longterm': transformer['S_nom']})) + 's_max_longterm': transformer['S_nom'], + 'id_db': len(list(self.transformers())) + 1})) # calc residual load residual_apparent_power -= (load_factor_mv_trans * transformer['S_nom']) @@ -169,23 +170,45 @@ def select_transformers(self): self.add_transformer( TransformerDing0(grid=self.grid, v_level=self.grid.v_level, - s_max_longterm=transformer['S_nom'])) + s_max_longterm=transformer['S_nom'], + id_db=1)) # add redundant transformer of the size of the largest transformer s_max_max = max((o.s_max_a for o in self._transformers)) self.add_transformer(TransformerDing0(**{'grid': self.grid, 'v_level': self.grid.v_level, - 's_max_longterm': s_max_max})) + 's_max_longterm': s_max_max, + 'id_db': len(list(self.transformers())) + 1})) @property - def pypsa_id(self): - #TODO: docstring - """ Description + def pypsa_bus_id(self): + """ + Returns specific ID for representing bus in pypsa network. + + Returns + ------- + :obj:`str`: + Representative of pypsa bus + """ + return '_'.join(['Busbar', 'mvgd', str(self.grid.id_db), 'MV']) + + @property + def pypsa_bus0_id(self): """ - return '_'.join(['HV', str(self.grid.id_db), 'trd']) + Returns specific ID for representing bus in pypsa network. Representative node at high voltage side (also used + for transformer) + + Returns + ------- + :obj:`str`: + Representative of pypsa bus + """ + return '_'.join(['Busbar', 'mvgd', str(self.grid.id_db), 'HV']) def __repr__(self): - return 'mv_station_' + str(self.id_db) + return '_'.join(['MVStation', 'mvgd', str(self.grid.id_db)]) + + class LVStationDing0(StationDing0): @@ -213,13 +236,35 @@ def peak_generation(self): return sum([_.capacity for _ in self.grid.generators()]) @property - def pypsa_id(self): - #TODO: docstring - """ Description + def pypsa_bus_id(self): + """ + Returns specific ID for representing bus in pypsa network. + + Returns + ------- + :obj:`str`: + Representative of pypsa bus """ - return '_'.join(['MV', str( + return '_'.join(['BusBar', 'mvgd', str( self.grid.grid_district.lv_load_area.mv_grid_district.mv_grid.\ - id_db), 'tru', str(self.id_db)]) + id_db), 'lvgd', str(self.grid.id_db), 'LV']) + + @property + def pypsa_bus0_id(self): + """ + Returns specific ID for representing bus in pypsa network. Representative node at medium voltage side (also used + for transformer) + + Returns + ------- + :obj:`str`: + Representative of pypsa bus + """ + return '_'.join(['BusBar', 'mvgd', str( + self.grid.grid_district.lv_load_area.mv_grid_district.mv_grid. \ + id_db), 'lvgd', str(self.grid.id_db), 'MV']) def __repr__(self): - return 'lv_station_' + str(self.id_db) + return '_'.join(['LVStation', 'mvgd', str( + self.grid.grid_district.lv_load_area.mv_grid_district.mv_grid.\ + id_db), 'lvgd', str(self.grid.id_db)]) diff --git a/ding0/core/powerflow/__init__.py b/ding0/core/powerflow/__init__.py index 2a3e8432..02436c8f 100644 --- a/ding0/core/powerflow/__init__.py +++ b/ding0/core/powerflow/__init__.py @@ -14,7 +14,7 @@ from datetime import datetime -from pandas import DatetimeIndex +from pandas import DatetimeIndex, date_range class PFConfigDing0: @@ -74,9 +74,9 @@ def __init__(self, **kwargs): # create pandas DatetimeIndex object for given values self._timeranges = [] for _ in enumerate(self._scenarios): - self._timeranges.append(DatetimeIndex(freq=self._resolution, - periods=timesteps_count, - start=timestep_start)) + self._timeranges.append(date_range(freq=self._resolution, + periods=timesteps_count, + start=timestep_start)) elif len(self._scenarios) != len(self._timeranges): raise ValueError('PF config: Count of scenarios has to equal count of timeranges.') diff --git a/ding0/core/structure/regions.py b/ding0/core/structure/regions.py index e04d1d71..a078cc15 100644 --- a/ding0/core/structure/regions.py +++ b/ding0/core/structure/regions.py @@ -301,12 +301,20 @@ def network(self): return self.lv_load_area.network @property - def pypsa_id(self): - return '_'.join(['MV', str(self.grid.id_db), 'lac', str(self.id_db)]) + def pypsa_bus_id(self): + """Todo: Remove + Returns specific ID for representing bus in pypsa network. - def __repr__(self): - return 'lv_load_area_centre_' + str(self.id_db) + Returns + ------- + :obj:`str`: + Representative of pypsa bus + """ + return '_'.join(['Bus','mvgd', str(self.grid.id_db), 'lac', str(self.id_db)]) + def __repr__(self): + return '_'.join(['LVLoadAreaCentre', 'mvgd', str( + self.grid.id_db), str(self.id_db)]) class LVGridDistrictDing0(RegionDing0): # TODO: check docstring diff --git a/ding0/data/equipment-parameters_MV_transformers.csv b/ding0/data/equipment-parameters_MV_transformers.csv index 40885fb4..6dd15479 100644 --- a/ding0/data/equipment-parameters_MV_transformers.csv +++ b/ding0/data/equipment-parameters_MV_transformers.csv @@ -1,7 +1,6 @@ S_nom #kVA # Note that only values used for calculation are saved in this table. Only insert literature values here, calculations in code for better comprehensibility -20000 -32000 +25000 40000 63000 \ No newline at end of file diff --git a/ding0/examples/example_multiple_grid_districts.py b/ding0/examples/example_multiple_grid_districts.py index 6c8e33c2..7de79216 100755 --- a/ding0/examples/example_multiple_grid_districts.py +++ b/ding0/examples/example_multiple_grid_districts.py @@ -58,7 +58,7 @@ def create_results_dirs(base_path): def run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=False, - base_path=None): + base_path=None, save_as = 'csv'): """ Perform ding0 run on given grid districts @@ -79,6 +79,8 @@ def run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=False, windows systems). Specify your own but keep in mind that it a required a particular structure of subdirectories. + save_as: str + Type of file as which network should be exported, can be 'csv' or 'pkl' Returns ------- @@ -118,7 +120,13 @@ def run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=False, mv_grid_districts_no=[mvgd]) # save results - results.save_nd_to_pickle(nd, os.path.join(base_path, "grids")) + if save_as == 'csv': + nd.to_csv(os.path.join(base_path, "grids")) + elif save_as == 'pkl': + results.save_nd_to_pickle(nd, os.path.join(base_path, "grids")) + else: + msg.append("save_as not correct, network not saved.") + else: # try to perform ding0 run on grid district try: @@ -132,8 +140,14 @@ def run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=False, ignore_index=True) # if successful, save results else: - results.save_nd_to_pickle(nd, os.path.join(base_path, - "grids")) + # save results + if save_as == 'csv': + nd.to_csv(os.path.join(base_path, "grids")) + elif save_as == 'pkl': + results.save_nd_to_pickle(nd, os.path.join(base_path, + "grids")) + else: + msg.append("save_as not correct, network not saved.") except Exception as e: corrupt_grid_districts = corrupt_grid_districts.append( pd.Series({'id': mvgd, @@ -188,4 +202,5 @@ def run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=False, run_multiple_grid_districts(mv_grid_districts, run_id, failsafe=True, - base_path=base_path) + base_path=base_path, + save_as='csv') diff --git a/ding0/examples/example_parallel_multiple_grid_districts.py b/ding0/examples/example_parallel_multiple_grid_districts.py index 2af6917c..9172eacf 100644 --- a/ding0/examples/example_parallel_multiple_grid_districts.py +++ b/ding0/examples/example_parallel_multiple_grid_districts.py @@ -44,7 +44,7 @@ ######################################################## def parallel_run(districts_list, n_of_processes, n_of_districts, run_id, - base_path=None): + base_path=None, save_as = 'csv'): '''Organize parallel runs of ding0. The function take all districts in a list and divide them into @@ -102,7 +102,8 @@ def parallel_run(districts_list, n_of_processes, n_of_districts, run_id, mv_districts = th processes.append(mp.Process(target=process_runs, args=(mv_districts, n_of_districts, - output_info, run_id, base_path))) + output_info, run_id, base_path, + save_as))) ####################################################################### # Run processes for p in processes: @@ -121,7 +122,8 @@ def parallel_run(districts_list, n_of_processes, n_of_districts, run_id, return output ######################################################## -def process_runs(mv_districts, n_of_districts, output_info, run_id, base_path): +def process_runs(mv_districts, n_of_districts, output_info, run_id, base_path, + save_as): '''Runs a process organized by parallel_run() The function take all districts mv_districts and divide them into clusters @@ -145,6 +147,8 @@ def process_runs(mv_districts, n_of_districts, output_info, run_id, base_path): windows systems). Specify your own but keep in mind that it a required a particular structure of subdirectories. + save_as: str + Type of file as which network should be exported, can be 'csv' or 'pkl' See Also -------- @@ -176,7 +180,16 @@ def process_runs(mv_districts, n_of_districts, output_info, run_id, base_path): else: msg = '' status = 'OK' - results.save_nd_to_pickle(nw, os.path.join(base_path, run_id)) + if save_as == 'csv': + try: + nw.to_csv(os.path.join(base_path, run_id)) + except: + results.save_nd_to_pickle(nw, os.path.join(base_path, + run_id)) + elif save_as == 'pkl': + results.save_nd_to_pickle(nw, os.path.join(base_path, run_id)) + else: + msg = 'save_as not correct, network not saved.' output_clusters.append((nw_name,status,msg, nw.metadata)) except Exception as e: output_clusters.append((nw_name, 'corrupt dist', e, nw.metadata)) @@ -230,7 +243,7 @@ def process_metadata(meta): n_of_districts = 1 #n° of districts in each serial cluster out = parallel_run(mv_grid_districts, n_of_processes, n_of_districts, - run_id, base_path=base_path) + run_id, base_path=base_path, save_as='csv') # report on unsuccessful runs corrupt_out = [_[0:3] for _ in out if not _[1]=='OK'] diff --git a/ding0/examples/example_single_grid_district.py b/ding0/examples/example_single_grid_district.py index d5d99aff..0e9de3fe 100644 --- a/ding0/examples/example_single_grid_district.py +++ b/ding0/examples/example_single_grid_district.py @@ -47,5 +47,8 @@ nd.run_ding0(session=session, mv_grid_districts_no=mv_grid_districts) -# export grid to file (pickle) -save_nd_to_pickle(nd, filename='ding0_grids_example.pkl') +# export grid to csv-files +try: + nd.to_csv() +except: + save_nd_to_pickle(nd, filename='ding0_grids_example.pkl') diff --git a/ding0/flexopt/check_tech_constraints.py b/ding0/flexopt/check_tech_constraints.py index 1badf2a7..53d03468 100644 --- a/ding0/flexopt/check_tech_constraints.py +++ b/ding0/flexopt/check_tech_constraints.py @@ -255,7 +255,7 @@ def get_critical_line_loading(grid): # based on this tree, descendants of each node are accessible station = grid._station - tree = nx.dfs_tree(grid._graph, station) + tree = nx.dfs_tree(grid.graph, station) for node in tree.nodes(): @@ -413,7 +413,7 @@ def get_critical_voltage_at_nodes(grid): crit_nodes = [] # get list of nodes of main branch in right order - tree = nx.dfs_tree(grid._graph, grid._station) + tree = nx.dfs_tree(grid.graph, grid._station) # list for nodes of main branch main_branch = [] diff --git a/ding0/flexopt/reinforce_grid.py b/ding0/flexopt/reinforce_grid.py index c06a3bd1..4dc45dd9 100644 --- a/ding0/flexopt/reinforce_grid.py +++ b/ding0/flexopt/reinforce_grid.py @@ -66,7 +66,7 @@ def reinforce_grid(grid, mode): # if branches or stations have been reinforced: run PF again to check for voltage issues if crit_branches or crit_stations: - grid.network.run_powerflow(conn=None, method='onthefly') + grid.network.run_powerflow(method='onthefly') crit_nodes = check_voltage(grid, mode) crit_nodes_count_prev_step = len(crit_nodes) diff --git a/ding0/flexopt/reinforce_measures.py b/ding0/flexopt/reinforce_measures.py index 8cfe2f50..b1c4620c 100644 --- a/ding0/flexopt/reinforce_measures.py +++ b/ding0/flexopt/reinforce_measures.py @@ -225,7 +225,7 @@ def extend_substation(grid, critical_stations, grid_level): for t in range(0, trafo_cnt): lv_transformer = TransformerDing0( grid=grid, - id_db=id, + id_db=t + 1, v_level=v_nom, s_max_longterm=trafo_type['S_nom'], r_pu=trafo_type['r_pu'], @@ -271,7 +271,7 @@ def extend_substation_voltage(crit_stations, grid_level='LV'): v_diff_max_fc = cfg_ding0.get('assumptions', 'lv_max_v_level_fc_diff_normal') v_diff_max_lc = cfg_ding0.get('assumptions', 'lv_max_v_level_lc_diff_normal') - tree = nx.dfs_tree(grid._graph, grid._station) + tree = nx.dfs_tree(grid.graph, grid._station) for station in crit_stations: v_delta = max(station['v_diff']) @@ -295,7 +295,7 @@ def extend_substation_voltage(crit_stations, grid_level='LV'): # build a new transformer lv_transformer = TransformerDing0( grid=grid, - id_db=id, + id_db=len(list(station.transformers())) + 1, v_level=v_nom, s_max_longterm=trafo_min_size['S_nom'], r_pu=trafo_min_size['r_pu'], diff --git a/ding0/grid/lv_grid/build_grid.py b/ding0/grid/lv_grid/build_grid.py index 234ae856..92c5b803 100644 --- a/ding0/grid/lv_grid/build_grid.py +++ b/ding0/grid/lv_grid/build_grid.py @@ -164,7 +164,7 @@ def transformer(grid): for t in range(0, transformer_cnt): lv_transformer = TransformerDing0( grid=grid, - id_db=id, + id_db=t + 1, v_level=v_nom, s_max_longterm=transformer['S_nom'], r_pu=transformer['r_pu'], @@ -410,12 +410,13 @@ def lv_graph_attach_branch(): # distributors if load_no == 1: # case a: cable dist <-> station - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lvgd.lv_grid.station(), lv_cable_dist, branch=BranchDing0( length=val['load_distance'], kind='cable', + grid=lvgd.lv_grid, type=cable_type, id_db='branch_{sector}{branch}_{load}'.format( branch=branch_no, @@ -424,12 +425,13 @@ def lv_graph_attach_branch(): )) else: # case b: cable dist <-> cable dist - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lvgd.lv_grid._cable_distributors[-4], lv_cable_dist, branch=BranchDing0( length=val['load_distance'], kind='cable', + grid=lvgd.lv_grid, type=cable_type, id_db='branch_{sector}{branch}_{load}'.format( branch=branch_no, @@ -438,7 +440,7 @@ def lv_graph_attach_branch(): # create branch stub that connects the load to the # lv_cable_dist located in the branch line - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lv_cable_dist, lv_cable_dist_building, branch=BranchDing0( @@ -446,6 +448,7 @@ def lv_graph_attach_branch(): 'assumptions', 'lv_ria_branch_connection_distance'), kind='cable', + grid=lvgd.lv_grid, type=cable_type_stub, id_db='stub_{sector}{branch}_{load}'.format( branch=branch_no, @@ -453,12 +456,13 @@ def lv_graph_attach_branch(): sector=sector_short)) ) - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lv_cable_dist_building, lv_load, branch=BranchDing0( length=1, kind='cable', + grid=lvgd.lv_grid, type=cable_type_stub, id_db='stub_{sector}{branch}_{load}'.format( branch=branch_no, @@ -640,7 +644,7 @@ def build_lv_graph_residential(lvgd, selected_string_df): # get overall count of branches to set unique branch_no branch_count_sum = len(list( - lvgd.lv_grid._graph.neighbors(lvgd.lv_grid.station()))) + lvgd.lv_grid.graph.neighbors(lvgd.lv_grid.station()))) # iterate over it's occurences for branch_no in range(1, int(row['occurence']) + 1): @@ -691,12 +695,13 @@ def build_lv_graph_residential(lvgd, selected_string_df): # connect current lv_cable_dist to station if house_branch == 1: # edge connect first house branch in branch with the station - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lvgd.lv_grid.station(), lv_cable_dist, branch=BranchDing0( length=row['distance house branch'], kind='cable', + grid=lvgd.lv_grid, type=cable_type, id_db='branch_{sector}{branch}_{load}'.format( branch=hh_branch, @@ -705,12 +710,13 @@ def build_lv_graph_residential(lvgd, selected_string_df): )) # connect current lv_cable_dist to last one else: - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lvgd.lv_grid._cable_distributors[-4], lv_cable_dist, branch=BranchDing0( length=row['distance house branch'], kind='cable', + grid=lvgd.lv_grid, type=lvgd.lv_grid.network.static_data[ 'LV_cables'].loc[cable_name], id_db='branch_{sector}{branch}_{load}'.format( @@ -722,13 +728,14 @@ def build_lv_graph_residential(lvgd, selected_string_df): house_cable_name = row['cable type {}'.format(variant)] + \ ' 4x1x{}'.format( row['cable width {}'.format(variant)]) - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lv_cable_dist, lv_cable_dist_building, branch=BranchDing0( length=row['length house branch {}'.format( variant)], kind='cable', + grid=lvgd.lv_grid, type=lvgd.lv_grid.network.static_data['LV_cables']. \ loc[house_cable_name], id_db='branch_{sector}{branch}_{load}'.format( @@ -737,12 +744,13 @@ def build_lv_graph_residential(lvgd, selected_string_df): sector='HH')) ) - lvgd.lv_grid._graph.add_edge( + lvgd.lv_grid.graph.add_edge( lv_cable_dist_building, lv_load, branch=BranchDing0( length=1, kind='cable', + grid=lvgd.lv_grid, type=lvgd.lv_grid.network.static_data['LV_cables']. \ loc[house_cable_name], id_db='branch_{sector}{branch}_{load}'.format( diff --git a/ding0/grid/lv_grid/check.py b/ding0/grid/lv_grid/check.py index 7a0596fc..5cbffd6a 100644 --- a/ding0/grid/lv_grid/check.py +++ b/ding0/grid/lv_grid/check.py @@ -29,7 +29,7 @@ def get_branches(grid): station = grid._station - tree = nx.dfs_tree(grid._graph, station) + tree = nx.dfs_tree(grid.graph, station) # TODO: idea # 1. build tree from lv_grid station as root -> diretions should point to @@ -39,18 +39,18 @@ def get_branches(grid): # 3. Extract nodes belonging to main route of a branch by checking all # successors if these are LVCalbleDistributors # notes and hints: - # 1. associated edges can be accessed via grid._graph.in_edges() - # respectively grid._graph.out_edges() + # 1. associated edges can be accessed via grid.graph.in_edges() + # respectively grid.graph.out_edges() # 2. when using nx.descendants(tree, station) make sure the order of nodes # is maintained as this is important to properly assess voltage and over- # loading issues - # first_cbl_dists = [x for x in grid._graph.neighbors(station) + # first_cbl_dists = [x for x in grid.graph.neighbors(station) # if isinstance(x, LVCableDistributorDing0)] # if len(first_cbl_dists) > 0: - # ancestors = nx.ancestors(grid._graph, first_cbl_dists[0]) + # ancestors = nx.ancestors(grid.graph, first_cbl_dists[0]) # else: # ancestors = None # return ancestors diff --git a/ding0/grid/lv_grid/lv_connect.py b/ding0/grid/lv_grid/lv_connect.py index 24307253..351ac83f 100644 --- a/ding0/grid/lv_grid/lv_connect.py +++ b/ding0/grid/lv_grid/lv_connect.py @@ -16,7 +16,7 @@ from ding0.core.network import BranchDing0 from ding0.tools import config as cfg_ding0 -from ding0.tools.geo import calc_geo_dist_vincenty +from ding0.tools.geo import calc_geo_dist from ding0.grid.tools import cable_type import logging import random @@ -78,7 +78,7 @@ def lv_connect_generators(lv_grid_district, graph, debug=False): if generator.v_level == 6: lv_station = lv_grid_district.lv_grid.station() - branch_length = calc_geo_dist_vincenty(generator, lv_station) + branch_length = calc_geo_dist(generator, lv_station) branch_type = cable_type( generator.capacity / (cable_lf * cos_phi_gen), v_nom, @@ -86,6 +86,7 @@ def lv_connect_generators(lv_grid_district, graph, debug=False): branch = BranchDing0(length=branch_length, kind='cable', + grid = lv_grid_district.lv_grid, type=branch_type) graph.add_edge(generator, lv_station, branch=branch) @@ -142,6 +143,7 @@ def lv_connect_generators(lv_grid_district, graph, debug=False): # connect to cable dist. of building branch = BranchDing0(length=1, kind='cable', + grid=lv_grid_district.lv_grid, type=branch_type) graph.add_edge(generator, lv_conn_target, branch=branch) diff --git a/ding0/grid/mv_grid/mv_connect.py b/ding0/grid/mv_grid/mv_connect.py index ef5b3be4..a5e60f78 100644 --- a/ding0/grid/mv_grid/mv_connect.py +++ b/ding0/grid/mv_grid/mv_connect.py @@ -14,10 +14,9 @@ import os -import pyproj -from functools import partial import time import logging +from pyproj import Transformer from ding0.core.network.stations import * from ding0.core.network import BranchDing0, GeneratorDing0 @@ -25,7 +24,7 @@ from ding0.core.structure.groups import LoadAreaGroupDing0 from ding0.core.structure.regions import LVLoadAreaCentreDing0 from ding0.tools import config as cfg_ding0 -from ding0.tools.geo import calc_geo_branches_in_buffer,calc_geo_dist_vincenty,\ +from ding0.tools.geo import calc_geo_branches_in_buffer,calc_geo_dist,\ calc_geo_centre_point, calc_geo_branches_in_polygon if not 'READTHEDOCS' in os.environ: @@ -407,19 +406,21 @@ def connect_node(node, node_shp, mv_grid, target_obj, proj, graph, conn_dist_rin # along node) graph.remove_edge(adj_node1, adj_node2) - branch_length = calc_geo_dist_vincenty(adj_node1, node) + branch_length = calc_geo_dist(adj_node1, node) branch = BranchDing0(length=branch_length, circuit_breaker=circ_breaker, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring) if circ_breaker is not None: circ_breaker.branch = branch graph.add_edge(adj_node1, node, branch=branch) - branch_length = calc_geo_dist_vincenty(adj_node2, node) + branch_length = calc_geo_dist(adj_node2, node) graph.add_edge(adj_node2, node, branch=BranchDing0(length=branch_length, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring)) @@ -454,19 +455,21 @@ def connect_node(node, node_shp, mv_grid, target_obj, proj, graph, conn_dist_rin graph.remove_edge(adj_node1, adj_node2) - branch_length = calc_geo_dist_vincenty(adj_node1, cable_dist) + branch_length = calc_geo_dist(adj_node1, cable_dist) branch = BranchDing0(length=branch_length, circuit_breaker=circ_breaker, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring) if circ_breaker is not None: circ_breaker.branch = branch graph.add_edge(adj_node1, cable_dist, branch=branch) - branch_length = calc_geo_dist_vincenty(adj_node2, cable_dist) + branch_length = calc_geo_dist(adj_node2, cable_dist) graph.add_edge(adj_node2, cable_dist, branch=BranchDing0(length=branch_length, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring)) @@ -477,9 +480,10 @@ def connect_node(node, node_shp, mv_grid, target_obj, proj, graph, conn_dist_rin branch_kind = mv_grid.default_branch_kind branch_type = mv_grid.default_branch_type - branch_length = calc_geo_dist_vincenty(node, cable_dist) + branch_length = calc_geo_dist(node, cable_dist) graph.add_edge(node, cable_dist, branch=BranchDing0(length=branch_length, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring)) target_obj_result = cable_dist @@ -524,9 +528,10 @@ def connect_node(node, node_shp, mv_grid, target_obj, proj, graph, conn_dist_rin branch_ring = mv_grid.get_ring_from_node(target_obj['obj']) # add new branch for satellite (station to station) - branch_length = calc_geo_dist_vincenty(node, target_obj['obj']) + branch_length = calc_geo_dist(node, target_obj['obj']) graph.add_edge(node, target_obj['obj'], branch=BranchDing0(length=branch_length, kind=branch_kind, + grid=mv_grid, type=branch_type, ring=branch_ring)) target_obj_result = target_obj['obj'] @@ -570,9 +575,10 @@ def disconnect_node(node, target_obj_result, graph, debug): if len(neighbor_nodes) == 2: node.grid.remove_cable_distributor(target_obj_result) - branch_length = calc_geo_dist_vincenty(neighbor_nodes[0], neighbor_nodes[1]) + branch_length = calc_geo_dist(neighbor_nodes[0], neighbor_nodes[1]) graph.add_edge(neighbor_nodes[0], neighbor_nodes[1], branch=BranchDing0(length=branch_length, kind=branch_kind, + grid=node.grid, type=branch_type, ring=branch_ring)) @@ -656,16 +662,9 @@ def mv_connect_satellites(mv_grid, graph, mode='normal', debug=False): start = time.time() # WGS84 (conformal) to ETRS (equidistant) projection - proj1 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system - + proj1 = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform # ETRS (equidistant) to WGS84 (conformal) projection - proj2 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:3035'), # source coordinate system - pyproj.Proj(init='epsg:4326')) # destination coordinate system + proj2 = Transformer.from_crs("epsg:3035", "epsg:4326", always_xy=True).transform # check all nodes if mode == 'normal': @@ -741,16 +740,9 @@ def mv_connect_stations(mv_grid_district, graph, debug=False): """ # WGS84 (conformal) to ETRS (equidistant) projection - proj1 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system - + proj1 = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform # ETRS (equidistant) to WGS84 (conformal) projection - proj2 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:3035'), # source coordinate system - pyproj.Proj(init='epsg:4326')) # destination coordinate system + proj2 = Transformer.from_crs("epsg:3035", "epsg:4326", always_xy=True).transform conn_dist_weight = cfg_ding0.get('mv_connect', 'load_area_sat_conn_dist_weight') conn_dist_ring_mod = cfg_ding0.get('mv_connect', 'load_area_stat_conn_dist_ring_mod') @@ -786,10 +778,11 @@ def mv_connect_stations(mv_grid_district, graph, debug=False): # delete old branch to Load Area centre and create a new one to LV station graph.remove_edge(lv_load_area_centre, node) - branch_length = calc_geo_dist_vincenty(lv_station, node) + branch_length = calc_geo_dist(lv_station, node) branch = BranchDing0(length=branch_length, circuit_breaker=circ_breaker, kind=branch_kind, + grid=mv_grid_district.mv_grid, type=branch_type, ring=branch_ring) if circ_breaker is not None: @@ -868,10 +861,11 @@ def mv_connect_stations(mv_grid_district, graph, debug=False): # delete old branch to Load Area centre and create a new one to LV station graph.remove_edge(lv_load_area_centre, node) - branch_length = calc_geo_dist_vincenty(cable_dist, node) + branch_length = calc_geo_dist(cable_dist, node) branch = BranchDing0(length=branch_length, circuit_breaker=circ_breaker, kind=branch_kind, + grid=mv_grid_district.mv_grid, type=branch_type, ring=branch_ring) if circ_breaker is not None: @@ -921,16 +915,9 @@ def mv_connect_generators(mv_grid_district, graph, debug=False): generator_buffer_radius_inc = cfg_ding0.get('mv_connect', 'generator_buffer_radius_inc') # WGS84 (conformal) to ETRS (equidistant) projection - proj1 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system - + proj1 = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform # ETRS (equidistant) to WGS84 (conformal) projection - proj2 = partial( - pyproj.transform, - pyproj.Proj(init='epsg:3035'), # source coordinate system - pyproj.Proj(init='epsg:4326')) # destination coordinate system + proj2 = Transformer.from_crs("epsg:3035", "epsg:4326", always_xy=True).transform for generator in sorted(mv_grid_district.mv_grid.generators(), key=lambda x: repr(x)): @@ -938,7 +925,7 @@ def mv_connect_generators(mv_grid_district, graph, debug=False): if generator.v_level == 4: mv_station = mv_grid_district.mv_grid.station() - branch_length = calc_geo_dist_vincenty(generator, mv_station) + branch_length = calc_geo_dist(generator, mv_station) # TODO: set branch type to something reasonable (to be calculated) branch_kind = mv_grid_district.mv_grid.default_branch_kind @@ -946,6 +933,7 @@ def mv_connect_generators(mv_grid_district, graph, debug=False): branch = BranchDing0(length=branch_length, kind=branch_kind, + grid=mv_grid_district.mv_grid, type=branch_type, ring=None) graph.add_edge(generator, mv_station, branch=branch) diff --git a/ding0/grid/mv_grid/mv_routing.py b/ding0/grid/mv_grid/mv_routing.py index e017b3be..88601eb6 100644 --- a/ding0/grid/mv_grid/mv_routing.py +++ b/ding0/grid/mv_grid/mv_routing.py @@ -18,7 +18,7 @@ from ding0.grid.mv_grid.models.models import Graph, Node from ding0.grid.mv_grid.util import util, data_input from ding0.grid.mv_grid.solvers import savings, local_search -from ding0.tools.geo import calc_geo_dist_vincenty, calc_geo_dist_matrix_vincenty, calc_geo_centre_point +from ding0.tools.geo import calc_geo_dist, calc_geo_dist_matrix, calc_geo_centre_point from ding0.tools import config as cfg_ding0 from ding0.core.network.stations import * from ding0.core.structure.regions import LVLoadAreaCentreDing0 @@ -93,7 +93,7 @@ def ding0_graph_to_routing_specs(graph): specs['NODE_COORD_SECTION'] = nodes_pos specs['DEMAND'] = nodes_demands - specs['MATRIX'] = calc_geo_dist_matrix_vincenty(nodes_pos) + specs['MATRIX'] = calc_geo_dist_matrix(nodes_pos) specs['IS_AGGREGATED'] = nodes_agg return specs @@ -155,7 +155,7 @@ def routing_solution_to_ding0_graph(graph, solution): edges.append((r._nodes[-1], depot)) # create MV Branch object for every edge in `edges` - mv_branches = [BranchDing0() for _ in edges] + mv_branches = [BranchDing0(grid=depot_node.grid) for _ in edges] edges_with_branches = list(zip(edges, mv_branches)) # recalculate circuit breaker positions for final solution, create it and set associated branch. @@ -204,7 +204,7 @@ def routing_solution_to_ding0_graph(graph, solution): node1.lv_load_area.ring = ring # set branch length - b.length = calc_geo_dist_vincenty(node1, node2) + b.length = calc_geo_dist(node1, node2) # set branch kind and type # 1) default diff --git a/ding0/grid/mv_grid/tools.py b/ding0/grid/mv_grid/tools.py index cc995522..9ae99721 100644 --- a/ding0/grid/mv_grid/tools.py +++ b/ding0/grid/mv_grid/tools.py @@ -14,7 +14,7 @@ from ding0.core.network.stations import LVStationDing0 -from ding0.core.network import CableDistributorDing0, GeneratorDing0 +from ding0.core.network import CableDistributorDing0, GeneratorDing0, LoadDing0 from ding0.tools.geo import calc_geo_centre_point from ding0.tools import config as cfg_ding0 import logging @@ -24,12 +24,13 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): - """ Calculates the optimal position of a circuit breaker on all routes of mv_grid, adds and connects them to graph. + """ Calculates the optimal position of a circuit breaker at lv stations (if existing) + on all routes of mv_grid, adds and connects them to graph. Args ---- mv_grid: MVGridDing0 - Description#TODO + MV grid instance debug: bool, defaults to False If True, information is printed during process @@ -42,6 +43,10 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): breaker is defined as the position (virtual cable) between two nodes where the conveyed current is minimal on the route. Instead of the peak current, the peak load is used here (assuming a constant voltage). + The circuit breaker will be installed to a LV station, unless none + exists in a ring. In this case, a node of arbitrary type is chosen for the + location of the switch disconnecter. + If a ring is dominated by loads (peak load > peak capacity of generators), only loads are used for determining the location of circuit breaker. If generators are prevailing (peak load < peak capacity of generators), only generator capacities are considered for relocation. @@ -62,12 +67,51 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): """ + def relocate_circuit_breaker(): + """ + Moves circuit breaker to different position in ring. + + + Note + ----- + Branch of circuit breaker should be set to None in advance. + So far only useful to relocate all circuit breakers in a grid as the + position of the inserted circuit breaker is not checked beforehand. If + used for single circuit breakers make sure to insert matching ring and + circuit breaker. + """ + node_cb = ring[position] + # check if node is last node of ring + if position < len(ring): + # check which branch to disconnect by determining load difference + # of neighboring nodes + diff2 = abs(sum(node_peak_data[0:position+1]) - + sum(node_peak_data[position+1:len(node_peak_data)])) + if diff2 < diff_min: + node2 = ring[position+1] + else: + node2 = ring[position-1] + else: + node2 = ring[position-1] + + circ_breaker.branch = mv_grid.graph.adj[node_cb][node2]['branch'] + circ_breaker.branch_nodes = (node_cb, node2) + circ_breaker.switch_node = node_cb + circ_breaker.branch.circuit_breaker = circ_breaker + circ_breaker.geo_data = calc_geo_centre_point(node_cb, node2) + + # get power factor for loads and generators cos_phi_load = cfg_ding0.get('assumptions', 'cos_phi_load') cos_phi_feedin = cfg_ding0.get('assumptions', 'cos_phi_gen') + + # "disconnect" circuit breakers from branches + for cb in mv_grid.circuit_breakers(): + cb.branch.circuit_breaker = None # iterate over all rings and circuit breakers - for ring, circ_breaker in zip(mv_grid.rings_nodes(include_root_node=False), mv_grid.circuit_breakers()): + for ring, circ_breaker in zip(mv_grid.rings_nodes(include_root_node=False), + mv_grid.circuit_breakers()): nodes_peak_load = [] nodes_peak_generation = [] @@ -78,7 +122,8 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): # node is LV station -> get peak load and peak generation if isinstance(node, LVStationDing0): nodes_peak_load.append(node.peak_load / cos_phi_load) - nodes_peak_generation.append(node.peak_generation / cos_phi_feedin) + nodes_peak_generation.append( + node.peak_generation / cos_phi_feedin) # node is cable distributor -> get all connected nodes of subtree using graph_nodes_from_subtree() elif isinstance(node, CableDistributorDing0): @@ -106,9 +151,10 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): else: raise ValueError('Ring node has got invalid type.') - if mode == 'load': node_peak_data = nodes_peak_load + elif mode == 'generation': + node_peak_data = nodes_peak_generation elif mode == 'loadgen': # is ring dominated by load or generation? # (check if there's more load than generation in ring or vice versa) @@ -120,37 +166,47 @@ def set_circuit_breakers(mv_grid, mode='load', debug=False): raise ValueError('parameter \'mode\' is invalid!') # calc optimal circuit breaker position + # Set start value for difference in ring halfs + diff_min = 10e9 - # set init value - diff_min = 10e6 + # if none of the nodes is of the type LVStation, a switch + # disconnecter will be installed anyways. + if any([isinstance(n, LVStationDing0) for n in ring]): + has_lv_station = True + else: + has_lv_station = False + logging.debug("Ring {} does not have a LV station. " + "Switch disconnecter is installed at arbitrary " + "node.".format(ring)) # check where difference of demand/generation in two half-rings is minimal for ctr in range(len(node_peak_data)): - # split route and calc demand difference - route_data_part1 = sum(node_peak_data[0:ctr]) - route_data_part2 = sum(node_peak_data[ctr:len(node_peak_data)]) - diff = abs(route_data_part1 - route_data_part2) - - # equality has to be respected, otherwise comparison stops when demand/generation=0 - if diff <= diff_min: - diff_min = diff - position = ctr - else: - break + # check if node that owns the switch disconnector is of type + # LVStation + if isinstance(ring[ctr], LVStationDing0) or not has_lv_station: + # split route and calc demand difference + route_data_part1 = sum(node_peak_data[0:ctr]) + route_data_part2 = sum(node_peak_data[ctr:len(node_peak_data)]) + diff = abs(route_data_part1 - route_data_part2) + + # equality has to be respected, otherwise comparison stops when demand/generation=0 + if diff <= diff_min: + diff_min = diff + position = ctr + else: + break # relocate circuit breaker - node1 = ring[position-1] - node2 = ring[position] - circ_breaker.branch = mv_grid._graph.adj[node1][node2]['branch'] - circ_breaker.branch_nodes = (node1, node2) - circ_breaker.branch.circuit_breaker = circ_breaker - circ_breaker.geo_data = calc_geo_centre_point(node1, node2) + relocate_circuit_breaker() if debug: logger.debug('Ring: {}'.format(ring)) - logger.debug('Circuit breaker {0} was relocated to edge {1}-{2} ' - '(position on route={3})'.format( - circ_breaker, node1, node2, position) + logger.debug('Circuit breaker {0} was relocated to edge {1} ' + '(position on route={2})'.format( + circ_breaker, repr(circ_breaker.branch), position) ) logger.debug('Peak load sum: {}'.format(sum(nodes_peak_load))) logger.debug('Peak loads: {}'.format(nodes_peak_load)) + + + diff --git a/ding0/tools/geo.py b/ding0/tools/geo.py index d19039df..9e1a10c3 100644 --- a/ding0/tools/geo.py +++ b/ding0/tools/geo.py @@ -14,9 +14,8 @@ import os -from geopy.distance import vincenty -import pyproj -from functools import partial +from geopy.distance import geodesic +from pyproj import Transformer from ding0.tools import config as cfg_ding0 import logging @@ -116,16 +115,16 @@ def calc_geo_branches_in_buffer(node, mv_grid, radius, radius_inc, proj): return branches -def calc_geo_dist_vincenty(node_source, node_target): +def calc_geo_dist(node_source, node_target): """ Calculates the geodesic distance between `node_source` and `node_target` incorporating the detour factor specified in :file:`ding0/ding0/config/config_calc.cfg`. Parameters ---------- node_source: LVStationDing0, GeneratorDing0, or CableDistributorDing0 - source node, member of GridDing0._graph + source node, member of GridDing0.graph node_target: LVStationDing0, GeneratorDing0, or CableDistributorDing0 - target node, member of GridDing0._graph + target node, member of GridDing0.graph Returns ------- @@ -135,8 +134,8 @@ def calc_geo_dist_vincenty(node_source, node_target): branch_detour_factor = cfg_ding0.get('assumptions', 'branch_detour_factor') - # notice: vincenty takes (lat,lon) - branch_length = branch_detour_factor * vincenty((node_source.geo_data.y, node_source.geo_data.x), + # notice: geodesic takes (lat,lon) + branch_length = branch_detour_factor * geodesic((node_source.geo_data.y, node_source.geo_data.x), (node_target.geo_data.y, node_target.geo_data.x)).m # ========= BUG: LINE LENGTH=0 WHEN CONNECTING GENERATORS =========== @@ -152,14 +151,13 @@ def calc_geo_dist_vincenty(node_source, node_target): return branch_length -def calc_geo_dist_matrix_vincenty(nodes_pos): +def calc_geo_dist_matrix(nodes_pos): """ Calculates the geodesic distance between all nodes in `nodes_pos` incorporating the detour factor in config_calc.cfg. - For every two points/coord it uses geopy's vincenty function (formula devised by Thaddeus Vincenty, - with an accurate ellipsoidal model of the earth). As default ellipsoidal model of the earth WGS-84 is used. + For every two points/coord it uses geopy's geodesic function. As default ellipsoidal model of the earth WGS-84 is used. For more options see - https://geopy.readthedocs.org/en/1.10.0/index.html?highlight=vincenty#geopy.distance.vincenty + https://geopy.readthedocs.io/en/stable/index.html?highlight=geodesic#geopy.distance.geodesic Parameters ---------- @@ -196,8 +194,8 @@ def calc_geo_dist_matrix_vincenty(nodes_pos): for j in nodes_pos: pos_dest = tuple(nodes_pos[j]) - # notice: vincenty takes (lat,lon), thus the (x,y)/(lon,lat) tuple is reversed - distance = branch_detour_factor * vincenty(tuple(reversed(pos_origin)), tuple(reversed(pos_dest))).km + # notice: geodesic takes (lat,lon), thus the (x,y)/(lon,lat) tuple is reversed + distance = branch_detour_factor * geodesic(tuple(reversed(pos_origin)), tuple(reversed(pos_dest))).km matrix[i][j] = distance return matrix @@ -210,9 +208,9 @@ def calc_geo_centre_point(node_source, node_target): Parameters ---------- node_source: LVStationDing0, GeneratorDing0, or CableDistributorDing0 - source node, member of GridDing0._graph + source node, member of GridDing0.graph node_target: LVStationDing0, GeneratorDing0, or CableDistributorDing0 - target node, member of GridDing0._graph + target node, member of GridDing0.graph Returns ------- @@ -220,20 +218,14 @@ def calc_geo_centre_point(node_source, node_target): Distance in m. """ - proj_source = partial( - pyproj.transform, - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system - + # WGS84 (conformal) to ETRS (equidistant) projection + proj_source = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform # ETRS (equidistant) to WGS84 (conformal) projection - proj_target = partial( - pyproj.transform, - pyproj.Proj(init='epsg:3035'), # source coordinate system - pyproj.Proj(init='epsg:4326')) # destination coordinate system + proj_target = Transformer.from_crs("epsg:3035", "epsg:4326", always_xy=True).transform branch_shp = transform(proj_source, LineString([node_source.geo_data, node_target.geo_data])) - distance = vincenty((node_source.geo_data.y, node_source.geo_data.x), + distance = geodesic((node_source.geo_data.y, node_source.geo_data.x), (node_target.geo_data.y, node_target.geo_data.x)).m centre_point_shp = transform(proj_target, branch_shp.interpolate(distance/2)) diff --git a/ding0/tools/plots.py b/ding0/tools/plots.py index fa7326b6..70feac4b 100644 --- a/ding0/tools/plots.py +++ b/ding0/tools/plots.py @@ -201,7 +201,7 @@ def plot_region_data(ax): 'instance of MVGridDing0. Plotting is skipped.') return - g = grid._graph + g = grid.graph model_proj = grid.network.config['geo']['srid'] if testcase == 'feedin': diff --git a/ding0/tools/pypsa_io.py b/ding0/tools/pypsa_io.py index 74cfba9c..aeb226c5 100644 --- a/ding0/tools/pypsa_io.py +++ b/ding0/tools/pypsa_io.py @@ -16,22 +16,34 @@ import ding0 from ding0.tools import config as cfg_ding0 +from ding0.tools.tools import merge_two_dicts from ding0.core.network.stations import LVStationDing0, MVStationDing0 -from ding0.core.network import BranchDing0, CircuitBreakerDing0, GeneratorDing0 +from ding0.core.network import LoadDing0, CircuitBreakerDing0, \ + GeneratorDing0, GeneratorFluctuatingDing0, TransformerDing0 from ding0.core import MVCableDistributorDing0 -from ding0.core.structure.regions import LVLoadAreaCentreDing0 +from ding0.core.structure.regions import LVLoadAreaCentreDing0, \ + LVGridDistrictDing0, LVLoadAreaDing0 from ding0.core.powerflow import q_sign +from ding0.core.network.cable_distributors import LVCableDistributorDing0 +from ding0.core import network as ding0_nw +from ding0.tools.tools import merge_two_dicts_of_dataframes +from ding0.grid.lv_grid.build_grid import select_transformers from geoalchemy2.shape import from_shape from math import tan, acos, pi, sqrt -from pandas import Series, DataFrame, DatetimeIndex +from pandas import Series, DataFrame, date_range from pypsa.io import import_series_from_dataframe from pypsa import Network +from shapely.geometry import Point from datetime import datetime import sys import os import logging +import pandas as pd +import numpy as np +from networkx import connected_components + if not 'READTHEDOCS' in os.environ: from shapely.geometry import LineString @@ -60,317 +72,1220 @@ def export_to_dir(network, export_dir): export_dir)) -def nodes_to_dict_of_dataframes(grid, nodes, lv_transformer=True): +def initialize_component_dataframes(): + """ + Initializes and returns empty component dataframes + + Returns + ------- + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, s_nom, + num_parallel, type + transformer_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption, sector + """ + cols = {'buses_columns': ['name', 'x', 'y', 'mv_grid_id', + 'lv_grid_id', 'v_nom', 'in_building'], + 'lines_columns': ['name', 'bus0', 'bus1', 'length', 'r', 'x', + 's_nom', 'num_parallel', 'kind', 'type_info'], + 'transformer_columns': ['name', 'bus0', 'bus1', 's_nom', 'r', + 'x', 'type', 'type_info'], + 'generators_columns': ['name', 'bus', 'control', 'p_nom', 'type', + 'weather_cell_id', 'subtype'], + 'loads_columns': ['name', 'bus', 'peak_load', + 'annual_consumption', 'sector']} + # initialize dataframes + buses_df = pd.DataFrame(columns=cols['buses_columns']) + lines_df = pd.DataFrame(columns=cols['lines_columns']) + transformer_df = pd.DataFrame(columns=cols['transformer_columns']) + generators_df = pd.DataFrame(columns=cols['generators_columns']) + loads_df = pd.DataFrame(columns=cols['loads_columns']) + return buses_df, generators_df, lines_df, loads_df, transformer_df + + +def fill_mvgd_component_dataframes(mv_grid_district, buses_df, generators_df, + lines_df, loads_df, transformer_df, + only_export_mv=False, + return_time_varying_data=False): + """ + Returns component and if necessary time varying data for power flow + or csv export of inserted mv grid district + + Parameters + ---------- + mv_grid_district: :class:`~.ding0.core.structure.regions.MVGridDistrictDing0` + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, s_nom, + num_parallel, type + transformer_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption, sector + only_export_mv: :obj:`bool` + Bool that determines export modes for grid district, + if True only mv grids are exported with lv grids aggregated at + respective station, + if False lv grids are fully exported + return_time_varying_data: :obj:`bool` + States whether time varying data needed for power flow calculations + are constructed as well. Set to True to run power flow, set to False + to export network to csv. + + Returns + ------- + mv_components: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Line', + 'Load', 'Transformer', 'Switch' + network_df: :pandas:`pandas.DataFrame` + Dataframe of network containing name, srid, geom and population + mv_component_data: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Load', + needed for power flow calculations + """ + srid = str(int(cfg_ding0.get('geo', 'srid'))) + # fill dataframes + network_df = pd.DataFrame( + {'name': [mv_grid_district.id_db], 'srid': [srid], + 'mv_grid_district_geom': [mv_grid_district.geo_data], + 'mv_grid_district_population': [0]}).set_index('name') + # add mv grid components + mv_grid = mv_grid_district.mv_grid + mv_components, mv_component_data = \ + fill_component_dataframes(mv_grid, buses_df, lines_df, transformer_df, + generators_df, loads_df, only_export_mv, + return_time_varying_data) + # move hvmv transformer to own entry to handle differently and ignore in + # power flow + hvmv_transformers = mv_components['Transformer'].loc[ + ~mv_components['Transformer'].bus0.isin(mv_components['Bus'].index)] + mv_components['HVMV_Transformer'] = hvmv_transformers + mv_components['Transformer'].drop(hvmv_transformers.index, inplace=True) + logger.info('MV grid {} exported to pypsa format.'.format( + str(mv_grid_district.id_db))) + if not only_export_mv: + # add lv grid components + for lv_load_area in mv_grid_district.lv_load_areas(): + for lv_grid_district in lv_load_area.lv_grid_districts(): + lv_grid = lv_grid_district.lv_grid + lv_components_tmp, lv_component_data = \ + fill_component_dataframes(lv_grid, buses_df, lines_df, + transformer_df, generators_df, + loads_df, only_export_mv, + return_time_varying_data) + mv_components = \ + merge_two_dicts_of_dataframes(mv_components, + lv_components_tmp) + mv_component_data = \ + merge_two_dicts_of_dataframes(mv_component_data, + lv_component_data) + logger.info('LV grid {} exported to pypsa format.'.format( + str(lv_grid.id_db))) + return mv_components, network_df, mv_component_data + + +def fill_component_dataframes(grid, buses_df, lines_df, transformer_df, + generators_df, loads_df, only_export_mv=False, + return_time_varying_data=False): """ - Creates dictionary of dataframes containing grid + Returns component and if necessary time varying data for power flow + or csv export of inserted mv or lv grid Parameters ---------- - grid: ding0.Network + grid: :class:`~.ding0.core.network.GridDing0` + Grid that is exported + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, s_nom, + num_parallel, type_info + transformer_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption, sector + only_export_mv: :obj:`bool` + return_time_varying_data: :obj:`bool` + States whether time varying data needed for power flow calculations + are constructed as well. Set to True to run power flow, set to False + to export network to csv. + + Returns + ------- + components: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Line', 'Load', + 'Transformer', 'Switch' + component_data: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Load', + needed for power flow calculations + """ + + # fill list of open circuit breakers + open_circuit_breakers = [] + if hasattr(grid, '_circuit_breakers'): + for circuit_breaker in grid.circuit_breakers(): + if circuit_breaker.status == 'open': + open_circuit_breakers.append(repr(circuit_breaker)) + circuit_breaker.close() + # get all grid nodes + nodes = grid.graph.nodes() + # get all grid edges + edges = [edge for edge in list(grid.graph_edges()) + if (edge['adj_nodes'][0] in nodes and not isinstance( + edge['adj_nodes'][0], LVLoadAreaCentreDing0)) + and (edge['adj_nodes'][1] in nodes and not isinstance( + edge['adj_nodes'][1], LVLoadAreaCentreDing0))] + # add station transformers to respective dataframe + for trafo in grid.station()._transformers: + if trafo.x_pu == None: + type = '{} MVA 110/{} kV'.format(int(trafo.s_max_a/1e3), grid.v_level) + transformer_df = append_transformers_df(transformer_df, + trafo, type) + else: + transformer_df = append_transformers_df(transformer_df, trafo) + # handle all nodes and append to respective dataframes + node_components, component_data = \ + nodes_to_dict_of_dataframes(grid, nodes, buses_df, generators_df, + loads_df, transformer_df, only_export_mv, + return_time_varying_data) + # handle all edges and append to respective dataframe + branch_components = edges_to_dict_of_dataframes(edges, lines_df, + node_components['Bus']) + # merge node and edges + components = merge_two_dicts(node_components, branch_components) + components, component_data = \ + circuit_breakers_to_df(grid, components, component_data, + open_circuit_breakers, return_time_varying_data) + return components, component_data + + +def nodes_to_dict_of_dataframes(grid, nodes, buses_df, generators_df, loads_df, + transformer_df, only_export_mv=False, + return_time_varying_data=False): + """ + Creates dictionary of dataframes containing grid nodes and transformers + + Parameters + ---------- + grid: :class:`~.ding0.core.network.GridDing0` nodes: :obj:`list` of ding0 grid components objects Nodes of the grid graph - lv_transformer: bool, True - Toggle transformer representation in power flow analysis + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name,bus,peak_load, annual_consumption, + sector + transformer_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + only_export_mv: :obj:`bool` + Bool that indicates whether only mv grid should be exported, + per default lv grids are exported too + return_time_varying_data: :obj:`bool` + Set to True when running power flow. Then time varying data are + returned as well. - Returns: + Returns + ------- components: dict of :pandas:`pandas.DataFrame` DataFrames contain components attributes. Dict is keyed by components type - components_data: dict of :pandas:`pandas.DataFrame` - DataFrame containing components time-varying data + component_data: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Load', + needed for power flow calculations, only exported when + return_time_varying_data is True empty dict otherwise. """ - generator_instances = [MVStationDing0, GeneratorDing0] - # TODO: MVStationDing0 has a slack generator - cos_phi_load = cfg_ding0.get('assumptions', 'cos_phi_load') - cos_phi_load_mode = cfg_ding0.get('assumptions', 'cos_phi_load_mode') - cos_phi_feedin = cfg_ding0.get('assumptions', 'cos_phi_gen') - cos_phi_feedin_mode = cfg_ding0.get('assumptions', 'cos_phi_gen_mode') srid = int(cfg_ding0.get('geo', 'srid')) - - load_in_generation_case = cfg_ding0.get('assumptions', - 'load_in_generation_case') - generation_in_load_case = cfg_ding0.get('assumptions', - 'generation_in_load_case') - - Q_factor_load = q_sign(cos_phi_load_mode, 'load') * tan(acos(cos_phi_load)) - Q_factor_generation = q_sign(cos_phi_feedin_mode, 'generator') * tan(acos(cos_phi_feedin)) - - voltage_set_slack = cfg_ding0.get("mv_routing_tech_constraints", - "mv_station_v_level_operation") - - kw2mw = 1e-3 - - # define dictionaries - buses = {'bus_id': [], 'v_nom': [], 'geom': [], 'grid_id': []} - bus_v_mag_set = {'bus_id': [], 'temp_id': [], 'v_mag_pu_set': [], - 'grid_id': []} - generator = {'generator_id': [], 'bus': [], 'control': [], 'grid_id': [], - 'p_nom': []} - generator_pq_set = {'generator_id': [], 'temp_id': [], 'p_set': [], - 'grid_id': [], 'q_set': []} - load = {'load_id': [], 'bus': [], 'grid_id': []} - load_pq_set = {'load_id': [], 'temp_id': [], 'p_set': [], - 'grid_id': [], 'q_set': []} - - # # TODO: consider other implications of `lv_transformer is True` - # if lv_transformer is True: - # bus_instances.append(Transformer) - - # # TODO: only for debugging, remove afterwards - # import csv - # nodeslist = sorted([node.__repr__() for node in nodes - # if node not in grid.graph_isolated_nodes()]) - # with open('/home/guido/ding0_debug/nodes_via_dataframe.csv', 'w', newline='') as csvfile: - # writer = csv.writer(csvfile, delimiter='\n') - # writer.writerow(nodeslist) + # check if there are islanded nodes which do not belong to aggregated + # load area + for isl_node in grid.graph_isolated_nodes(): + if isinstance(isl_node, CircuitBreakerDing0): + continue + elif isl_node.lv_load_area.is_aggregated: + continue + elif isinstance(isl_node, LVStationDing0) \ + and isl_node.peak_load == 0 \ + and isl_node.peak_generation == 0: + # Todo: This is only a workaround for empty grids (see + # build_grid.py line 800). Aim should be to solve the issue + # there and remove this exception here afterwards + if not only_export_mv: + buses_df = append_buses_df(buses_df, isl_node.grid, + isl_node) + else: + continue + else: + raise Exception("{} is isolated node. Please check.". + format(repr(isl_node))) + + # initialise DataFrames for time varying elements, load all necessary + # values + if return_time_varying_data: + conf = {} + conf['kw2mw'] = 1e-3 + cos_phi_load = cfg_ding0.get('assumptions', 'cos_phi_load') + cos_phi_load_mode = cfg_ding0.get('assumptions', 'cos_phi_load_mode') + cos_phi_feedin = cfg_ding0.get('assumptions', 'cos_phi_gen') + cos_phi_feedin_mode = cfg_ding0.get('assumptions', 'cos_phi_gen_mode') + + conf['load_in_generation_case'] = cfg_ding0.get('assumptions', + 'load_in_generation_case') + conf['generation_in_load_case'] = cfg_ding0.get('assumptions', + 'generation_in_load_case') + + conf['Q_factor_load'] = q_sign(cos_phi_load_mode, 'load') * \ + tan(acos(cos_phi_load)) + conf['Q_factor_generation'] = q_sign(cos_phi_feedin_mode, 'generator')\ + * tan(acos(cos_phi_feedin)) + + voltage_set_slack = cfg_ding0.get("mv_routing_tech_constraints", + "mv_station_v_level_operation") + bus_v_mag_set_df = pd.DataFrame(columns=['name', 'temp_id', + 'v_mag_pu_set']) + generator_pq_set_df = pd.DataFrame(columns=['name', 'temp_id', + 'p_set', 'q_set']) + load_pq_set_df = pd.DataFrame(columns=['name', 'temp_id', + 'p_set', 'q_set']) for node in nodes: if node not in grid.graph_isolated_nodes(): # buses only - if isinstance(node, MVCableDistributorDing0): - buses['bus_id'].append(node.pypsa_id) - buses['v_nom'].append(grid.v_level) - buses['geom'].append(from_shape(node.geo_data, srid=srid)) - buses['grid_id'].append(grid.id_db) - - bus_v_mag_set['bus_id'].append(node.pypsa_id) - bus_v_mag_set['temp_id'].append(1) - bus_v_mag_set['v_mag_pu_set'].append([1, 1]) - bus_v_mag_set['grid_id'].append(grid.id_db) - - # bus + generator - elif isinstance(node, tuple(generator_instances)): - # slack generator - if isinstance(node, MVStationDing0): - logger.info('Only MV side bus of MVStation will be added.') - generator['generator_id'].append( - '_'.join(['MV', str(grid.id_db), 'slack'])) - generator['control'].append('Slack') - generator['p_nom'].append(0) - bus_v_mag_set['v_mag_pu_set'].append( - [voltage_set_slack, voltage_set_slack]) - - # other generators - if isinstance(node, GeneratorDing0): - generator['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'gen', str(node.id_db)])) - generator['control'].append('PQ') - generator['p_nom'].append(node.capacity * node.capacity_factor) - - generator_pq_set['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'gen', str(node.id_db)])) - generator_pq_set['temp_id'].append(1) - generator_pq_set['p_set'].append( - [node.capacity * node.capacity_factor * kw2mw * generation_in_load_case, - node.capacity * node.capacity_factor * kw2mw]) - generator_pq_set['q_set'].append( - [node.capacity * node.capacity_factor * kw2mw * Q_factor_generation * generation_in_load_case, - node.capacity * node.capacity_factor * kw2mw * Q_factor_generation]) - generator_pq_set['grid_id'].append(grid.id_db) - bus_v_mag_set['v_mag_pu_set'].append([1, 1]) - - buses['bus_id'].append(node.pypsa_id) - buses['v_nom'].append(grid.v_level) - buses['geom'].append(from_shape(node.geo_data, srid=srid)) - buses['grid_id'].append(grid.id_db) - - bus_v_mag_set['bus_id'].append(node.pypsa_id) - bus_v_mag_set['temp_id'].append(1) - bus_v_mag_set['grid_id'].append(grid.id_db) - - generator['grid_id'].append(grid.id_db) - generator['bus'].append(node.pypsa_id) - + if isinstance(node, MVCableDistributorDing0) or \ + isinstance(node, LVCableDistributorDing0): + buses_df = append_buses_df(buses_df, grid, node) + # add time varying elements + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node) + + # slack generator + elif isinstance(node, MVStationDing0): + # add dummy generator + slack = pd.Series({'name':('_'.join(['MV', str(grid.id_db), + 'slack'])), + 'bus':node.pypsa_bus_id, 'control':'Slack', + 'p_nom':0, 'type': 'station', + 'subtype':'mv_station'}) + generators_df = generators_df.append(slack, ignore_index=True) + # add MV side bus + buses_df = append_buses_df(buses_df, grid, node) + # add time varying elements + if return_time_varying_data: + slack_v_mag = pd.Series({'name':node.pypsa_bus0_id, + 'temp_id':1, + 'v_mag_pu_set': + [voltage_set_slack, + voltage_set_slack]}) + bus_v_mag_set_df = \ + bus_v_mag_set_df.append(slack_v_mag, ignore_index=True) + slack_v_mag['name'] = node.pypsa_bus_id + bus_v_mag_set_df = \ + bus_v_mag_set_df.append(slack_v_mag, ignore_index=True) + + # other generators + elif isinstance(node, GeneratorDing0): + if node.lv_grid is not None: + branches = node.lv_grid.graph_branches_from_node(node) + else: + branches = node.mv_grid.graph_branches_from_node(node) + # check if generator is in building generator + if len(branches) == 1 and hasattr(branches[0][0], + 'in_building') \ + and branches[0][0].in_building \ + and branches[0][1]['branch'].length == 1: + # append generator to preceding bus + generators_df = append_generators_df( + generators_df, node, + name_bus=branches[0][0].pypsa_bus_id) + if return_time_varying_data: + generator_pq_set_df = \ + append_generator_pq_set_df( + conf, generator_pq_set_df, node) + else: + # append generator and new bus + generators_df = append_generators_df(generators_df, node) + buses_df = append_buses_df(buses_df, grid, node) + # add time varying elements + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node) + generator_pq_set_df = \ + append_generator_pq_set_df(conf, + generator_pq_set_df, + node) + + elif isinstance(node, LoadDing0): + # choose sector with highest consumption and assign sector + # accordingly + # Todo: replace when loads are seperated in a cleaner way + # (retail, industrial) + sorted_consumption = [(value, key) for key, value in + node.consumption.items()] + sector = max(sorted_consumption)[1] + # check whether load is in building + branches = node.grid.graph_branches_from_node(node) + if len(branches) == 1 and hasattr(branches[0][0], + 'in_building') \ + and branches[0][0].in_building \ + and branches[0][1]['branch'].length == 1: + # connect load to preceding bus if is in building + bus_name = branches[0][0].pypsa_bus_id + else: + # add new bus to connect load to + bus_name = node.pypsa_bus_id + buses_df = append_buses_df(buses_df, grid, node) + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node) + # add load + load = pd.Series({'name': repr(node), 'bus': bus_name, + 'peak_load': node.peak_load/1e3, + 'annual_consumption': + node.consumption[sector]/1e3, + 'sector': sector}) + loads_df = loads_df.append(load, ignore_index=True) + buses_df = append_buses_df(buses_df, grid, node) + # add time varying elements + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node) + load_pq_set_df = \ + append_load_pq_set_df(conf, load_pq_set_df, node) # aggregated load at hv/mv substation elif isinstance(node, LVLoadAreaCentreDing0): - load['load_id'].append(node.pypsa_id) - load['bus'].append('_'.join(['HV', str(grid.id_db), 'trd'])) - load['grid_id'].append(grid.id_db) - - load_pq_set['load_id'].append(node.pypsa_id) - load_pq_set['temp_id'].append(1) - load_pq_set['p_set'].append( - [node.lv_load_area.peak_load * kw2mw, - node.lv_load_area.peak_load * kw2mw * load_in_generation_case]) - load_pq_set['q_set'].append( - [node.lv_load_area.peak_load * kw2mw * Q_factor_load, - node.lv_load_area.peak_load * kw2mw * Q_factor_load * load_in_generation_case]) - load_pq_set['grid_id'].append(grid.id_db) - - # generator representing generation capacity of aggregate LA - # analogously to load, generation is connected directly to - # HV-MV substation - generator['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'lcg', str(node.id_db)])) - generator['control'].append('PQ') - generator['p_nom'].append(node.lv_load_area.peak_generation) - generator['grid_id'].append(grid.id_db) - generator['bus'].append('_'.join(['HV', str(grid.id_db), 'trd'])) - - generator_pq_set['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'lcg', str(node.id_db)])) - generator_pq_set['temp_id'].append(1) - generator_pq_set['p_set'].append( - [node.lv_load_area.peak_generation * kw2mw * generation_in_load_case, - node.lv_load_area.peak_generation * kw2mw]) - generator_pq_set['q_set'].append( - [node.lv_load_area.peak_generation * kw2mw * Q_factor_generation * generation_in_load_case, - node.lv_load_area.peak_generation * kw2mw * Q_factor_generation]) - generator_pq_set['grid_id'].append(grid.id_db) + # Todo: change to list of generators and loads? + if node.lv_load_area.peak_load != 0: + node_name = 'BusBar_lac_' + str(node.lv_load_area.id_db) + buses_df = append_buses_df(buses_df, node.lv_load_area, + node, node_name) + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node, + node_name) + transformer_df = \ + select_and_append_load_area_trafos(node.lv_load_area, + node_name, + transformer_df) + if return_time_varying_data: + loads_df, generators_df, load_pq_set_df, \ + generator_pq_set_df = \ + append_load_areas_to_df(loads_df, generators_df, + node, + return_time_varying_data, + conf=conf, + load_pq_set_df= + load_pq_set_df, + generator_pq_set_df= + generator_pq_set_df, + node_name=node_name) + else: + loads_df, generators_df = \ + append_load_areas_to_df(loads_df, generators_df, + node, node_name=node_name) # bus + aggregate load of lv grids (at mv/ls substation) elif isinstance(node, LVStationDing0): - # Aggregated load representing load in LV grid - load['load_id'].append( - '_'.join(['MV', str(grid.id_db), 'loa', str(node.id_db)])) - load['bus'].append(node.pypsa_id) - load['grid_id'].append(grid.id_db) - - load_pq_set['load_id'].append( - '_'.join(['MV', str(grid.id_db), 'loa', str(node.id_db)])) - load_pq_set['temp_id'].append(1) - load_pq_set['p_set'].append( - [node.peak_load * kw2mw, - node.peak_load * kw2mw * load_in_generation_case]) - load_pq_set['q_set'].append( - [node.peak_load * kw2mw * Q_factor_load, - node.peak_load * kw2mw * Q_factor_load * load_in_generation_case]) - load_pq_set['grid_id'].append(grid.id_db) - - # bus at primary MV-LV transformer side - buses['bus_id'].append(node.pypsa_id) - buses['v_nom'].append(grid.v_level) - buses['geom'].append(from_shape(node.geo_data, srid=srid)) - buses['grid_id'].append(grid.id_db) - - bus_v_mag_set['bus_id'].append(node.pypsa_id) - bus_v_mag_set['temp_id'].append(1) - bus_v_mag_set['v_mag_pu_set'].append([1, 1]) - bus_v_mag_set['grid_id'].append(grid.id_db) - - # generator representing generation capacity in LV grid - generator['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'gen', str(node.id_db)])) - generator['control'].append('PQ') - generator['p_nom'].append(node.peak_generation) - generator['grid_id'].append(grid.id_db) - generator['bus'].append(node.pypsa_id) - - generator_pq_set['generator_id'].append('_'.join( - ['MV', str(grid.id_db), 'gen', str(node.id_db)])) - generator_pq_set['temp_id'].append(1) - generator_pq_set['p_set'].append( - [node.peak_generation * kw2mw * generation_in_load_case, - node.peak_generation * kw2mw]) - generator_pq_set['q_set'].append( - [node.peak_generation * kw2mw * Q_factor_generation * generation_in_load_case, - node.peak_generation * kw2mw * Q_factor_generation]) - generator_pq_set['grid_id'].append(grid.id_db) - + # Todo: remove ding0_nw.grids when functions are thinned out + if isinstance(grid, ding0_nw.grids.MVGridDing0): + # Aggregated load representing load in LV grid, + # only needed when LV_grids are not exported + if only_export_mv: + if return_time_varying_data: + loads_df, generators_df, load_pq_set_df, \ + generator_pq_set_df = append_load_areas_to_df( + loads_df, generators_df, node, + return_time_varying_data, conf=conf, + load_pq_set_df=load_pq_set_df, + generator_pq_set_df=generator_pq_set_df) + bus_v_mag_set_df = append_bus_v_mag_set_df( + bus_v_mag_set_df,node) + else: + loads_df, generators_df = \ + append_load_areas_to_df(loads_df, + generators_df, node) + for trafo in node.transformers(): + transformer_df = \ + append_transformers_df(transformer_df, trafo) + # bus at secondary MV-LV transformer side + buses_df = append_buses_df(buses_df, node.grid, node) + # bus at primary MV-LV transformer side + buses_df = append_buses_df(buses_df, grid, node, + node.pypsa_bus0_id) + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df, node, + node.pypsa_bus0_id) + elif isinstance(grid, ding0_nw.grids.LVGridDing0): + # bus at secondary MV-LV transformer side + buses_df = append_buses_df(buses_df, grid, node) + if return_time_varying_data: + bus_v_mag_set_df = \ + append_bus_v_mag_set_df(bus_v_mag_set_df,node) + else: + raise TypeError('Something went wrong. ' + 'Only LVGridDing0 or MVGridDing0 can ' + 'be handled as grid.') elif isinstance(node, CircuitBreakerDing0): - # TODO: remove this elif-case if CircuitBreaker are removed from graph + # TODO: remove this elif-case if CircuitBreaker are + # removed from graph continue else: raise TypeError("Node of type", node, "cannot be handled here") else: - if not isinstance(node, CircuitBreakerDing0): - add_info = "LA is aggr. {0}".format( - node.lv_load_area.is_aggregated) + continue + + nodal_components = {'Bus': buses_df.set_index('name'), + 'Generator': generators_df.set_index('name'), + 'Load': loads_df.set_index('name'), + 'Transformer': transformer_df.set_index('name')} + + if return_time_varying_data: + components_data = {'Bus': bus_v_mag_set_df.set_index('name'), + 'Generator': generator_pq_set_df.set_index('name'), + 'Load': load_pq_set_df.set_index('name')} + else: + components_data = {} + + return nodal_components, components_data + + +def select_and_append_load_area_trafos(aggregated_load_area, node_name, + transformer_df): + """ + Selects the right trafos for aggregrated load areas and appends them to + the transformer dataframe. + + Parameters + ---------- + aggregated_load_area: LVLoadAreaDing0 + Aggregated load area to be appended + node_name: str + Name of LV side bus for appending LV load area + transformer_df: :pandas:`pandas.DataFrame` + Transformer dataframe of network + + Returns + ------- + :pandas:`pandas.DataFrame` + Transformer dataframe of network with appended transformers + """ + if aggregated_load_area.peak_generation > \ + aggregated_load_area.peak_load: + s_max = {'s_max': aggregated_load_area.peak_generation, + 'case': 'gen'} + else: + s_max = {'s_max': aggregated_load_area.peak_load, + 'case': 'load'} + trafo_type, num_trafo = \ + select_transformers(aggregated_load_area, s_max) + for t in range(0, num_trafo): + lv_transformer = TransformerDing0( + grid=aggregated_load_area, + id_db=t + 1, + v_level=aggregated_load_area._lv_grid_districts[0]. + lv_grid.v_level, + s_max_longterm=trafo_type['S_nom'], + r_pu=trafo_type['r_pu'], + x_pu=trafo_type['x_pu']) + mv_station_bus = \ + aggregated_load_area.mv_grid_district.\ + mv_grid.station().pypsa_bus_id + transformer_df = append_transformers_df( + transformer_df, lv_transformer, bus0=mv_station_bus, bus1=node_name) + return transformer_df + + +def append_generator_pq_set_df(conf, generator_pq_set_df, node): + """ + Fills generator pq_set data needed for power flow calculation + + Parameters + ---------- + conf: :obj:`dict` + dictionary with technical constants + generator_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, temp_id, p_set and q_set + node: obj:node object of generator + + Returns + ------- + generator_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, temp_id, p_set and q_set + """ + # active and reactive power of generator in load and generation case + p_set = [node.capacity * node.capacity_factor * conf['kw2mw'] * + conf['generation_in_load_case'], + node.capacity * node.capacity_factor * conf['kw2mw']] + q_set = [node.capacity * node.capacity_factor * conf['kw2mw'] * + conf['Q_factor_generation'] * conf['generation_in_load_case'], + node.capacity * node.capacity_factor * conf['kw2mw'] * + conf['Q_factor_generation']] + generator_pq_set_df = generator_pq_set_df.append( + pd.Series({'name': repr(node), 'temp_id': 1, 'p_set': p_set, + 'q_set': q_set}), ignore_index=True) + return generator_pq_set_df + + +def append_load_pq_set_df(conf, load_pq_set_df, node, node_name = None, + peak_load = None): + """ + Fills load pq_set data needed for power flow calculation + + Parameters + ---------- + conf: :obj:`dict` + dictionary with technical constants + load_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, temp_id, p_set and q_set + node: obj:node object of generator + node_name: :obj:`str` + Optional parameter for name of load + peak_load: :obj:`float` + Optional parameter for peak_load + + Returns + ------- + load_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, temp_id, p_set and q_set + """ + if node_name is None: + node_name = repr(node) + if peak_load is None: + peak_load = node.peak_load + # active and reactive power of load in load and generation case + p_set = [peak_load * conf['kw2mw'], + peak_load * conf['kw2mw'] * conf['load_in_generation_case']] + q_set = [peak_load * conf['kw2mw'] * conf['Q_factor_load'], + peak_load * conf['kw2mw'] * conf['Q_factor_load'] * + conf['load_in_generation_case']] + load_pq_set_df = load_pq_set_df.append( + pd.Series({'name': node_name, 'temp_id': 1, + 'p_set': p_set, 'q_set': q_set}), ignore_index=True) + return load_pq_set_df + + +def append_bus_v_mag_set_df(bus_v_mag_set_df, node, node_name = None): + """ + Fills bus v_mag_set data needed for power flow calculation + + Parameters + ---------- + bus_v_mag_set_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, temp_id, v_mag_pu_set + node: obj:node object of generator + node_name: :obj:`str` + Optional parameter for name of bus + + Returns + ------- + bus_v_mag_set_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, temp_id, v_mag_pu_set + """ + if node_name is None: + node_name = node.pypsa_bus_id + bus_v_mag_set_df = bus_v_mag_set_df.append(pd.Series({'name': node_name, + 'temp_id': 1, + 'v_mag_pu_set': + [1, 1]}), + ignore_index=True) + return bus_v_mag_set_df + + +def append_load_areas_to_df(loads_df, generators_df, node, + return_time_varying_data=False, **kwargs): + """ + Appends lv load area (or single lv grid district) to dataframe of loads + and generators. Also returns power flow time varying data if + return_time_varying_data is True. + Each sector (agricultural, industrial, residential, retail) + is represented by own entry of load. Each generator in underlying + grid districts is added as own entry. + Generators and load are connected to BusBar of the respective grid + (LVGridDing0 for LVStationDing0 and MVGridDing0 for LVLoadAreaCentreDing0) + + Parameters + ---------- + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption, sector + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + node: :obj: ding0 grid components object + Node, which is either LVStationDing0 or LVLoadAreaCentreDing0 + return_time_varying_data: :obj:`bool` + Determines whether data for power flow calculation is exported as well + kwargs: list of conf, load_pq_set_df, generator_pq_set_df + All three arguments have to be inserted if return_time_varying_data is + True. + + Returns + ------- + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption, sector + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + load_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, temp_id, p_set and q_set, + only exported if return_time_varying_data is True + generator_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, temp_id, p_set and q_set, + only exported if return_time_varying_data is True + """ + # set name of bus, name of load and handles load area and grid districts + if isinstance(node,LVStationDing0): + name_bus = node.pypsa_bus_id + name_load = '_'.join(['Load','mvgd' + + str(node.grid.grid_district.lv_load_area. + mv_grid_district.id_db), + 'lvgd' + str(node.id_db)]) + load_area = node.grid.grid_district + grid_districts = [load_area] + elif isinstance(node, LVLoadAreaCentreDing0): + name_bus = kwargs.get('node_name') + name_load = '_'.join(['Load', 'mvgd', str(node.grid.id_db), + 'lac', str(node.id_db)]) + load_area = node.lv_load_area + grid_districts = load_area.lv_grid_districts() + else: + raise TypeError("Only LVStationDing0 or LVLoadAreaCentreDing0 can be " + "inserted into function append_load_areas_to_df.") + + # unpack time varying elements + if return_time_varying_data: + conf = kwargs.get('conf', None) + load_pq_set_df = kwargs.get('load_pq_set_df',None) + generator_pq_set_df = kwargs.get('generator_pq_set_df', None) + + # Handling of generators + for lvgd in grid_districts: + for gen in lvgd.lv_grid.generators(): + generators_df = append_generators_df(generators_df, gen, + name_bus=name_bus) + # add time varying elements + if return_time_varying_data: + generator_pq_set_df = \ + append_generator_pq_set_df(conf, generator_pq_set_df, gen) + + + # Handling of loads + sectors = ['agricultural', 'industrial', 'residential', 'retail'] + for sector in sectors: + if (getattr(load_area, '_'.join(['peak_load', sector]))!= 0): + if return_time_varying_data: + loads_df, load_pq_set_df = \ + append_load_area_to_load_df(sector, load_area, loads_df, + name_bus, name_load, + return_time_varying_data, + conf=conf, + load_pq_set_df=load_pq_set_df) else: - add_info = "" - logger.warning("Node {0} is not connected to the graph and will " \ - "be omitted in power flow analysis. {1}".format( - node, add_info)) + loads_df = \ + append_load_area_to_load_df(sector, load_area, + loads_df, name_bus, name_load) - components = {'Bus': DataFrame(buses).set_index('bus_id'), - 'Generator': DataFrame(generator).set_index('generator_id'), - 'Load': DataFrame(load).set_index('load_id')} + if return_time_varying_data: + return loads_df, generators_df, load_pq_set_df, generator_pq_set_df + else: + return loads_df, generators_df - components_data = {'Bus': DataFrame(bus_v_mag_set).set_index('bus_id'), - 'Generator': DataFrame(generator_pq_set).set_index( - 'generator_id'), - 'Load': DataFrame(load_pq_set).set_index('load_id')} - # with open('/home/guido/ding0_debug/number_of_nodes_buses.csv', 'a') as csvfile: - # csvfile.write(','.join(['\n', str(len(nodes)), str(len(grid.graph_isolated_nodes())), str(len(components['Bus']))])) +def append_load_area_to_load_df(sector, load_area, loads_df, name_bus, + name_load, return_time_varying_data = False, + **kwargs): + """ + Appends LVLoadArea or LVGridDistrict to dataframe of loads in pypsa format. - return components, components_data + Parameters + ---------- + sector: str + load sector: 'agricultural', 'industrial', 'residential' or 'retail' + load_are: :obj: ding0 region + LVGridDistrictDing0 or LVLoadAreaDing0, load area of which load is to + be aggregated and added + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption and sector + name_bus: :obj:`str` + name of bus to which load is connected + name_load: :obj:`str` + name of load + return_time_varying_data: :obj:`bool` + Determines whether data for power flow calculation is exported as well + kwargs: list of conf, load_pq_set_df + Both arguments have to be inserted if return_time_varying_data is + True. + Returns + ------- + loads_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, bus, peak_load, + annual_consumption and sector + load_pq_set_df: :pandas:`pandas.DataFrame` + Dataframe of loads with entries name, temp_id, p_set and q_set, + only exported if return_time_varying_data is True + """ + # get annual consumption + if isinstance(load_area, LVGridDistrictDing0): + consumption = getattr(load_area, '_'.join(['sector_consumption', + sector])) + elif isinstance(load_area,LVLoadAreaDing0): + consumption = 0 + for lv_grid_district in load_area.lv_grid_districts(): + consumption += getattr(lv_grid_district, + '_'.join(['sector_consumption', sector])) + # create and append load to df + name_load = '_'.join([name_load, sector]) + peak_load = getattr(load_area, '_'.join(['peak_load', sector])) + load = pd.Series( + {'name': name_load, 'bus': name_bus, + 'peak_load': peak_load/1e3, + 'annual_consumption': consumption/1e3, 'sector': sector}) + loads_df = loads_df.append(load, ignore_index=True) + # handle time varying data + if return_time_varying_data: + conf = kwargs.get('conf', None) + load_pq_set_df = kwargs.get('load_pq_set_df', None) + load_pq_set_df = append_load_pq_set_df(conf, load_pq_set_df, + None, name_load, peak_load) + return loads_df,load_pq_set_df + else: + return loads_df + + +def append_generators_df(generators_df, node, name_bus = None): + """ + Appends generator to dataframe of generators in pypsa format. + + Parameters + ---------- + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + node: :obj: ding0 grid components object + GeneratorDing0 + name_bus: :obj:`str` + Optional parameter for name of bus + + Returns + ------- + generators_df: :pandas:`pandas.DataFrame` + Dataframe of generators with entries name, bus, control, p_nom, type, + weather_cell_id, subtype + """ + if isinstance(node,GeneratorFluctuatingDing0): + weather_cell_id = node.weather_cell_id + else: + weather_cell_id = np.NaN + if name_bus is None: + name_bus = node.pypsa_bus_id + generator = pd.Series({'name':repr(node), + 'bus': name_bus, 'control':'PQ', + 'p_nom':(node.capacity * node.capacity_factor)/1e3, + 'type':node.type, 'subtype':node.subtype, + 'weather_cell_id':weather_cell_id}) + generators_df = generators_df.append(generator, ignore_index=True) + return generators_df + + +def append_buses_df(buses_df, grid, node, node_name =''): + """ + Appends buses to dataframe of buses in pypsa format. -def edges_to_dict_of_dataframes(grid, edges): + Parameters + ---------- + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + grid: :class:`~.ding0.core.network.GridDing0` + node: :obj: ding0 grid components object + node_name: :obj:`str` + name of node, per default is set to node.pypsa_bus_id + + Returns + ------- + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + """ + # set default name of node + if node_name == '': + node_name = node.pypsa_bus_id + # check if node is in building + if isinstance(node, LVCableDistributorDing0): + in_building = node.in_building + else: + in_building = False + # set geodata, if existing + [x,y] = [np.NaN, np.NaN] + if isinstance(node.geo_data,Point): + [x,y] = [node.geo_data.x, node.geo_data.y] + #set grid_ids + if isinstance(grid, ding0_nw.grids.MVGridDing0): + mv_grid_id = grid.id_db + lv_grid_id = np.NaN + v_nom = grid.v_level + elif isinstance(grid, ding0_nw.grids.LVGridDing0): + mv_grid_id = \ + grid.grid_district.lv_load_area.mv_grid_district.mv_grid.id_db + lv_grid_id = grid.id_db + v_nom = grid.v_level/1e3 + elif isinstance(grid, LVLoadAreaDing0): + mv_grid_id = \ + grid.mv_grid_district.mv_grid.id_db + lv_grid_id = grid.id_db + try: + v_nom = grid._lv_grid_districts[0].lv_grid.v_level/1e3 + except: + v_nom = 0.4 + logger.warning("V_nom of aggregated LVLoadArea{} in MVGrid {} " + "could not be set. Will be set to 0.4 as a default. " + "Please check.".format(lv_grid_id, mv_grid_id)) + else: + raise TypeError('Something went wrong, only MVGridDing0 and ' + 'LVGridDing0 should be inserted as grid.') + # create bus dataframe + bus = pd.Series({'name': node_name,'v_nom':v_nom, 'x':x, 'y':y, + 'mv_grid_id':mv_grid_id,'lv_grid_id':lv_grid_id, + 'in_building': in_building}) + buses_df = buses_df.append(bus, ignore_index=True) + return buses_df + + +def append_transformers_df(transformers_df, trafo, type = np.NaN, + bus0=None, bus1=None): + """ + Appends transformer to dataframe of buses in pypsa format. + + Parameters + ---------- + transformers_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + trafo: :obj:TransformerDing0 + Transformer to be added + type: :obj:`str` + Optional parameter for type of transformer + bus0: :obj:`str` + Name of primary side bus. Defaults to None and is set to primary side + of transformer station by default. + bus1: :obj:`str` + Name of secondary side bus. Defaults to None and is set to secondary + side of transformer station by default. + + Returns + ------- + transformers_df: :pandas:`pandas.DataFrame` + Dataframe of trafos with entries name, bus0, bus1, x, r, s_nom, type + """ + if isinstance(type, str): + type_info = type + else: + if isinstance(trafo.grid, ding0_nw.grids.MVGridDing0): + voltage_upper = 110 + voltage_lower = trafo.grid.v_level + elif isinstance(trafo.grid, ding0_nw.grids.LVGridDing0): + voltage_upper = trafo.grid.grid_district.lv_load_area.mv_grid_district.mv_grid.v_level + voltage_lower = trafo.grid.v_level/1e3 + elif isinstance(trafo.grid, LVLoadAreaDing0): + voltage_upper = trafo.grid.mv_grid_district.mv_grid.v_level + voltage_lower = trafo.v_level/1e3 + type_info = '{} MVA {}/{} kV'.format(trafo.s_max_a/1e3, + voltage_upper, voltage_lower) + + if bus0 is None: + bus0 = trafo.grid.station().pypsa_bus0_id + if bus1 is None: + bus1 = trafo.grid.station().pypsa_bus_id + + trafo_tmp = pd.Series({'name': repr(trafo), + 'bus0': bus0, + 'bus1': bus1, + 'x': trafo.x_pu, 'r': trafo.r_pu, + 's_nom': trafo.s_max_a/1e3, 'type': type, + 'type_info': type_info}) + transformers_df = transformers_df.append(trafo_tmp, ignore_index=True) + return transformers_df + + +def edges_to_dict_of_dataframes(edges, lines_df, buses_df): """ Export edges to DataFrame Parameters ---------- - grid: ding0.Network edges: :obj:`list` Edges of Ding0.Network graph + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, + s_nom, num_parallel, type + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building Returns ------- edges_dict: dict """ - freq = cfg_ding0.get('assumptions', 'frequency') - omega = 2 * pi * freq - srid = int(cfg_ding0.get('geo', 'srid')) - - lines = {'line_id': [], 'bus0': [], 'bus1': [], 'x': [], 'r': [], - 's_nom': [], 'length': [], 'cables': [], 'geom': [], - 'grid_id': []} # iterate over edges and add them one by one for edge in edges: + if not edge['branch'].connects_aggregated: + lines_df = append_lines_df(edge, lines_df, buses_df) - line_name = '_'.join(['MV', - str(grid.id_db), - 'lin', - str(edge['branch'].id_db)]) + return {'Line': lines_df.set_index('name')} - # TODO: find the real cause for being L, C, I_th_max type of Series - if (isinstance(edge['branch'].type['L_per_km'], Series) or#warum wird hier c abgefragt? - isinstance(edge['branch'].type['C_per_km'], Series)): - x_per_km = omega * edge['branch'].type['L_per_km'].values[0] * 1e-3 - else: - x_per_km = omega * edge['branch'].type['L_per_km'] * 1e-3 +def append_lines_df(edge, lines_df, buses_df): + """ + Append edge to lines_df - if isinstance(edge['branch'].type['R_per_km'], Series): - r_per_km = edge['branch'].type['R_per_km'].values[0] - else: - r_per_km = edge['branch'].type['R_per_km'] + Parameters + ---------- + edge: + Edge of Ding0.Network graph + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, + s_nom, num_parallel, type + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building - if (isinstance(edge['branch'].type['I_max_th'], Series) or - isinstance(edge['branch'].type['U_n'], Series)): - s_nom = sqrt(3) * edge['branch'].type['I_max_th'].values[0] * \ - edge['branch'].type['U_n'].values[0] - else: - s_nom = sqrt(3) * edge['branch'].type['I_max_th'] * \ - edge['branch'].type['U_n'] + Returns + ------- + lines_df: :pandas:`pandas.DataFrame` + Dataframe of lines with entries name, bus0, bus1, length, x, r, + s_nom, num_parallel, type + """ + freq = cfg_ding0.get('assumptions', 'frequency') + omega = 2 * pi * freq + # set grid_ids + if isinstance(edge['branch'].grid, ding0_nw.grids.MVGridDing0): + unitconversion = 1e3 + is_mv = True + elif isinstance(edge['branch'].grid, ding0_nw.grids.LVGridDing0): + unitconversion = 1e6 + is_mv = False + else: + raise TypeError('Something went wrong, only MVGridDing0 and ' + 'LVGridDing0 should be inserted as grid.') + # TODO: find the real cause for being L, C, I_th_max type of Series + if (isinstance(edge['branch'].type['L_per_km'], Series)): + x_per_km = omega * edge['branch'].type['L_per_km'].values[0] * 1e-3 + else: - # get lengths of line - l = edge['branch'].length / 1e3 + x_per_km = omega * edge['branch'].type['L_per_km'] * 1e-3 + if isinstance(edge['branch'].type['R_per_km'], Series): + r_per_km = edge['branch'].type['R_per_km'].values[0] + else: + r_per_km = edge['branch'].type['R_per_km'] + if (isinstance(edge['branch'].type['I_max_th'], Series) or + isinstance(edge['branch'].type['U_n'], Series)): + s_nom = sqrt(3) * edge['branch'].type['I_max_th'].values[0] * \ + edge['branch'].type['U_n'].values[0]/unitconversion + else: + s_nom = sqrt(3) * edge['branch'].type['I_max_th'] * \ + edge['branch'].type['U_n']/unitconversion + # get lengths of line + length = edge['branch'].length / 1e3 + #Todo: change into same format + if 'name' in edge['branch'].type: + type = edge['branch'].type['name'] + else: + type = edge['branch'].type.name + + # make sure right side of station is appended + if isinstance(edge['adj_nodes'][0], LVStationDing0) and is_mv: + name_bus0 = edge['adj_nodes'][0].pypsa_bus0_id + else: + name_bus0 = edge['adj_nodes'][0].pypsa_bus_id + if isinstance(edge['adj_nodes'][1], LVStationDing0) and is_mv: + name_bus1 = edge['adj_nodes'][1].pypsa_bus0_id + else: + name_bus1 = edge['adj_nodes'][1].pypsa_bus_id + + # check if line is to be added to lines_df + add_line = _check_branch_for_in_building_buses(buses_df, edge, + name_bus0, name_bus1) + + # create new line + if add_line: + line = pd.Series({'name': repr(edge['branch']), + 'bus0': name_bus0, + 'bus1': name_bus1, + 'x': x_per_km * length, 'r':r_per_km * length, + 's_nom': s_nom, 'length': length, + 'num_parallel': 1, 'kind': edge['branch'].kind, + 'type_info': type}) + lines_df = lines_df.append(line, ignore_index=True) + return lines_df + + +def _check_branch_for_in_building_buses(buses_df, edge, name_bus0, name_bus1): + """ + Checks if line is to be added to line_df. If line is artificial line that + connects in building loads or generators to preceding branch tee, False is + returned. + + Parameters + ---------- + buses_df: :pandas:`pandas.DataFrame` + Dataframe of buses with entries name, v_nom, geom, mv_grid_id, + lv_grid_id, in_building + edge: + Edge of Ding0.Network graph + name_bus0: str + name_bus1: str + + Returns + ------- + bool + Indicator whether line should be added to lines_df or not + """ + # check if neighboring buses are in buses_df + if name_bus0 not in buses_df.index: + if (isinstance(edge['adj_nodes'][0], GeneratorDing0) + or isinstance(edge['adj_nodes'][0], LoadDing0)) and \ + buses_df.loc[name_bus1, 'in_building'] and \ + edge['branch'].length == 1: + return False + else: + raise ValueError('Bus0 of line {} not in buses_df.'.format( + repr(edge['branch']))) + if name_bus1 not in buses_df.index: + if (isinstance(edge['adj_nodes'][1], GeneratorDing0) + or isinstance(edge['adj_nodes'][1], LoadDing0)) and \ + buses_df.loc[name_bus0, 'in_building'] and \ + edge['branch'].length == 1: + return False + else: + raise ValueError('Bus1 of line {} not in buses_df.'.format( + repr(edge['branch']))) + return True - lines['line_id'].append(line_name) - lines['bus0'].append(edge['adj_nodes'][0].pypsa_id) - lines['bus1'].append(edge['adj_nodes'][1].pypsa_id) - lines['x'].append(x_per_km * l) - lines['r'].append(r_per_km * l) - lines['s_nom'].append(s_nom) - lines['length'].append(l) - lines['cables'].append(3) - lines['geom'].append(from_shape( - LineString([edge['adj_nodes'][0].geo_data, - edge['adj_nodes'][1].geo_data]), - srid=srid)) - lines['grid_id'].append(grid.id_db) - return {'Line': DataFrame(lines).set_index('line_id')} +def circuit_breakers_to_df(grid, components, component_data, + open_circuit_breakers, + return_time_varying_data=False): + """ + Appends circuit breakers to component dicts. If circuit breakers are open + a virtual bus is added to the respective dataframe and bus1 of the line + attached to the circuit breaker is set to the new virtual node. + Parameters + ---------- + grid: :class:`~.ding0.core.network.GridDing0` + components: components: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Line', 'Load', + 'Transformer' + component_data: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Load', + needed for power flow calculations + open_circuit_breakers: :obj:`dict` + Dictionary containing names of open circuit breakers + return_time_varying_data: :obj:`bool` + States whether time varying data needed for power flow calculations + are constructed as well. Set to True to run power flow, set to False + to export network to csv. -def run_powerflow_onthefly(components, components_data, grid, export_pypsa_dir=None, debug=False): + Returns + ------- + components: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Line', 'Load', + 'Transformer', 'Switch' + component_data: :obj:`dict` + Dictionary of component Dataframes 'Bus', 'Generator', 'Load', + needed for power flow calculations + """ + if hasattr(grid, '_circuit_breakers'): + # initialise dataframe for circuit breakers + circuit_breakers_df = pd.DataFrame(columns=['name', 'bus_closed', + 'bus_open','branch', + 'type_info']) + for circuit_breaker in grid.circuit_breakers(): + if circuit_breaker.switch_node is not None: + if isinstance(circuit_breaker.switch_node, LVStationDing0): + name_bus_closed = circuit_breaker.switch_node.pypsa_bus0_id + else: + name_bus_closed = circuit_breaker.switch_node.pypsa_bus_id + else: + # get secondary bus of opened branch + name_bus_closed = \ + components['Line'].T[repr(circuit_breaker.branch)].bus1 + # create virtual bus and append to components['Bus'] + name_bus_open = 'virtual_' + name_bus_closed + # if circuit breaker was open, change bus1 of branch to new + # virtual node + if repr(circuit_breaker) in open_circuit_breakers: + if components['Line'].at[repr(circuit_breaker.branch),'bus1'] \ + == name_bus_closed: + components['Line'].at[ + repr(circuit_breaker.branch), 'bus1'] = \ + name_bus_open + elif components['Line'].at[repr(circuit_breaker.branch),'bus0'] \ + == name_bus_closed: + components['Line'].at[ + repr(circuit_breaker.branch), 'bus0'] = \ + name_bus_open + else: + raise Exception('Branch connected to circuit breaker {}' + ' is not connected to node {}'. format( + repr(circuit_breaker), name_bus_closed + )) + + bus_open = components['Bus'].T[name_bus_closed] + bus_open.name = name_bus_open + components['Bus'] = components['Bus'].append(bus_open) + if return_time_varying_data: + component_data['Bus'] = \ + component_data['Bus'].append( + pd.DataFrame({'name': [name_bus_open], + 'temp_id': [1], + 'v_mag_pu_set': [[1, 1]]}). + set_index('name')) + # append circuit breaker to dataframe + circuit_breakers_df = \ + circuit_breakers_df.append( + pd.Series({'name': repr(circuit_breaker), + 'bus_closed': name_bus_closed, + 'bus_open': name_bus_open, + 'branch': repr(circuit_breaker.branch), + 'type_info': 'Switch Disconnector'}), + ignore_index=True) + # add switches to components + components['Switch'] = circuit_breakers_df.set_index('name') + return components, component_data + + +def run_powerflow_onthefly(components, components_data, grid, + export_pypsa_dir=None, debug=False, + export_result_dir=None): """ Run powerflow to test grid stability @@ -382,17 +1297,17 @@ def run_powerflow_onthefly(components, components_data, grid, export_pypsa_dir=N ---------- components: dict of :pandas:`pandas.DataFrame` components_data: dict of :pandas:`pandas.DataFrame` + grid: :class:`~.ding0.core.network.GridDing0` export_pypsa_dir: :obj:`str` - Sub-directory in output/debug/grid/ where csv Files of PyPSA network are exported to. + Sub-directory in output/debug/grid/ where csv Files of PyPSA network + are exported to. Export is omitted if argument is empty. + debug: :obj:`bool` + export_result_dir: :obj:`str` + Directory where csv Files of power flow results are exported to. Export is omitted if argument is empty. """ - scenario = cfg_ding0.get("powerflow", "test_grid_stability_scenario") - start_hour = cfg_ding0.get("powerflow", "start_hour") - end_hour = cfg_ding0.get("powerflow", "end_hour") - # choose temp_id - temp_id_set = 1 timesteps = 2 start_time = datetime(1970, 1, 1, 00, 00, 0) resolution = 'H' @@ -402,12 +1317,12 @@ def run_powerflow_onthefly(components, components_data, grid, export_pypsa_dir=N data_integrity(components, components_data) # define investigated time range - timerange = DatetimeIndex(freq=resolution, - periods=timesteps, - start=start_time) - - # TODO: Instead of hard coding PF config, values from class PFConfigDing0 can be used here. + timerange = date_range(freq=resolution, + periods=timesteps, + start=start_time) + # TODO: Instead of hard coding PF config, values from class PFConfigDing0 + # can be used here. # create PyPSA powerflow problem network, snapshots = create_powerflow_problem(timerange, components) @@ -434,8 +1349,8 @@ def run_powerflow_onthefly(components, components_data, grid, export_pypsa_dir=N 'Bus', 'v_mag_pu_set') - # add coordinates to network nodes and make ready for map plotting - # network = add_coordinates(network) + # check if network is created in a correct way + _check_integrity_of_pypsa(network) # start powerflow calculations network.pf(snapshots) @@ -449,7 +1364,9 @@ def run_powerflow_onthefly(components, components_data, grid, export_pypsa_dir=N # process results bus_data, line_data = process_pf_results(network) - + if export_result_dir: + bus_data.to_csv(os.path.join(export_result_dir,'bus_data.csv')) + line_data.to_csv(os.path.join(export_result_dir, 'line_data.csv')) # assign results data to graph assign_bus_results(grid, bus_data) assign_line_results(grid, line_data) @@ -484,13 +1401,141 @@ def data_integrity(components, components_data): # print short report to user and exit program if not integer for comp in list(data_check.keys()): if data_check[comp]['length_diff'] != 0: - logger.exception("{comp} data is invalid. You supplied {no_comp} {comp} " - "objects and {no_data} datasets. Check you grid data " - "and try again".format(comp=comp, - no_comp=len(components[comp]), - no_data=len(components_data[comp]))) + logger.exception("{comp} data is invalid. You supplied {no_comp} " + "{comp} objects and {no_data} datasets. Check you grid data " + "and try again".format(comp=comp, + no_comp=len(components[comp]), + no_data=len(components_data[comp]))) sys.exit(1) + +def _check_integrity_of_pypsa(pypsa_network): + """ + Checks if pypsa network fulfills certain requirements + + Parameters + ---------- + pypsa_network: PyPSA powerflow problem object + """ + + # check for sub-networks + subgraphs = list(pypsa_network.graph().subgraph(c) for c in + connected_components(pypsa_network.graph())) + pypsa_network.determine_network_topology() + + if len(subgraphs) > 1 or len(pypsa_network.sub_networks) > 1: + raise ValueError("The graph has isolated nodes or edges") + + # check consistency of topology and time series data + generators_ts_p_missing = pypsa_network.generators.loc[ + ~pypsa_network.generators.index.isin( + pypsa_network.generators_t['p_set'].columns.tolist())] + generators_ts_q_missing = pypsa_network.generators.loc[ + ~pypsa_network.generators.index.isin( + pypsa_network.generators_t['q_set'].columns.tolist())] + loads_ts_p_missing = pypsa_network.loads.loc[ + ~pypsa_network.loads.index.isin( + pypsa_network.loads_t['p_set'].columns.tolist())] + loads_ts_q_missing = pypsa_network.loads.loc[ + ~pypsa_network.loads.index.isin( + pypsa_network.loads_t['q_set'].columns.tolist())] + bus_v_set_missing = pypsa_network.buses.loc[ + ~pypsa_network.buses.index.isin( + pypsa_network.buses_t['v_mag_pu_set'].columns.tolist())] + + # Comparison of generators excludes slack generators (have no time series) + if (not generators_ts_p_missing.empty and not all( + generators_ts_p_missing['control'] == 'Slack')): + raise ValueError("Following generators have no `p_set` time series " + "{generators}".format( + generators=generators_ts_p_missing)) + + if (not generators_ts_q_missing.empty and not all( + generators_ts_q_missing['control'] == 'Slack')): + raise ValueError("Following generators have no `q_set` time series " + "{generators}".format( + generators=generators_ts_q_missing)) + + if not loads_ts_p_missing.empty: + raise ValueError("Following loads have no `p_set` time series " + "{loads}".format( + loads=loads_ts_p_missing)) + + if not loads_ts_q_missing.empty: + raise ValueError("Following loads have no `q_set` time series " + "{loads}".format( + loads=loads_ts_q_missing)) + + if not bus_v_set_missing.empty: + raise ValueError("Following loads have no `v_mag_pu_set` time series " + "{buses}".format( + buses=bus_v_set_missing)) + + # check for duplicate labels (of components) + duplicated_labels = [] + if any(pypsa_network.buses.index.duplicated()): + duplicated_labels.append(pypsa_network.buses.index[ + pypsa_network.buses.index.duplicated()]) + if any(pypsa_network.generators.index.duplicated()): + duplicated_labels.append(pypsa_network.generators.index[ + pypsa_network.generators.index.duplicated()]) + if any(pypsa_network.loads.index.duplicated()): + duplicated_labels.append(pypsa_network.loads.index[ + pypsa_network.loads.index.duplicated()]) + if any(pypsa_network.transformers.index.duplicated()): + duplicated_labels.append(pypsa_network.transformers.index[ + pypsa_network.transformers.index.duplicated()]) + if any(pypsa_network.lines.index.duplicated()): + duplicated_labels.append(pypsa_network.lines.index[ + pypsa_network.lines.index.duplicated()]) + if duplicated_labels: + raise ValueError("{labels} have duplicate entry in " + "one of the components dataframes".format( + labels=duplicated_labels)) + + # duplicate p_sets and q_set + duplicate_p_sets = [] + duplicate_q_sets = [] + if any(pypsa_network.loads_t['p_set'].columns.duplicated()): + duplicate_p_sets.append(pypsa_network.loads_t['p_set'].columns[ + pypsa_network.loads_t[ + 'p_set'].columns.duplicated()]) + if any(pypsa_network.loads_t['q_set'].columns.duplicated()): + duplicate_q_sets.append(pypsa_network.loads_t['q_set'].columns[ + pypsa_network.loads_t[ + 'q_set'].columns.duplicated()]) + + if any(pypsa_network.generators_t['p_set'].columns.duplicated()): + duplicate_p_sets.append(pypsa_network.generators_t['p_set'].columns[ + pypsa_network.generators_t[ + 'p_set'].columns.duplicated()]) + if any(pypsa_network.generators_t['q_set'].columns.duplicated()): + duplicate_q_sets.append(pypsa_network.generators_t['q_set'].columns[ + pypsa_network.generators_t[ + 'q_set'].columns.duplicated()]) + + if duplicate_p_sets: + raise ValueError("{labels} have duplicate entry in " + "generators_t['p_set']" + " or loads_t['p_set']".format( + labels=duplicate_p_sets)) + if duplicate_q_sets: + raise ValueError("{labels} have duplicate entry in " + "generators_t['q_set']" + " or loads_t['q_set']".format( + labels=duplicate_q_sets)) + + # find duplicate v_mag_set entries + duplicate_v_mag_set = [] + if any(pypsa_network.buses_t['v_mag_pu_set'].columns.duplicated()): + duplicate_v_mag_set.append(pypsa_network.buses_t['v_mag_pu_set']. + columns[pypsa_network.buses_t[ + 'v_mag_pu_set'].columns.duplicated()]) + + if duplicate_v_mag_set: + raise ValueError("{labels} have duplicate entry in buses_t".format( + labels=duplicate_v_mag_set)) + def process_pf_results(network): """ @@ -532,24 +1577,25 @@ def assign_bus_results(grid, bus_data): Parameters ---------- - grid: ding0.network + grid: :class:`~.ding0.core.network.GridDing0` bus_data: :pandas:`pandas.DataFrame` DataFrame containing voltage levels obtained from PF analysis """ # iterate of nodes and assign voltage obtained from power flow analysis - for node in grid._graph.nodes(): + for node in grid.graph.nodes(): # check if node is connected to graph if (node not in grid.graph_isolated_nodes() and not isinstance(node, LVLoadAreaCentreDing0)): if isinstance(node, LVStationDing0): - node.voltage_res = bus_data.loc[node.pypsa_id, 'v_mag_pu'] + node.voltage_res = bus_data.loc[node.pypsa_bus_id, 'v_mag_pu'] elif isinstance(node, (LVStationDing0, LVLoadAreaCentreDing0)): if node.lv_load_area.is_aggregated: - node.voltage_res = bus_data.loc[node.pypsa_id, 'v_mag_pu'] + node.voltage_res = bus_data.loc[node.pypsa_bus_id, + 'v_mag_pu'] elif not isinstance(node, CircuitBreakerDing0): - node.voltage_res = bus_data.loc[node.pypsa_id, 'v_mag_pu'] + node.voltage_res = bus_data.loc[node.pypsa_bus_id, 'v_mag_pu'] else: logger.warning("Object {} has been skipped while importing " "results!") @@ -561,7 +1607,7 @@ def assign_line_results(grid, line_data): Parameters ----------- - grid: ding0.network + grid: :class:`~.ding0.core.network.GridDing0` line_data: :pandas:`pandas.DataFrame` DataFrame containing active/reactive at nodes obtained from PF analysis """ @@ -569,33 +1615,26 @@ def assign_line_results(grid, line_data): package_path = ding0.__path__[0] edges = [edge for edge in grid.graph_edges() - if (edge['adj_nodes'][0] in grid._graph.nodes() and not isinstance( - edge['adj_nodes'][0], LVLoadAreaCentreDing0)) - and ( - edge['adj_nodes'][1] in grid._graph.nodes() and not isinstance( - edge['adj_nodes'][1], LVLoadAreaCentreDing0))] + if (edge['adj_nodes'][0] in grid.graph.nodes() and + not isinstance(edge['adj_nodes'][0], LVLoadAreaCentreDing0)) + and (edge['adj_nodes'][1] in grid.graph.nodes() and + not isinstance(edge['adj_nodes'][1], LVLoadAreaCentreDing0))] decimal_places = 6 for edge in edges: s_res = [ round(sqrt( - max(abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'p0'][0]), - abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'p1'][0])) ** 2 + - max(abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'q0'][0]), - abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'q1'][0])) ** 2),decimal_places), + max(abs(line_data.loc[repr(edge['branch']), 'p0'][0]), + abs(line_data.loc[repr(edge['branch']), 'p1'][0])) ** 2 + + max(abs(line_data.loc[repr(edge['branch']), 'q0'][0]), + abs(line_data.loc[repr(edge['branch']), 'q1'][0])) ** 2), + decimal_places), round(sqrt( - max(abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'p0'][1]), - abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'p1'][1])) ** 2 + - max(abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'q0'][1]), - abs(line_data.loc["MV_{0}_lin_{1}".format(grid.id_db, edge[ - 'branch'].id_db), 'q1'][1])) ** 2),decimal_places)] + max(abs(line_data.loc[repr(edge['branch']), 'p0'][1]), + abs(line_data.loc[repr(edge['branch']), 'p1'][1])) ** 2 + + max(abs(line_data.loc[repr(edge['branch']), 'q0'][1]), + abs(line_data.loc[repr(edge['branch']), 'q1'][1])) ** 2), + decimal_places)] edge['branch'].s_res = s_res @@ -662,7 +1701,9 @@ def create_powerflow_problem(timerange, components): # add components to network for component in components.keys(): + if component in ['Switch', 'HVMV_Transformer']: + continue network.import_components_from_dataframe(components[component], component) - return network, snapshots \ No newline at end of file + return network, snapshots diff --git a/ding0/tools/results.py b/ding0/tools/results.py index 009a8602..c929048a 100644 --- a/ding0/tools/results.py +++ b/ding0/tools/results.py @@ -32,8 +32,7 @@ from ding0.core.network.loads import LVLoadDing0 from ding0.core import LVLoadAreaCentreDing0 -import pyproj -from functools import partial +from pyproj import Transformer from geoalchemy2.shape import from_shape from sqlalchemy.orm import sessionmaker @@ -80,7 +79,7 @@ def lv_grid_generators_bus_bar(nd): for la in nd._mv_grid_districts[0].lv_load_areas(): for lvgd in la.lv_grid_districts(): - station_neighbors = list(lvgd.lv_grid._graph[ + station_neighbors = list(lvgd.lv_grid.graph[ lvgd.lv_grid._station].keys()) # check if nodes of a statio are members of list generators @@ -294,12 +293,7 @@ def calculate_lvgd_stats(nw): """ ############################## # ETRS (equidistant) to WGS84 (conformal) projection - proj = partial( - pyproj.transform, - # pyproj.Proj(init='epsg:3035'), # source coordinate system - # pyproj.Proj(init='epsg:4326')) # destination coordinate system - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system + proj = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform ############################## # close circuit breakers nw.control_circuit_breakers(mode='close') @@ -532,7 +526,7 @@ def calculate_mvgd_stats(nw): n_outgoing_MV = 0 - G = district.mv_grid._graph + G = district.mv_grid.graph for node in G.nodes(): if isinstance(node, MVStationDing0): @@ -572,33 +566,31 @@ def calculate_mvgd_stats(nw): lvstation_impedance = 1. / lvstation_impedance else: lvstation_impedance = 0. + # identify LV nodes belonging to LV station - for lv_LA in district.lv_load_areas(): - for lv_dist in lv_LA.lv_grid_districts(): - if lv_dist.lv_grid._station == node: - G_lv = lv_dist.lv_grid._graph - # loop over all LV terminal nodes belonging to LV station - for lv_node in G_lv.nodes(): - if isinstance(lv_node, GeneratorDing0) or isinstance(lv_node, LVLoadDing0): - path = nx.shortest_path(G_lv, node, lv_node) - lv_impedance = lvstation_impedance - lv_path_length = 0. - for i in range(len(path)-1): - lv_impedance += (G_lv.adj[path[i]][path[i+1]]['branch'].type['L_l'] * 1e-3 * omega * \ - G_lv.adj[path[i]][path[i+1]]['branch'].length) *1j + \ - (G_lv.adj[path[i]][path[i+1]]['branch'].type['R_l'] * \ - G_lv.adj[path[i]][path[i+1]]['branch'].length) - lv_path_length += G_lv.adj[path[i]][path[i+1]]['branch'].length - lv_thermal_limit = G_lv.adj[path[0]][path[1]]['branch'].type['I_max_th'] - - mvlv_impedances[lv_node] = abs( mv_impedance + lv_impedance ) - mvlv_path_lengths[lv_node] = mv_path_length + lv_path_length - lv_thermal_limits[lv_node] = lv_thermal_limit - mvlv_thermal_limits[lv_node] = mv_thermal_limit - - elif isinstance(lv_node, LVStationDing0): - n_outgoing_LV += len(list(G_lv.neighbors(lv_node))) - n_stations_LV += 1 + G_lv = node.grid._graph + # loop over all LV terminal nodes belonging to LV station + for lv_node in G_lv.nodes(): + if isinstance(lv_node, GeneratorDing0) or isinstance(lv_node, LVLoadDing0): + lv_path = nx.shortest_path(G_lv, node, lv_node) + lv_impedance = lvstation_impedance + lv_path_length = 0. + for i in range(len(lv_path)-1): + lv_impedance += (G_lv.adj[lv_path[i]][lv_path[i+1]]['branch'].type['L_per_km'] * 1e-3 * omega * \ + G_lv.adj[lv_path[i]][lv_path[i+1]]['branch'].length) *1j + \ + (G_lv.adj[lv_path[i]][lv_path[i+1]]['branch'].type['R_per_km'] * \ + G_lv.adj[lv_path[i]][lv_path[i+1]]['branch'].length) + lv_path_length += G_lv.adj[lv_path[i]][lv_path[i+1]]['branch'].length + lv_thermal_limit = G_lv.adj[lv_path[0]][lv_path[1]]['branch'].type['I_max_th'] + + mvlv_impedances[lv_node] = abs( mv_impedance + lv_impedance ) + mvlv_path_lengths[lv_node] = mv_path_length + lv_path_length + lv_thermal_limits[lv_node] = lv_thermal_limit + mvlv_thermal_limits[lv_node] = mv_thermal_limit + + elif isinstance(lv_node, LVStationDing0): + n_outgoing_LV += len(list(G_lv.neighbors(lv_node))) + n_stations_LV += 1 # compute mean values by looping over terminal nodes sum_impedances = 0. @@ -685,7 +677,7 @@ def calculate_mvgd_stats(nw): lv_trafo_count = 0 lv_trafo_cap = 0 - for node in district.mv_grid._graph.nodes(): + for node in district.mv_grid.graph.nodes(): mv_path_length = 0 mvlv_path_length = 0 @@ -722,7 +714,7 @@ def calculate_mvgd_stats(nw): for lv_LA in district.lv_load_areas(): for lv_dist in lv_LA.lv_grid_districts(): if lv_dist.lv_grid._station == node: - for lv_node in lv_dist.lv_grid._graph.nodes(): + for lv_node in lv_dist.lv_grid.graph.nodes(): lv_path_length = lv_dist.lv_grid.graph_path_length( node_source=node, node_target=lv_node) @@ -817,12 +809,7 @@ def calculate_mvgd_stats(nw): # geographic # ETRS (equidistant) to WGS84 (conformal) projection - proj = partial( - pyproj.transform, - # pyproj.Proj(init='epsg:3035'), # source coordinate system - # pyproj.Proj(init='epsg:4326')) # destination coordinate system - pyproj.Proj(init='epsg:4326'), # source coordinate system - pyproj.Proj(init='epsg:3035')) # destination coordinate system + proj = Transformer.from_crs("epsg:4326", "epsg:3035", always_xy=True).transform district_geo = transform(proj, district.geo_data) other_nodes_dict[district.mv_grid.id_db].update({'Dist_area': district_geo.area}) @@ -993,16 +980,15 @@ def calculate_mvgd_stats(nw): mvgd_stats = pd.concat([mvgd_stats, LA_data], axis=1) - LA_data = LA_df.groupby(['grid_id'])['population', - 'residential_peak_load', - 'retail_peak_load', - 'industrial_peak_load', - 'agricultural_peak_load', - 'total_peak_load', - 'lv_generation', - 'lv_gens_lvl_6', - 'lv_gens_lvl_7' - ].sum() + LA_data = LA_df.groupby(['grid_id'])[['population', + 'residential_peak_load', + 'retail_peak_load', + 'industrial_peak_load', + 'agricultural_peak_load', + 'total_peak_load', + 'lv_generation', + 'lv_gens_lvl_6', + 'lv_gens_lvl_7']].sum() LA_data.columns = ['LA Total Population', 'LA Total LV Peak Load Residential', 'LA Total LV Peak Load Retail', @@ -1028,9 +1014,9 @@ def calculate_mvgd_stats(nw): sat_LA_data.columns = ['Number of Load Areas - Satellite'] mvgd_stats = pd.concat([mvgd_stats, sat_LA_data], axis=1) - agg_LA_data = LA_df[LA_df['is_agg']].groupby(['grid_id'])['population', - 'lv_generation', - 'total_peak_load'].sum() + agg_LA_data = LA_df[LA_df['is_agg']].groupby(['grid_id'])[['population', + 'lv_generation', + 'total_peak_load']].sum() agg_LA_data.columns = ['LA Aggregated Population', 'LA Aggregated LV Gen. Cap.', 'LA Aggregated LV Peak Load total' ] @@ -1039,6 +1025,7 @@ def calculate_mvgd_stats(nw): ################################### mvgd_stats = mvgd_stats.fillna(0) mvgd_stats = mvgd_stats[sorted(mvgd_stats.columns.tolist())] + mvgd_stats.index.name = 'grid_id' return mvgd_stats @@ -1075,8 +1062,8 @@ def calculate_mvgd_voltage_current_stats(nw): Vres0 = node.voltage_res[0] Vres1 = node.voltage_res[1] else: - Vres0 = 'Not available' - Vres1 = 'Not available' + Vres0 = np.NaN + Vres1 = np.NaN nodes_dict[nodes_idx] = {'MV_grid_id': district.mv_grid.id_db, 'node id': node.__repr__(), 'V_res_0': Vres0, @@ -1089,8 +1076,8 @@ def calculate_mvgd_voltage_current_stats(nw): s_res0 = branch['branch'].s_res[0] s_res1 = branch['branch'].s_res[1] else: - s_res0 = 'Not available' - s_res1 = 'Not available' + s_res0 = np.NaN + s_res1 = np.NaN branches_dict[branches_idx] = { 'MV_grid_id': district.mv_grid.id_db, diff --git a/ding0/tools/tests.py b/ding0/tools/tests.py index 6b9878f5..cba91f07 100644 --- a/ding0/tools/tests.py +++ b/ding0/tools/tests.py @@ -8,8 +8,14 @@ from geoalchemy2.shape import to_shape from sqlalchemy.orm import sessionmaker +from ding0.tools.results import (calculate_lvgd_stats, + calculate_lvgd_voltage_current_stats, + calculate_mvgd_stats, + calculate_mvgd_voltage_current_stats) import logging +import os + logger = setup_logger(loglevel=logging.CRITICAL) @@ -281,6 +287,50 @@ def manual_ding0_test(mv_grid_districts=[3545], passed, msg = dataframe_equal(nw_1, nw_2) print(' ...' + msg) + +def update_stats_test_data(path, pkl_file=None, pkl_path = ''): + ''' + If changes in electrical data have been made, run this function to update the saved test data in folder. + Test are run on mv_grid_district 460. + :param path: directory where testdata ist stored. Normally: ...ding0/tests/core/network/testdata + :param pkl_file: string of pkl-file of network; optionally, if None new Network is initiated. + :return: + ''' + + if pkl_file is not None: + nd = load_nd_from_pickle(pkl_file,pkl_path) + else: + # database connection/ session + engine = db.connection(section='oedb') + session = sessionmaker(bind=engine)() + + # instantiate new ding0 network object + nd = NetworkDing0(name='network') + + # choose MV Grid Districts to import + mv_grid_districts = [460] + + # run DING0 on selected MV Grid District + nd.run_ding0(session=session, + mv_grid_districts_no=mv_grid_districts) + + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_voltage_current_stats = calculate_mvgd_voltage_current_stats(nd) + mvgd_voltage_nodes = mvgd_voltage_current_stats[0] + mvgd_current_branches = mvgd_voltage_current_stats[1] + mvgd_stats.to_csv(os.path.join(path,'mvgd_stats.csv')) + mvgd_voltage_nodes.to_csv(os.path.join(path, 'mvgd_voltage_nodes.csv')) + mvgd_current_branches.to_csv(os.path.join(path, 'mvgd_current_branches.csv')) + + lvgd_stats = calculate_lvgd_stats(nd) + lvgd_voltage_current_stats = calculate_lvgd_voltage_current_stats(nd) + lvgd_voltage_nodes = lvgd_voltage_current_stats[0] + lvgd_current_branches = lvgd_voltage_current_stats[1] + lvgd_stats.to_csv(os.path.join(path, 'lvgd_stats.csv')) + lvgd_voltage_nodes.to_csv(os.path.join(path, 'lvgd_voltage_nodes.csv')) + lvgd_current_branches.to_csv(os.path.join(path, 'lvgd_current_branches.csv')) + + if __name__ == "__main__": #To run default tests, decomment following line #support.run_unittest(Ding0RunTest) diff --git a/ding0/tools/tools.py b/ding0/tools/tools.py index a9c9e888..91723328 100644 --- a/ding0/tools/tools.py +++ b/ding0/tools/tools.py @@ -42,7 +42,29 @@ def merge_two_dicts(x, y): z.update(y) return z +def merge_two_dicts_of_dataframes(dict1, dict2): + ''' + Merge two dicts of pandas.DataFrame with the same keys + Parameters + ---------- + dict1: dict of dataframes + dict2: dict of dataframes + + + ''' + merged_dict={} + for key in dict1: + if key in dict2: + merged_dict[key] = dict1[key].append(dict2[key]) + else: + merged_dict[key] = dict1[key] + for key in dict2: + if key not in merged_dict: + merged_dict[key] = dict2[key] + return merged_dict + + def get_dest_point(source_point, distance_m, bearing_deg): """ Get the WGS84 point in the coordinate reference system diff --git a/ding0_env.yml b/ding0_env.yml index 61cbb915..7dcc587b 100644 --- a/ding0_env.yml +++ b/ding0_env.yml @@ -1,48 +1,41 @@ name: ding0_env channels: - - conda-forge - - defaults + - conda-forge + - defaults dependencies: - - python = 3.6.5 - - pip = 19.0.3 + - python = 3.8.5 + - pip = 21.1.2 # plotting packages - - descartes - - matplotlib >= 1.5.3, <= 2.0.2 - - seaborn + - descartes == 1.1.0 + - matplotlib >= 1.5.3, <= 3.4.2 + - seaborn == 0.11.1 # numerical processing packages - - pandas = 0.20.3 + - pandas = 1.2.4 # graph theory processing - - networkx >= 2.0 + - networkx == 2.5.1 # testing packages - - unittest2 + - unittest2 == 1.1.0 - pytest # database packages - - sqlalchemy >= 1.0.11, <= 1.2.0 - - geoalchemy2 >= 0.2.6, <=0.4.1 + - sqlalchemy <= 1.3.24 + - geoalchemy2 == 0.6.3 - psycopg2 - # other utilities - - keyring - - # GIS dependencies have to come all from conda-forge - conda-forge::fiona - - conda-forge::pyproj = 1.9.5.1 + - conda-forge::pyproj = 3.0.1 - conda-forge::pyshp - conda-forge::geopandas - - conda-forge::geopy = 1.11.0 - - conda-forge::shapely >= 1.5.12, <= 1.7 + - conda-forge::geopy = 2.1.0 + - conda-forge::shapely >= 1.5.12, <= 1.7.1 - conda-forge::libgdal - pip: - - demandlib - egoio >= 0.4.5 - - keyrings.alt - - oedialect - - pypsa == 0.11.0 - - workalendar + - oedialect == 0.0.10 + - pypsa >= 0.11.0, <= 0.17.1 diff --git a/doc/conf.py b/doc/conf.py index c5e038a8..c5c537ea 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -116,7 +116,7 @@ # General information about the project. project = u'ding0' -copyright = u'2015-2019, open_eGo-Team' +copyright = u'2015-2021, open_eGo-Team' author = u'open_eGo-Team' # The version info for the project you're documenting, acts as replacement for @@ -124,7 +124,7 @@ # built documents. # # The short X.Y version. -version = '0.1.10' +version = '0.2.0' # The full version, including alpha/beta/rc tags. #release = '0.1.10' diff --git a/doc/development.rst b/doc/development.rst index f8fe3710..cdc25f54 100644 --- a/doc/development.rst +++ b/doc/development.rst @@ -8,12 +8,18 @@ PR, contact us, or just create an issue if something seems odd. Test the package installation ============================= +.. warning:: + + The scripts for testing the installation might be outdated and will be + revised in v0.2.1. + We use `Docker `_ to test the build of ding0 on a fresh Ubuntu OS. In order to run such a test make sure docker is -installed +installed. .. code-block:: bash + cd ./test_installation/ chmod +x install_docker.sh ./install_docker.sh @@ -30,6 +36,22 @@ directory of ding0 repository. Then it installs currently checked out version. The installation process can be observed in the terminal. +Run unit and integration tests +============================== + +ding0 comes with a bunch of unit and integration tests on most features. You'll +need additional packages listed in `dev_requirements.txt`. To install, use + +.. code-block:: bash + + pip install -r /path/to/ding0/dev_requirements.txt + +To run tests with e.g. 4 workers (you may omit this argument), use + +.. code-block:: bash + + cd /path/to/ding0/ + pytest --workers 4 -vv Test ding0 runs =============== diff --git a/doc/getting_started.rst b/doc/getting_started.rst index 3a9c47e0..3cc290f4 100644 --- a/doc/getting_started.rst +++ b/doc/getting_started.rst @@ -3,11 +3,11 @@ Getting started .. _installation: -Installation -============ +Installation on Linux +===================== .. note:: - Installation is only tested on (debian like) linux OS. + Installation is only tested on (Debian-like) Linux OS. Ding0 is provided through PyPi package management and, thus, installable from sources of pip3. @@ -42,32 +42,36 @@ Create a new one for Ding0 by .. code-block:: bash # Adjust path to your specific needs - virtualenv -p python3 ~/.virtualenvs/ding0 + virtualenv -p python3.8 ~/virtualenvs/ding0 Jump into (aka. activate) this python distribution by .. code-block:: bash # Adjust path to your specific needs - source ~/.virtualenvs/ding0/bin/activate + source ~/virtualenvs/ding0/bin/activate -From that, the latest release of Ding0 is installed by +From that, the latest release of ding0 is installed by -.. code-block:: python +.. code-block:: bash - pip3 install ding0 + pip install ding0 Pip allows to install a developer version of a package that uses currently -checked out code. A developer mode installation is achieved by +checked out code. A developer mode installation is achieved by cloning the +repository to an arbitrary path (e.g. `~/repos/` in the following example) +and installing manually via pip: -.. code-block:: python +.. code-block:: bash - pip3 install -e path/to/cloned/ding0/repository - + mkdir ~/repos/ + cd ~/repos/ + git clone https://github.com/openego/ding0.git # for SSH use: git clone git@github.com:openego/ding0.git + pip install -e ~/repos/ding0/ -Installation under Windows --------------------------- +Installation on Windows +----------------------- To install Ding0 in windows, it is currently recommended to use `Anaconda `_ or `Miniconda `_ @@ -91,8 +95,14 @@ and create an environment with the ding0_env.yml file provided. This may eventually get fixed later on but for now, we would recommend using only the standard cmd.exe on windows. -To create a ding0 environment using the yaml file in conda, -use the command: +If you're using Git Bash on Windows, you might have to add conda to paths to +have the `conda` command available (adjust path to your Conda installation): + +.. code-block:: bash + + . /c/ProgramData/Anaconda3/etc/profile.d/conda.sh + +To create a ding0 environment using the yaml file in conda, use the command: .. code-block:: bash @@ -114,29 +124,18 @@ use the command: conda activate ding0_env Once the environment is activated, you have two options to install ding0. -Either install it from the local repository with the commands: +Either install it from the local repository with the command: .. code-block:: bash - conda activate ding0_env - pip install -U -e \path\to\ding0\ + pip install -e \path\to\ding0\ Or install it from the pypi repository with the command: .. code-block:: bash - conda activate ding0_env pip install ding0 - - -after this, it is possible to install ding0 directly from pip within the -conda enviornment - -.. code-block:: bash - - conda activate ding0_env - Use Ding0 ========= diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index bd205caf..0d567b1a 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -8,6 +8,7 @@ See what's new as per release! :local: :backlinks: top +.. include:: whatsnew/v0-2-0.rst .. include:: whatsnew/v0-1-12.rst .. include:: whatsnew/v0-1-10.rst .. include:: whatsnew/v0-1-9.rst @@ -18,4 +19,4 @@ See what's new as per release! .. include:: whatsnew/v0-1-4.rst .. include:: whatsnew/v0-1-3.rst .. include:: whatsnew/v0-1-2.rst -.. include:: whatsnew/v0-1-0.rst \ No newline at end of file +.. include:: whatsnew/v0-1-0.rst diff --git a/doc/whatsnew/v0-1-12.rst b/doc/whatsnew/v0-1-12.rst index c50d240a..0a36d792 100644 --- a/doc/whatsnew/v0-1-12.rst +++ b/doc/whatsnew/v0-1-12.rst @@ -1,4 +1,4 @@ -Release v0.1.11 September 20, 2019 +Release v0.1.12 September 20, 2019 +++++++++++++++++++++++++++++++++++ Changes diff --git a/doc/whatsnew/v0-2-0.rst b/doc/whatsnew/v0-2-0.rst new file mode 100644 index 00000000..eea4f701 --- /dev/null +++ b/doc/whatsnew/v0-2-0.rst @@ -0,0 +1,20 @@ +Release v0.2.0 (May 28, 2021) ++++++++++++++++++++++++++++++ + +Changes +------- + +* Added Python 3.8 support `#325 `_ +* Fix installation with Conda `#339 `_ + +* CSV export in PyPSA format `#307 `_ , + this required further changes and fixing of tests, cf. `#312 `_ +* Switched from pyproj1 to pyproj2 for CRS transformations `#343 `_ +* Reproducible stats by fixing `#315 `_, for details see + `#324 `_ +* In the CSV export, (in-building) household loads and generators are no more + contained as extra nodes but directly connected to the house's grid + connection point to reduce the number of nodes. + `#322 `_ +* Fix sum capacity of grid generators `#326 `_ +* Fix PyPI description `#311 `_ diff --git a/requirements.txt b/requirements.txt index a872acde..b1a49002 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,15 +1,15 @@ -networkx >= 2.0 -geopy >= 1.11.0, <= 1.11.0 -pandas >= 0.20.3, <= 0.20.3 -pyproj >= 1.9.5.1, <= 1.9.5.1 -sqlalchemy >= 1.0.11, <= 1.2.0 -geoalchemy2 >= 0.2.6, <= 0.4.1 -matplotlib >= 1.5.3, <= 2.0.2 -egoio >= 0.4.7 -shapely >= 1.5.12, <= 1.7 -pypsa >= 0.11.0, <= 0.11.0 -seaborn -unittest2 -oedialect == 0.0.6.dev0 -geopandas -descartes +networkx == 2.5.1 +geopy == 2.1.0 +pandas == 1.2.4 +pyproj == 3.0.1 +sqlalchemy <= 1.3.24 +geoalchemy2 == 0.6.3 +matplotlib >= 1.5.3, <= 3.4.2 +egoio @ git+https://github.com/openego/ego.io.git@ab327e3c8bdb53b5205af84b41b02700f6d3fb20#egg=egoio +shapely == 1.7.1 +pypsa >= 0.11.0, <= 0.17.1 +seaborn == 0.11.1 +unittest2 == 1.1.0 +oedialect == 0.0.10 +geopandas == 0.9.0 +descartes == 1.1.0 \ No newline at end of file diff --git a/rtd_requirements.txt b/rtd_requirements.txt index efea3e46..2041e4ca 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,19 +1,14 @@ sphinx_rtd_theme networkx >= 2.0 -geopy >=1.11.0, <=1.11.0 -pandas >=0.20.3, <=0.20.3 -pyproj >=1.9.5.1, <=1.9.5.1 -sqlalchemy >= 1.0.11, <= 1.2.0 -geoalchemy2 >= 0.2.6, <= 0.4.1 -matplotlib >=2.0.0, <=2.0.2 +geopy == 2.1.0 +pandas == 1.2.4 +pyproj == 3.0.1 +sqlalchemy <= 1.3.24 +geoalchemy2 == 0.6.3 +matplotlib >= 1.5.3, <= 3.4.2 egoio >=0.4.7 -pypsa >=0.11.0, <=0.11.0 -seaborn -unittest2 -oedialect == 0.0.6.dev0 -mock - - - - - +pypsa >= 0.11.0, <= 0.17.1 +seaborn == 0.11.1 +unittest2 == 1.1.0 +oedialect == 0.0.10 +mock \ No newline at end of file diff --git a/setup.py b/setup.py index f88ddf74..ccfbfdaf 100644 --- a/setup.py +++ b/setup.py @@ -20,18 +20,24 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() + with open('requirements.txt') as f: requirements = f.read().splitlines() +with open('dev_requirements.txt') as f: + dev_requirements = f.read().splitlines() + +with open('README.md', encoding='utf-8') as f: + long_description = f.read() setup(name='ding0', - version='v0.1.12', - author='Reiner Lemoine Institut, openego development group', + version='v0.2.0', + author='Reiner Lemoine Institut', author_email='jonathan.amme@rl-institut.de', description='DIstribution Network GeneratOr', - long_description=read('README.md'), - long_description_content_type='text/x-rst', + long_description=long_description, + long_description_content_type='text/markdown', url='https://github.com/openego/ding0', - license='GNU GPLv3', + license='GNU AGPLv3', packages=find_packages(), install_requires=requirements, package_data={ @@ -71,6 +77,8 @@ def read(fname): '*.vrp'), ]}, + extras_require={ + 'dev': dev_requirements}, classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -78,8 +86,7 @@ def read(fname): "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + "Operating System :: Microsoft :: Windows", + "Programming Language :: Python :: 3.8", "Topic :: Scientific/Engineering"], ) diff --git a/test_installation/README.md b/test_installation/README.md new file mode 100644 index 00000000..34cf87e9 --- /dev/null +++ b/test_installation/README.md @@ -0,0 +1,2 @@ +Warning: the scripts in this directory might be outdated and will be revised +in v0.2.1. diff --git a/check_ding0_installation.sh b/test_installation/check_ding0_installation.sh similarity index 100% rename from check_ding0_installation.sh rename to test_installation/check_ding0_installation.sh diff --git a/ding0_system_dependencies.sh b/test_installation/ding0_system_dependencies.sh similarity index 100% rename from ding0_system_dependencies.sh rename to test_installation/ding0_system_dependencies.sh diff --git a/install_ding0.sh b/test_installation/install_ding0.sh similarity index 100% rename from install_ding0.sh rename to test_installation/install_ding0.sh diff --git a/install_docker.sh b/test_installation/install_docker.sh similarity index 95% rename from install_docker.sh rename to test_installation/install_docker.sh index 637fe673..08aaccde 100755 --- a/install_docker.sh +++ b/test_installation/install_docker.sh @@ -1,6 +1,6 @@ #!/bin/bash -### Script require sudo (root) priviledges ### +### Script require sudo (root) privileges ### # This scripts install docker to test installation of ding0 on a fresh OS # It is adapted to needs of SolydX 8 respectively Debian 8 (Jessie). Level of adaptation is unknown ;-) diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..72dcbffd --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,15 @@ +import pytest +from egoio.tools import db +from sqlalchemy.orm import sessionmaker + + +@pytest.fixture +def oedb_session(): + """ + Returns an ego.io oedb session and closes it on finishing the test + """ + engine = db.connection(readonly=True) + session = sessionmaker(bind=engine)() + yield session + print("closing session") + session.close() \ No newline at end of file diff --git a/tests/core/network/test_grids.py b/tests/core/network/test_grids.py index 7d36e3c8..304a11bb 100644 --- a/tests/core/network/test_grids.py +++ b/tests/core/network/test_grids.py @@ -92,13 +92,13 @@ def circuit_breaker_mvgridding0(self): """ station = MVStationDing0(id_db=0, geo_data=Point(0.5, 0.5)) grid = MVGridDing0(id_db=0, station=station) - branch = BranchDing0(id_db=0, length=2.0, kind='cable') + branch = BranchDing0(id_db=0, length=2.0, kind='cable', grid=grid) circuit_breaker = CircuitBreakerDing0(id_db=0, geo_data=Point(0, 0), branch=branch, grid=grid) grid.add_circuit_breaker(circuit_breaker) - grid._graph.add_edge(circuit_breaker, station, + grid.graph.add_edge(circuit_breaker, station, branch=branch) return grid @@ -150,25 +150,25 @@ def ring_mvgridding0(self): mv_grid=grid) grid.add_generator(generator3) ring = RingDing0(grid=grid) - branch1 = BranchDing0(id_db='0', length=2.0, kind='cable', ring=ring) - branch1a = BranchDing0(id_db='0a', lenght=1.2, kind='cable', ring=ring) - branch2 = BranchDing0(id_db='1', lenght=3.0, kind='line', ring=ring) - branch2a = BranchDing0(id_db='1a', lenght=2.0, kind='line', ring=ring) - branch3 = BranchDing0(id_db='2', length=2.5, kind='line') + branch1 = BranchDing0(id_db='0', length=2.0, kind='cable', ring=ring, grid=grid) + branch1a = BranchDing0(id_db='0a', lenght=1.2, kind='cable', ring=ring, grid=grid) + branch2 = BranchDing0(id_db='1', lenght=3.0, kind='line', ring=ring, grid=grid) + branch2a = BranchDing0(id_db='1a', lenght=2.0, kind='line', ring=ring, grid=grid) + branch3 = BranchDing0(id_db='2', length=2.5, kind='line', grid=grid) circuit_breaker1 = CircuitBreakerDing0(id_db=0, geo_data=Point(0, 0), branch=branch1, grid=grid) grid.add_circuit_breaker(circuit_breaker1) - grid._graph.add_edge(generator1, station, + grid.graph.add_edge(generator1, station, branch=branch1) - grid._graph.add_edge(circuit_breaker1, generator1, + grid.graph.add_edge(circuit_breaker1, generator1, branch=branch1a) - grid._graph.add_edge(generator2, station, + grid.graph.add_edge(generator2, station, branch=branch2) - grid._graph.add_edge(circuit_breaker1, generator2, + grid.graph.add_edge(circuit_breaker1, generator2, branch=branch2a) - grid._graph.add_edge(generator3, generator2, branch=branch3) + grid.graph.add_edge(generator3, generator2, branch=branch3) grid.add_ring(ring) return (ring, grid) @@ -287,21 +287,23 @@ def test_rings_full_data(self, ring_mvgridding0): """ ring, grid = ring_mvgridding0 station = grid.station() - generators = list(grid.generators()) - circuit_breakers = list(grid.circuit_breakers()) + generators = sorted(list(grid.generators()), + key=lambda x: repr(x)) + circuit_breakers = sorted(list(grid.circuit_breakers()), + key=lambda x: repr(x)) branches = sorted(list(map(lambda x: x['branch'], grid.graph_edges())), key=lambda x: repr(x)) ring_expected = ring - # branches following the ring - branches_expected = [branches[1], - branches[0], - branches[3], - branches[2]] rings_nodes_expected = [generators[0], circuit_breakers[0], generators[1], station] + branches_expected = [] + for branch in branches: + nodes = grid.graph_nodes_from_branch(branch) + if nodes[0] in rings_nodes_expected and nodes[1] in rings_nodes_expected: + branches_expected.append(branch) (ring_out, branches_out, rings_nodes_out) = list(grid.rings_full_data())[0] @@ -390,8 +392,8 @@ def oedb_session(self): print("closing session") session.close() - @pytest.fixture - def minimal_unrouted_grid(self): + + def minimal_unrouted_testgrid(self): """ Returns an MVGridDing0 object with a few artificially generated information about a fictious set of load @@ -422,12 +424,12 @@ def minimal_unrouted_grid(self): hvmv_transformers = [ TransformerDing0( - id_db=0, + id_db=1, s_max_longterm=63000.0, v_level=20.0 ), TransformerDing0( - id_db=1, + id_db=2, s_max_longterm=63000.0, v_level=20.0 ) @@ -435,8 +437,8 @@ def minimal_unrouted_grid(self): # Add the transformers to the station - for hvmv_transfromer in hvmv_transformers: - mv_station.add_transformer(hvmv_transfromer) + for hvmv_transformer in hvmv_transformers: + mv_station.add_transformer(hvmv_transformer) # Create the MV Grid mv_grid = MVGridDing0( @@ -475,7 +477,9 @@ def minimal_unrouted_grid(self): reinforce_only=0) ) ) - # Add some MV Generators that are directly connected at the station + + for hvmv_transformer in hvmv_transformers: + hvmv_transformer.grid = mv_grid mv_generators = [ GeneratorDing0( @@ -543,7 +547,7 @@ def minimal_unrouted_grid(self): # Create the LV Grid Districts lv_grid_districts_data = pd.DataFrame( dict( - la_id=list(range(19)), + la_id=list(range(1000, 1019)), population=[ 223, 333, 399, 342, 429, 493, 431, 459, @@ -871,7 +875,7 @@ def minimal_unrouted_grid(self): lv_load_area.geo_area = row['geom'] lv_load_area.geo_centre = row['geom'].centroid lv_grid_district = LVGridDistrictDing0( - id_db=id, + id_db=row["la_id"], lv_load_area=lv_load_area, geo_data=row['geom'], population=(0 @@ -906,13 +910,13 @@ def minimal_unrouted_grid(self): # be aware, lv_grid takes grid district's geom! lv_grid = LVGridDing0(network=network, grid_district=lv_grid_district, - id_db=id_db, + id_db=row["la_id"], geo_data=row['geom'], v_level=lv_nominal_voltage) # create LV station lv_station = LVStationDing0( - id_db=id_db, + id_db=row["la_id"], grid=lv_grid, lv_load_area=lv_load_area, geo_data=row['geom'].centroid, @@ -934,7 +938,7 @@ def minimal_unrouted_grid(self): mv_grid_district.add_lv_load_area(lv_load_area) lv_stations.append(lv_station) - lv_stations = sorted(lv_stations, key=lambda x: repr(x)) + lv_stations = sorted(lv_stations, key=lambda x: x.id_db) mv_grid_district.add_peak_demand() mv_grid.set_voltage_level() @@ -963,13 +967,17 @@ def minimal_unrouted_grid(self): return network, mv_grid, lv_stations + @pytest.fixture + def minimal_unrouted_grid(self): + return self.minimal_unrouted_testgrid() + def test_local_routing(self, minimal_unrouted_grid): """ Rigorous test to the function :meth:`~.core.network.grids.MVGridDing0.routing` """ nd, mv_grid, lv_stations = minimal_unrouted_grid - graph = mv_grid._graph + graph = mv_grid.graph # pre-routing asserts # check the grid_district @@ -1002,50 +1010,42 @@ def test_local_routing(self, minimal_unrouted_grid): nd.mv_routing() # post-routing asserts - # check that the connections are between the expected - # load areas - mv_station = mv_grid.station() expected_edges_list = [ - (mv_station, lv_stations[0]), - (mv_station, lv_stations[1]), - (mv_station, lv_stations[5]), - (mv_station, lv_stations[8]), - (mv_station, lv_stations[9]), - (mv_station, lv_stations[10]), - (mv_station, lv_stations[13]), - (mv_station, lv_stations[14]), - (mv_station, lv_stations[16]), - (lv_stations[0], lv_stations[12]), - (lv_stations[1], lv_stations[11]), - (lv_stations[11], lv_stations[12]), - (lv_stations[13], lv_stations[17]), - (lv_stations[14], lv_stations[15]), - (lv_stations[15], lv_stations[16]), - (lv_stations[18], lv_stations[2]), - (lv_stations[3], lv_stations[7]), - (lv_stations[6], lv_stations[7]), + ('MVCableDist_mvgd_0_1', 'MVStation_mvgd_0'), + ('MVCableDist_mvgd_0_2', 'MVStation_mvgd_0'), + ('MVCableDist_mvgd_0_3', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1000', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1001', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1013', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1016', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1017', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1018', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1004', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1005', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1007', 'MVStation_mvgd_0'), + ('LVStation_mvgd_0_lvgd_1000', 'LVStation_mvgd_0_lvgd_1003'), + ('LVStation_mvgd_0_lvgd_1001', 'LVStation_mvgd_0_lvgd_1002'), + ('LVStation_mvgd_0_lvgd_1002', 'LVStation_mvgd_0_lvgd_1003'), + ('LVStation_mvgd_0_lvgd_1004', 'LVStation_mvgd_0_lvgd_1008'), + ('LVStation_mvgd_0_lvgd_1005', 'LVStation_mvgd_0_lvgd_1006'), + ('LVStation_mvgd_0_lvgd_1006', 'LVStation_mvgd_0_lvgd_1007'), + ('LVStation_mvgd_0_lvgd_1008', 'MVCableDist_mvgd_0_4'), + ('LVStation_mvgd_0_lvgd_1009', 'LVStation_mvgd_0_lvgd_1010'), + ('LVStation_mvgd_0_lvgd_1009', 'MVCableDist_mvgd_0_4'), + ('LVStation_mvgd_0_lvgd_1011', 'LVStation_mvgd_0_lvgd_1015'), + ('LVStation_mvgd_0_lvgd_1012', 'MVCableDist_mvgd_0_5'), + ('LVStation_mvgd_0_lvgd_1013', 'MVCableDist_mvgd_0_5'), + ('LVStation_mvgd_0_lvgd_1014', 'LVStation_mvgd_0_lvgd_1015'), + ('LVStation_mvgd_0_lvgd_1015', 'MVCableDist_mvgd_0_4'), + ('LVStation_mvgd_0_lvgd_1015', 'MVCableDist_mvgd_0_5'), + ('LVStation_mvgd_0_lvgd_1016', 'MVCableDist_mvgd_0_1'), + ('LVStation_mvgd_0_lvgd_1017', 'MVCableDist_mvgd_0_2'), + ('LVStation_mvgd_0_lvgd_1018', 'MVCableDist_mvgd_0_3') ] - - #real edges sorted - real_edges_sort = [] - for i in range(0,len(list(graph.edges()))): - real_edges_sort.append( - tuple(sorted(list(graph.edges())[i], key=lambda x: repr(x)))) - - #sort the tuples and compare them - correct_edges = [] - for i in range(0, len(expected_edges_list)): - if tuple(sorted(expected_edges_list[i], key=lambda x:repr(x))) in\ - real_edges_sort: - correct_edges.append(True) - else: - correct_edges.append((False)) - print('Tuple', expected_edges_list[i], 'not in set') - - - #check if every tuple of the expected edges is in the list, disregarding order - assert len(list(filter(lambda x: x == True, correct_edges))) == 18 + for edge_real, edge_expected in zip(graph.edges(), expected_edges_list): + assert ((repr(edge_real[0]), repr(edge_real[1])) == edge_expected or + (repr(edge_real[1]), repr(edge_real[0])) == edge_expected) # check graph attributes assert len(list(graph.nodes())) == 35 @@ -1070,7 +1070,7 @@ def test_local_routing(self, minimal_unrouted_grid): nx.betweenness_centrality(graph) ).mean(axis=0) == pytest.approx(0.033613445, abs=0.00001) assert pd.Series( - nx.edge_betweenness_centrality(graph) + {_: v for _, (k, v) in enumerate(nx.edge_betweenness_centrality(graph).items())} ).mean(axis=0) == pytest.approx(0.05378151, abs=0.00001) def test_routing(self, oedb_session): @@ -1093,7 +1093,7 @@ def test_routing(self, oedb_session): # STEP 5: Build LV grids nd.build_lv_grids() - graph = nd._mv_grid_districts[0].mv_grid._graph + graph = nd._mv_grid_districts[0].mv_grid.graph assert len(list(graph.nodes())) == 256 assert len(list(graph.edges())) == 0 @@ -1136,7 +1136,7 @@ def test_routing(self, oedb_session): nx.betweenness_centrality(graph) ).mean(axis=0) == pytest.approx(0.0354629, abs=0.00001) assert pd.Series( - nx.edge_betweenness_centrality(graph) + {_: v for _, (k, v) in enumerate(nx.edge_betweenness_centrality(graph).items())} ).mean(axis=0) == pytest.approx(0.04636150, abs=0.00001) def test_construct(self, minimal_unrouted_grid): @@ -1148,14 +1148,14 @@ def test_construct(self, minimal_unrouted_grid): -Right connections for the cable distr. -Right type of cable for the circuit breakers""" - network, mv_grid, lv_stations =minimal_unrouted_grid + network, mv_grid, lv_stations = minimal_unrouted_grid lv_stations = sorted(lv_stations, key=lambda x: x.id_db) network.mv_routing(debug=True) #Check mv_stations connections (generators should not be connected) - assert len(list(mv_grid._graph.adj[mv_grid._station])) == 12 - assert any(j in list(mv_grid._graph.adj[mv_grid._station]) + assert len(list(mv_grid.graph.adj[mv_grid._station])) == 12 + assert any(j in list(mv_grid.graph.adj[mv_grid._station]) for j in mv_grid._generators[0:4]) == False b = [0,1,13,16,17,18,4,5,7] @@ -1170,34 +1170,34 @@ def test_construct(self, minimal_unrouted_grid): (Single Connections)""" assert len(mv_grid._cable_distributors) == 5 - assert any(y in mv_grid._graph.adj[lv_stations[8]] + assert any(y in mv_grid.graph.adj[lv_stations[8]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[9]] + assert any(y in mv_grid.graph.adj[lv_stations[9]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[12]] + assert any(y in mv_grid.graph.adj[lv_stations[12]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[13]] + assert any(y in mv_grid.graph.adj[lv_stations[13]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[16]] + assert any(y in mv_grid.graph.adj[lv_stations[16]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[17]] + assert any(y in mv_grid.graph.adj[lv_stations[17]] for y in mv_grid._cable_distributors) - assert any(y in mv_grid._graph.adj[lv_stations[18]] + assert any(y in mv_grid.graph.adj[lv_stations[18]] for y in mv_grid._cable_distributors) """Check cable Distributors have right connections (Double Connections disregarding order) """ - mv_stat_cdt = list(y in mv_grid._graph.adj[mv_grid._station] + mv_stat_cdt = list(y in mv_grid.graph.adj[mv_grid._station] for y in mv_grid._cable_distributors) - lv_15_cdt = list(y in mv_grid._graph.adj[lv_stations[15]] + lv_15_cdt = list(y in mv_grid.graph.adj[lv_stations[15]] for y in mv_grid._cable_distributors) assert len(list(filter(lambda x: x == True, mv_stat_cdt))) == 3 @@ -1265,7 +1265,7 @@ def basic_lv_grid(self, lv_grid_district_data): v_level_operation=20.0 ) hvmv_transformer = TransformerDing0( - id_db=0, + id_db=1, s_max_longterm=63000.0, v_level=20.0) @@ -1431,7 +1431,6 @@ def basic_lv_grid(self, lv_grid_district_data): return lv_grid - class TestLVGridDing0(object): @pytest.fixture @@ -1747,7 +1746,7 @@ def test_add_station(self, empty_lvgridding0): lv_grid=lv_grid, lv_load_area=lv_load_area) - graph = lv_grid._graph + graph = lv_grid.graph n = nx.number_of_nodes(graph) lv_grid.add_station(new_lv) m = nx.number_of_nodes(graph) @@ -1821,7 +1820,7 @@ def test_build_grid_ria_branches(self, basic_lv_grid): basic_lv_grid.build_grid() assert len(basic_lv_grid._loads) == 9 - assert len(list(basic_lv_grid._graph.node)) == 28 + assert len(list(basic_lv_grid.graph.nodes)) == 28 assert (basic_lv_grid._loads[n].peak_load == 176 for n in range(0, 4)) assert (basic_lv_grid._loads[n].peak_load == 56 for n in range(4, 9)) @@ -1840,12 +1839,12 @@ def test_build_grid_residential_branches(self, basic_lv_grid): basic_lv_grid.build_grid() assert len(basic_lv_grid._loads) == 29 - assert len(basic_lv_grid._graph.node) == 29 + 2*29 + 1 + assert len(basic_lv_grid.graph.nodes) == 29 + 2*29 + 1 assert (round(basic_lv_grid._loads[n].peak_load) == 10.0 for n in range(0, 29)) #2 Branches from LV_station - assert len(np.nonzero(nx.adjacency_matrix(basic_lv_grid._graph)[0, :] + assert len(np.nonzero(nx.adjacency_matrix(basic_lv_grid.graph)[0, :] .toarray())) == 2 def test_connect_generators(self, basic_lv_grid): @@ -1870,21 +1869,21 @@ def test_reinforce_grid(self, basic_lv_grid): #from ding0.flexopt.check_tech_constraints import get_critical_line_loading - # Verify the LV_Grid._graph gets constructed correctly and that it only has one + # Verify the LV_Grid.graph gets constructed correctly and that it only has one #Transformer - assert len(list(basic_lv_grid._graph.edges(basic_lv_grid._station)))\ + assert len(list(basic_lv_grid.graph.edges(basic_lv_grid._station)))\ == 1 assert len(basic_lv_grid._station._transformers) == 1 # Branches HH_1,HH_2,HH_3 should have as default the corresponding cable - assert basic_lv_grid._graph._adj[basic_lv_grid._station]\ + assert basic_lv_grid.graph._adj[basic_lv_grid._station]\ [basic_lv_grid._cable_distributors[0]]['branch'].type.name == "NAYY 4x1x150" - assert basic_lv_grid._graph._adj[basic_lv_grid._cable_distributors[2]]\ + assert basic_lv_grid.graph._adj[basic_lv_grid._cable_distributors[2]]\ [basic_lv_grid._cable_distributors[0]]['branch'].type.name == "NAYY 4x1x150" - assert basic_lv_grid._graph._adj[basic_lv_grid._cable_distributors[4]]\ + assert basic_lv_grid.graph._adj[basic_lv_grid._cable_distributors[4]]\ [basic_lv_grid._cable_distributors[2]]['branch'].type.name == "NAYY 4x1x150" basic_lv_grid.reinforce_grid() @@ -1892,21 +1891,21 @@ def test_reinforce_grid(self, basic_lv_grid): # Verify that the station is reinforced with another transformer - assert len(list(basic_lv_grid._graph.edges(basic_lv_grid._station))) \ + assert len(list(basic_lv_grid.graph.edges(basic_lv_grid._station))) \ == 2 assert len(basic_lv_grid._station._transformers) == 2 #Verify that the critical branches get the cables changed with the correct ones - assert basic_lv_grid._graph._adj[basic_lv_grid._station] \ + assert basic_lv_grid.graph._adj[basic_lv_grid._station] \ [basic_lv_grid._cable_distributors[0]]['branch'].type.name == "NAYY 4x1x300" - assert basic_lv_grid._graph._adj[basic_lv_grid._cable_distributors[2]]\ + assert basic_lv_grid.graph._adj[basic_lv_grid._cable_distributors[2]]\ [basic_lv_grid._cable_distributors[0]]['branch'].type.name == "NAYY 4x1x240" - assert basic_lv_grid._graph._adj[basic_lv_grid._cable_distributors[4]]\ + assert basic_lv_grid.graph._adj[basic_lv_grid._cable_distributors[4]]\ [basic_lv_grid._cable_distributors[2]]['branch'].type.name == "NAYY 4x1x240" if __name__ == "__main__": - pass \ No newline at end of file + pass diff --git a/tests/core/network/test_network.py b/tests/core/network/test_network.py index e0e3edfc..782e1458 100644 --- a/tests/core/network/test_network.py +++ b/tests/core/network/test_network.py @@ -8,6 +8,14 @@ GeneratorDing0, GeneratorFluctuatingDing0, LoadDing0) from ding0.core.structure.regions import LVLoadAreaCentreDing0 +from ding0.tools.results import (calculate_lvgd_stats, + calculate_lvgd_voltage_current_stats, + calculate_mvgd_stats, + calculate_mvgd_voltage_current_stats) +import pandas as pd +from pandas.testing import assert_frame_equal +import os +import numpy as np class TestGridDing0(object): @@ -160,20 +168,20 @@ def test_add_generator(self, empty_grid): def test_graph_add_node_station(self, empty_grid): station1 = StationDing0() empty_grid.graph_add_node(station1) - assert station1 in empty_grid._graph.nodes() - assert len(list(empty_grid._graph.nodes())) == 1 + assert station1 in empty_grid.graph.nodes() + assert len(list(empty_grid.graph.nodes())) == 1 def test_graph_add_node_cable_distributor(self, empty_grid): cable_distributor1 = CableDistributorDing0() empty_grid.graph_add_node(cable_distributor1) - assert cable_distributor1 in empty_grid._graph.nodes() - assert len(list(empty_grid._graph.nodes())) == 1 + assert cable_distributor1 in empty_grid.graph.nodes() + assert len(list(empty_grid.graph.nodes())) == 1 def test_graph_add_node_lv_load_area_centre(self, empty_grid): lv_load_area_centre1 = LVLoadAreaCentreDing0() empty_grid.graph_add_node(lv_load_area_centre1) - assert lv_load_area_centre1 in empty_grid._graph.nodes() - assert len(list(empty_grid._graph.nodes())) == 1 + assert lv_load_area_centre1 in empty_grid.graph.nodes() + assert len(list(empty_grid.graph.nodes())) == 1 def test_graph_add_node_generator(self, empty_grid): # an add_node is called within add_generator @@ -181,8 +189,8 @@ def test_graph_add_node_generator(self, empty_grid): generator1 = GeneratorDing0(id_db=0, geo_data=geo_data1) empty_grid.graph_add_node(generator1) - assert generator1 in empty_grid._graph.nodes() - assert len(list(empty_grid._graph.nodes())) == 1 + assert generator1 in empty_grid.graph.nodes() + assert len(list(empty_grid.graph.nodes())) == 1 def test_graph_add_node_add_generator(self, empty_grid): # an add_node is called within add_generator @@ -190,12 +198,12 @@ def test_graph_add_node_add_generator(self, empty_grid): generator1 = GeneratorDing0(id_db=0, geo_data=geo_data1) empty_grid.add_generator(generator1) - assert generator1 in empty_grid._graph.nodes() + assert generator1 in empty_grid.graph.nodes() # make sure that another call of add_nodes # does nothing - len_nodes_before = len(list(empty_grid._graph.nodes())) + len_nodes_before = len(list(empty_grid.graph.nodes())) empty_grid.graph_add_node(generator1) - len_nodes_after = len(list(empty_grid._graph.nodes())) + len_nodes_after = len(list(empty_grid.graph.nodes())) assert len_nodes_before == len_nodes_after def test_graph_add_node_generator_fluctuating(self, empty_grid): @@ -204,12 +212,12 @@ def test_graph_add_node_generator_fluctuating(self, empty_grid): generator1 = GeneratorFluctuatingDing0(id_db=0, geo_data=geo_data1) empty_grid.add_generator(generator1) - assert generator1 in empty_grid._graph.nodes() + assert generator1 in empty_grid.graph.nodes() # make sure that another call of add_nodes # does nothing - len_nodes_before = len(list(empty_grid._graph.nodes())) + len_nodes_before = len(list(empty_grid.graph.nodes())) empty_grid.graph_add_node(generator1) - len_nodes_after = len(list(empty_grid._graph.nodes())) + len_nodes_after = len(list(empty_grid.graph.nodes())) assert len_nodes_before == len_nodes_after # negative tests for graph_add_node @@ -218,27 +226,27 @@ def test_graph_add_node_load(self, empty_grid): empty_grid._loads = [load1] # make sure that call of add_nodes # does nothing - len_nodes_before = len(list(empty_grid._graph.nodes())) + len_nodes_before = len(list(empty_grid.graph.nodes())) empty_grid.graph_add_node(load1) - len_nodes_after = len(list(empty_grid._graph.nodes())) + len_nodes_after = len(list(empty_grid.graph.nodes())) assert len_nodes_before == len_nodes_after def test_graph_add_node_branch(self, empty_grid): branch1 = BranchDing0() # make sure that call of add_nodes # does nothing - len_nodes_before = len(list(empty_grid._graph.nodes())) + len_nodes_before = len(list(empty_grid.graph.nodes())) empty_grid.graph_add_node(branch1) - len_nodes_after = len(list(empty_grid._graph.nodes())) + len_nodes_after = len(list(empty_grid.graph.nodes())) assert len_nodes_before == len_nodes_after def test_graph_add_node_grid(self, empty_grid): grid1 = GridDing0() # make sure that call of add_nodes # does nothing - len_nodes_before = len(list(empty_grid._graph.nodes())) + len_nodes_before = len(list(empty_grid.graph.nodes())) empty_grid.graph_add_node(grid1) - len_nodes_after = len(list(empty_grid._graph.nodes())) + len_nodes_after = len(list(empty_grid.graph.nodes())) assert len_nodes_before == len_nodes_after @pytest.fixture @@ -252,8 +260,9 @@ def simple_graph_grid(self): grid.add_generator(generator) branch = BranchDing0(id_db=0, length=2.0, - kind='cable') - grid._graph.add_edge(generator, station, branch=branch) + kind='cable', + grid=grid) + grid.graph.add_edge(generator, station, branch=branch) return (grid, station, generator, branch) def test_graph_nodes_from_branch(self, simple_graph_grid): @@ -296,6 +305,66 @@ def test_graph_isolated_nodes(self, simple_graph_grid): isolates = grid.graph_isolated_nodes() assert isolates == [] + def test_grid_stats(self, oedb_session): + """ + Using grid district 460 to check if statistical data stay the same + :param oedb_session: + :return: + """ + # instantiate new ding0 network object + path = os.path.dirname(os.path.abspath(__file__)) + + nd = NetworkDing0(name='network') + + mv_grid_districts = [460] + + nd.run_ding0(session=oedb_session, + mv_grid_districts_no=mv_grid_districts) + + # check mv grid statistics + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/mvgd_stats_460.csv')), index_col="grid_id") + assert_frame_equal(mvgd_stats, mvgd_stats_comparison, check_dtype=False, check_index_type=False) + + # check mv grid statistics voltages and currents + mvgd_voltage_current_stats = calculate_mvgd_voltage_current_stats(nd) + mvgd_current_branches = mvgd_voltage_current_stats[1] + mvgd_voltage_nodes = mvgd_voltage_current_stats[0] + mvgd_current_branches_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/mvgd_stats_current_460.csv')), + index_col="branch id") + mvgd_current_branches = mvgd_current_branches.replace('NA', np.NaN) + mvgd_voltage_nodes_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/mvgd_stats_voltage_460.csv')), + index_col="node id") + mvgd_voltage_nodes = mvgd_voltage_nodes.replace('NA', np.NaN) + assert_frame_equal(mvgd_current_branches, mvgd_current_branches_comparison, check_dtype=False) + assert_frame_equal(mvgd_voltage_nodes, mvgd_voltage_nodes_comparison, check_dtype=False) + + # check lv grid statistics + lvgd_stats = calculate_lvgd_stats(nd) + lvgd_stats_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/lvgd_stats_460.csv')), + index_col="LV_grid_id") + assert_frame_equal(lvgd_stats, lvgd_stats_comparison, check_dtype=False) + + # check lv grid statistics voltages and currents + lvgd_voltage_current_stats = calculate_lvgd_voltage_current_stats(nd) + lvgd_current_branches = lvgd_voltage_current_stats[1] + lvgd_voltage_nodes = lvgd_voltage_current_stats[0] + lvgd_current_branches_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/lvgd_stats_current_460.csv')), + index_col="branch id") + lvgd_current_branches = lvgd_current_branches.replace('NA', np.NaN) + lvgd_voltage_nodes_comparison = pd.read_csv( + os.path.abspath(os.path.join(path, "..", "..", 'test_data/lvgd_stats_voltage_460.csv')), + index_col="node id") + lvgd_voltage_nodes = lvgd_voltage_nodes.replace('NA', np.NaN) + + assert_frame_equal(lvgd_current_branches, lvgd_current_branches_comparison, check_dtype=False) + assert_frame_equal(lvgd_voltage_nodes, lvgd_voltage_nodes_comparison, check_dtype=False) + class TestStationDing0(object): @@ -315,7 +384,7 @@ def test_empty_stationding0(self, empty_stationding0): assert list(empty_stationding0.transformers()) == [] def test_add_transformer(self, empty_stationding0): - transformer1 = TransformerDing0(id_db=0, + transformer1 = TransformerDing0(id_db=1, v_level=4, s_max_longterm=400.0, s_max_shortterm=600.0, @@ -324,7 +393,7 @@ def test_add_transformer(self, empty_stationding0): tap_ratio=1.02, r_pu=0.02, x_pu=0.002) - transformer2 = TransformerDing0(id_db=1, + transformer2 = TransformerDing0(id_db=2, v_level=4, s_max_longterm=600.0, s_max_shortterm=900.0, @@ -339,7 +408,7 @@ def test_add_transformer(self, empty_stationding0): assert len(transformer_list) == 2 transformer1_in_empty_stationding0 = transformer_list[0] assert transformer1_in_empty_stationding0 == transformer1 - assert transformer1_in_empty_stationding0.id_db == 0 + assert transformer1_in_empty_stationding0.id_db == 1 assert transformer1_in_empty_stationding0.v_level == 4 assert transformer1_in_empty_stationding0.s_max_a == 400.0 assert transformer1_in_empty_stationding0.s_max_b == 600.0 @@ -350,7 +419,7 @@ def test_add_transformer(self, empty_stationding0): assert transformer1_in_empty_stationding0.x_pu == 0.002 transformer2_in_empty_stationding0 = transformer_list[1] assert transformer2_in_empty_stationding0 == transformer2 - assert transformer2_in_empty_stationding0.id_db == 1 + assert transformer2_in_empty_stationding0.id_db == 2 assert transformer2_in_empty_stationding0.v_level == 4 assert transformer2_in_empty_stationding0.s_max_a == 600.0 assert transformer2_in_empty_stationding0.s_max_b == 900.0 @@ -363,3 +432,4 @@ def test_add_transformer(self, empty_stationding0): if __name__ == "__main__": pass + diff --git a/tests/core/test_core.py b/tests/core/test_core.py index 06898a7c..14cddf60 100644 --- a/tests/core/test_core.py +++ b/tests/core/test_core.py @@ -2,9 +2,12 @@ from egoio.tools import db from sqlalchemy.orm import sessionmaker -import oedialect - +# import oedialect +import pandas as pd +import os +from tests.core.network.test_grids import TestMVGridDing0 from ding0.core import NetworkDing0 +import shutil class TestNetworkDing0(object): @@ -27,6 +30,14 @@ def oedb_session(self): print("closing session") session.close() + @pytest.fixture + def minimal_grid(self): + nd, mv_grid, lv_stations = \ + TestMVGridDing0().minimal_unrouted_testgrid() + nd.mv_routing() + nd.connect_generators() + return nd + def test_empty_mv_grid_districts(self, emptyNetworkDing0): mv_grid_districts = list(emptyNetworkDing0.mv_grid_districts()) empty_list = [] @@ -39,5 +50,203 @@ def test_import_mv_grid_districts(self, oedb_session): mv_grid_districts_no=['5'] ) - # def test_run_ding0(self): - # pass + def test_to_csv(self, minimal_grid): + """ + Check if export to csv exports network in a way that all exported + nodes and elements are connected to each other. + Checks if lines, transformers, loads and generators can be connected + with buses. + Checks if all exported buses are connected to at least one branch + element (lines, transformers). + """ + nd = minimal_grid + + # export to pypsa csv format + path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'test') + nd.to_csv(path) + + # import exported dataset + id_mvgd = str(nd._mv_grid_districts[0].mv_grid.grid_district.id_db) + buses = pd.read_csv( + os.path.join(path, id_mvgd, 'buses.csv'), index_col=0) + lines = pd.read_csv( + os.path.join(path, id_mvgd, 'lines.csv'), index_col=0) + loads = pd.read_csv( + os.path.join(path, id_mvgd, 'loads.csv'), index_col=0) + generators = pd.read_csv( + os.path.join(path, id_mvgd, 'generators.csv'), index_col=0) + transformers = pd.read_csv( + os.path.join(path, id_mvgd, 'transformers.csv'), index_col=0) + switches = pd.read_csv( + os.path.join(path, id_mvgd, 'switches.csv'), index_col=0) + + try: + # check if all entries are unique + if not lines.index.is_unique: + raise Exception('Line names are not unique. Please check.') + if not transformers.index.is_unique: + raise Exception( + 'Transformer names are not unique. Please check.') + if not loads.index.is_unique: + raise Exception('Load names are not unique. Please check.') + if not generators.index.is_unique: + raise Exception( + 'Generator names are not unique. Please check.') + if not buses.index.is_unique: + raise Exception('Bus names are not unique. Please check.') + if not switches.index.is_unique: + raise Exception('Switch names are not unique. Please check.') + # check if buses of lines exist in buses + for bus in lines['bus0']: + if bus in buses.T: + continue + else: + raise Exception( + 'bus0 {} of line not in buses dataframe.'.format(bus)) + for bus in lines['bus1']: + if bus in buses.T: + continue + else: + raise Exception( + 'bus1 {} of line not in buses dataframe.'.format(bus)) + + # check if buses of transformers exist in buses + for bus in transformers['bus0']: + if bus in buses.T: + continue + else: + raise Exception('bus0 {} of transformer not ' + 'in buses dataframe.'.format(bus)) + for bus in transformers['bus1']: + if bus in buses.T: + continue + else: + raise Exception('bus1 {} of transformer not ' + 'in buses dataframe.'.format(bus)) + + # check if buses of loads exist in buses + for bus in loads['bus']: + if bus in buses.T: + continue + else: + raise Exception('bus {} of load not in ' + 'buses dataframe.'.format(bus)) + + # check if buses of generators exist in buses + for bus in generators['bus']: + if bus in buses.T: + continue + else: + raise Exception('bus {} of generator not ' + 'in buses dataframe.'.format(bus)) + + # check if buses of switches exist in buses + for bus in switches['bus_open']: + if bus in buses.T: + continue + else: + raise Exception('bus {} of open switches not ' + 'in buses dataframe.'.format(bus)) + for bus in switches['bus_closed']: + if bus in buses.T: + continue + else: + raise Exception('bus {} of closed switches not ' + 'in buses dataframe.'.format(bus)) + + # check if all buses are connected to either line or transformer + for bus in buses.T: + if bus not in lines['bus0'].values and \ + bus not in lines['bus1'].values and \ + bus not in transformers['bus0'].values and \ + bus not in transformers['bus1'].values and \ + bus not in switches['bus_open'].values: + raise Exception('Bus {} is not connected to any branch.' + .format(bus)) + finally: + shutil.rmtree(path, ignore_errors=True) + + def test_run_powerflow(self, minimal_grid): + """ + Checks if power flow on test grid provides the expected values. + Both power flow on only mv grid and on combined mv and lv grids + are tested. + """ + try: + def extract_tuple_values_from_string(string): + tuple = string.replace('[', '') + tuple = tuple.replace(']', '') + tuple = str.split(tuple, ',') + return float(tuple[0]), float(tuple[1]) + + def assert_by_absolute_tolerance(x, y, tol=0.0001, + element_name='', + assert_by_abs=False): + if not assert_by_abs: + if x - y > tol: + raise Exception('Unequal values for element {}: ' + 'val1 is {}, val2 is {}.'.format( + element_name, x, y)) + else: + # Todo: check reason for different sign of line load. + # Todo: Reason possibly in allocation of bus0 and bus1 of lines. + if abs(x) - abs(y) > tol: + raise Exception('Unequal values for element {}: ' + 'val1 is {}, val2 is {}.'.format(element_name, x, y)) + + def assert_almost_equal(orig_df, comp_df, + element_name, tol=1e-4, assert_by_abs=False): + for key in orig_df.index: + load_ref, gen_ref = \ + extract_tuple_values_from_string(orig_df[key]) + load_comp, gen_comp = \ + extract_tuple_values_from_string( + comp_df.loc[element_name][key]) + assert_by_absolute_tolerance(load_ref, load_comp, + tol, element_name, assert_by_abs) + assert_by_absolute_tolerance(gen_ref, gen_comp, + tol, element_name, assert_by_abs) + + # export to pypsa csv format + cur_dir = os.path.dirname(os.path.realpath(__file__)) + # load network + nd = minimal_grid + # save network and components to csv + path = os.path.join(cur_dir, + 'test' + str(nd._mv_grid_districts[0].id_db)) + if not os.path.exists(path): + os.makedirs(path) + + print('Starting power flow tests for MV grid only') + nd.run_powerflow(export_result_dir=path) + lines = pd.read_csv(os.path.join(path, 'line_data.csv'), index_col=0) + buses = pd.read_csv(os.path.join(path, 'bus_data.csv'), index_col=0) + compare_lines = pd.read_csv( + os.path.join(cur_dir, 'testdata', 'line_data.csv'), index_col=0) + compare_buses = pd.read_csv( + os.path.join(cur_dir, 'testdata', 'bus_data.csv'), index_col=0) + # compare results + for line_name, line_data in compare_lines.iterrows(): + assert_almost_equal(line_data, lines, line_name, + assert_by_abs=True) + for bus_name, bus_data in compare_buses.iterrows(): + assert_almost_equal(bus_data, buses, bus_name) + print('Finished testing MV grid only') + + # run powerflow inclusive lv grids + print('Starting power flow test for MV and LV grids.') + nd.run_powerflow(export_result_dir=path, only_calc_mv=False) + lines = pd.read_csv(os.path.join(path, 'line_data.csv'), index_col=0) + buses = pd.read_csv(os.path.join(path, 'bus_data.csv'), index_col=0) + compare_lines = pd.read_csv( + os.path.join(cur_dir, 'testdata', 'line_data_lv.csv'), index_col=0) + compare_buses = pd.read_csv( + os.path.join(cur_dir, 'testdata', 'bus_data_lv.csv'), index_col=0) + # compare results + for line_name, line_data in compare_lines.iterrows(): + assert_almost_equal(line_data, lines, line_name) + for bus_name, bus_data in compare_buses.iterrows(): + assert_almost_equal(bus_data, buses, bus_name) + print('Finished testing MV and LV grids') + finally: + shutil.rmtree(path, ignore_errors=True) diff --git a/tests/core/testdata/bus_data.csv b/tests/core/testdata/bus_data.csv new file mode 100644 index 00000000..73bf4605 --- /dev/null +++ b/tests/core/testdata/bus_data.csv @@ -0,0 +1,49 @@ +bus_id,v_mag_pu +Busbar_mvgd_0_MV,"[1.0, 1.0]" +Bus_mvgd_0_gen_0,"[0.9966839330496947, 1.0225170905862677]" +Bus_mvgd_0_gen_1,"[0.9966839330496947, 1.0225172715122908]" +Bus_mvgd_0_gen_2,"[0.9966839330496947, 1.022517995215422]" +Bus_mvgd_0_gen_3,"[0.9966839330496947, 1.022517995215422]" +BusBar_mvgd_0_lvgd_1000_LV,"[0.9802468811959084, 1.0106170023439647]" +BusBar_mvgd_0_lvgd_1000_MV,"[0.9966839330481259, 1.0106170023439647]" +BusBar_mvgd_0_lvgd_1001_LV,"[0.9710059951262312, 1.0033245214080393]" +BusBar_mvgd_0_lvgd_1001_MV,"[0.9925331869740209, 1.0033245214080393]" +BusBar_mvgd_0_lvgd_1002_LV,"[0.9746890412516348, 1.005745910341301]" +BusBar_mvgd_0_lvgd_1002_MV,"[0.9903340582282842, 1.005745910341301]" +BusBar_mvgd_0_lvgd_1003_LV,"[0.9736015941641046, 1.008179007854001]" +BusBar_mvgd_0_lvgd_1003_MV,"[0.9921210909324581, 1.008179007854001]" +BusBar_mvgd_0_lvgd_1004_LV,"[0.9807583456557055, 1.0000000000000009]" +BusBar_mvgd_0_lvgd_1004_MV,"[0.9961726629340052, 1.0000000000000009]" +BusBar_mvgd_0_lvgd_1005_LV,"[0.9707572961242757, 1.0]" +BusBar_mvgd_0_lvgd_1005_MV,"[0.9892335782516205, 1.0]" +BusBar_mvgd_0_lvgd_1006_LV,"[0.96572596788832, 0.9999999999999999]" +BusBar_mvgd_0_lvgd_1006_MV,"[0.9892135665073594, 0.9999999999999999]" +BusBar_mvgd_0_lvgd_1007_LV,"[0.9747464577985258, 1.0]" +BusBar_mvgd_0_lvgd_1007_MV,"[0.9913056979699981, 1.0]" +BusBar_mvgd_0_lvgd_1008_LV,"[0.9658311952157701, 1.0000000000000038]" +BusBar_mvgd_0_lvgd_1008_MV,"[0.9870099885011617, 1.0000000000000038]" +BusBar_mvgd_0_lvgd_1009_LV,"[0.9620542694573476, 1.0000000000000044]" +BusBar_mvgd_0_lvgd_1009_MV,"[0.9858102685017363, 1.0000000000000044]" +BusBar_mvgd_0_lvgd_1010_LV,"[0.9600096853390181, 1.0000000000000044]" +BusBar_mvgd_0_lvgd_1010_MV,"[0.9852022461017945, 1.0000000000000044]" +BusBar_mvgd_0_lvgd_1011_LV,"[0.9610936041860527, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1011_MV,"[0.9859508022953914, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1012_LV,"[0.9650285629167312, 1.0000000000000038]" +BusBar_mvgd_0_lvgd_1012_MV,"[0.9868615691108602, 1.0000000000000038]" +BusBar_mvgd_0_lvgd_1013_LV,"[0.9642085967520785, 1.0000000000000033]" +BusBar_mvgd_0_lvgd_1013_MV,"[0.9881323953920176, 1.0000000000000033]" +BusBar_mvgd_0_lvgd_1014_LV,"[0.976947738987254, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1014_MV,"[0.98615188337993, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1015_LV,"[0.9692485583467217, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1015_MV,"[0.986373831180738, 1.0000000000000042]" +BusBar_mvgd_0_lvgd_1016_LV,"[0.9819140262802479, 1.0]" +BusBar_mvgd_0_lvgd_1016_MV,"[0.99853268341892, 1.0]" +BusBar_mvgd_0_lvgd_1017_LV,"[0.9638828754507743, 1.0]" +BusBar_mvgd_0_lvgd_1017_MV,"[0.9853015980020218, 1.0]" +BusBar_mvgd_0_lvgd_1018_LV,"[0.974676539558537, 1.0000000000000044]" +BusBar_mvgd_0_lvgd_1018_MV,"[0.9962946256965816, 1.0000000000000044]" +BranchTee_mvgd_0_1,"[0.9985327898756778, 1.0]" +BranchTee_mvgd_0_2,"[0.9853019805558338, 1.0]" +BranchTee_mvgd_0_3,"[0.9962947087737801, 1.0000000000000044]" +BranchTee_mvgd_0_4,"[0.986400881028872, 1.0000000000000042]" +BranchTee_mvgd_0_5,"[0.9871247553328958, 1.0000000000000038]" diff --git a/tests/core/testdata/bus_data_lv.csv b/tests/core/testdata/bus_data_lv.csv new file mode 100644 index 00000000..ae098739 --- /dev/null +++ b/tests/core/testdata/bus_data_lv.csv @@ -0,0 +1,2695 @@ +bus_id,v_mag_pu +Busbar_mvgd_0_MV,"[1.0, 1.0]" +Bus_mvgd_0_gen_0,"[0.9966215315248528, 1.0225170905901553]" +Bus_mvgd_0_gen_1,"[0.9966215315248528, 1.0225172715161785]" +Bus_mvgd_0_gen_2,"[0.9966215315248528, 1.0225179952193095]" +Bus_mvgd_0_gen_3,"[0.9966215315248528, 1.0225179952193095]" +BusBar_mvgd_0_lvgd_1000_MV,"[0.9966215315269499, 1.0106170023458285]" +BusBar_mvgd_0_lvgd_1001_MV,"[0.9924044445271097, 1.0033245214086306]" +BusBar_mvgd_0_lvgd_1002_MV,"[0.9901417229860076, 1.005745910342312]" +BusBar_mvgd_0_lvgd_1003_MV,"[0.991977897073981, 1.0081790078554385]" +BusBar_mvgd_0_lvgd_1004_MV,"[0.9960945313791872, 0.9999999999999992]" +BusBar_mvgd_0_lvgd_1005_MV,"[0.9886970612324176, 0.9999999999999798]" +BusBar_mvgd_0_lvgd_1006_MV,"[0.9887480570757793, 0.9999999999999727]" +BusBar_mvgd_0_lvgd_1007_MV,"[0.9909472780944131, 0.9999999999999801]" +BusBar_mvgd_0_lvgd_1008_MV,"[0.9867175908022382, 1.0000000000000078]" +BusBar_mvgd_0_lvgd_1009_MV,"[0.985495210708102, 1.000000000000009]" +BusBar_mvgd_0_lvgd_1010_MV,"[0.9848771494096934, 1.0000000000000093]" +BusBar_mvgd_0_lvgd_1011_MV,"[0.9856505648684003, 1.0000000000000093]" +BusBar_mvgd_0_lvgd_1012_MV,"[0.9865822027403599, 1.0000000000000078]" +BusBar_mvgd_0_lvgd_1013_MV,"[0.9878775390462771, 1.0000000000000078]" +BusBar_mvgd_0_lvgd_1014_MV,"[0.98585593956466, 1.0000000000000078]" +BusBar_mvgd_0_lvgd_1015_MV,"[0.9860790029841355, 1.0000000000000084]" +BusBar_mvgd_0_lvgd_1016_MV,"[0.9984934270654805, 1.0000000000002436]" +BusBar_mvgd_0_lvgd_1017_MV,"[0.9843501294901318, 1.0000000000004217]" +BusBar_mvgd_0_lvgd_1018_MV,"[0.9962005788853077, 1.000000000002965]" +BranchTee_mvgd_0_1,"[0.9984935363700512, 1.0000000000002436]" +BranchTee_mvgd_0_2,"[0.9843505368093781, 1.0000000000004219]" +BranchTee_mvgd_0_3,"[0.9962006640706449, 1.000000000002965]" +BranchTee_mvgd_0_4,"[0.9861001358319887, 1.0000000000000087]" +BranchTee_mvgd_0_5,"[0.9868484540872583, 1.000000000000008]" +BusBar_mvgd_0_lvgd_1000_LV,"[0.9798070270906031, 1.010617002345851]" +BranchTee_mvgd_0_lvgd_1000_1,"[0.978623249694781, 1.0106170023458512]" +BranchTee_mvgd_0_lvgd_1000_2,"[0.9727947850460824, 1.0106170023458512]" +BranchTee_mvgd_0_lvgd_1000_3,"[0.979303031955521, 1.010617002345852]" +BranchTee_mvgd_0_lvgd_1000_4,"[0.9792048019149714, 1.010617002345852]" +BranchTee_mvgd_0_lvgd_1000_5,"[0.9790509896083978, 1.0106170023458523]" +BranchTee_mvgd_0_lvgd_1000_6,"[0.9788479068016926, 1.0106170023458523]" +BranchTee_mvgd_0_lvgd_1000_7,"[0.9793030319555215, 1.010617002345852]" +BranchTee_mvgd_0_lvgd_1000_8,"[0.979204801914972, 1.010617002345852]" +BranchTee_mvgd_0_lvgd_1000_9,"[0.9790509896083984, 1.0106170023458523]" +BranchTee_mvgd_0_lvgd_1000_10,"[0.9788479068016933, 1.0106170023458523]" +BranchTee_mvgd_0_lvgd_1000_11,"[0.977919474586635, 1.010617002345855]" +BranchTee_mvgd_0_lvgd_1000_12,"[0.977821105542544, 1.010617002345855]" +BranchTee_mvgd_0_lvgd_1000_13,"[0.9760982076129091, 1.0106170023458587]" +BranchTee_mvgd_0_lvgd_1000_14,"[0.9758945102064805, 1.0106170023458587]" +BranchTee_mvgd_0_lvgd_1000_15,"[0.9743433532256832, 1.0106170023458623]" +BranchTee_mvgd_0_lvgd_1000_16,"[0.9742446230656329, 1.0106170023458623]" +BranchTee_mvgd_0_lvgd_1000_17,"[0.9726550203155734, 1.0106170023458658]" +BranchTee_mvgd_0_lvgd_1000_18,"[0.9724506015195267, 1.0106170023458658]" +BranchTee_mvgd_0_lvgd_1000_19,"[0.9710333280152512, 1.0106170023458692]" +BranchTee_mvgd_0_lvgd_1000_20,"[0.9709342612385254, 1.0106170023458692]" +BranchTee_mvgd_0_lvgd_1000_21,"[0.9694783770410531, 1.0106170023458723]" +BranchTee_mvgd_0_lvgd_1000_22,"[0.9692732881522206, 1.0106170023458723]" +BranchTee_mvgd_0_lvgd_1000_23,"[0.9679902784013527, 1.0106170023458751]" +BranchTee_mvgd_0_lvgd_1000_24,"[0.9678909001266294, 1.0106170023458751]" +BranchTee_mvgd_0_lvgd_1000_25,"[0.9665691244533121, 1.0106170023458783]" +BranchTee_mvgd_0_lvgd_1000_26,"[0.9663634180095823, 1.0106170023458783]" +BranchTee_mvgd_0_lvgd_1000_27,"[0.9652150178923, 1.0106170023458814]" +BranchTee_mvgd_0_lvgd_1000_28,"[0.9651153538184807, 1.0106170023458814]" +BranchTee_mvgd_0_lvgd_1000_29,"[0.9639280425442901, 1.0106170023458845]" +BranchTee_mvgd_0_lvgd_1000_30,"[0.9637217722407808, 1.0106170023458845]" +BranchTee_mvgd_0_lvgd_1000_31,"[0.9627082926157506, 1.0106170023458874]" +BranchTee_mvgd_0_lvgd_1000_32,"[0.9626083689800852, 1.0106170023458874]" +BranchTee_mvgd_0_lvgd_1000_33,"[0.9615558432430993, 1.0106170023458902]" +BranchTee_mvgd_0_lvgd_1000_34,"[0.9613490638428943, 1.0106170023458902]" +BranchTee_mvgd_0_lvgd_1000_35,"[0.9604707799815918, 1.0106170023458927]" +BranchTee_mvgd_0_lvgd_1000_36,"[0.9603706235152557, 1.0106170023458927]" +BranchTee_mvgd_0_lvgd_1000_37,"[0.9594531691340766, 1.0106170023458947]" +BranchTee_mvgd_0_lvgd_1000_38,"[0.9592459363738611, 1.0106170023458947]" +BranchTee_mvgd_0_lvgd_1000_39,"[0.9585030874565884, 1.010617002345897]" +BranchTee_mvgd_0_lvgd_1000_40,"[0.9584027253378818, 1.010617002345897]" +BranchTee_mvgd_0_lvgd_1000_41,"[0.9576205922894088, 1.010617002345899]" +BranchTee_mvgd_0_lvgd_1000_42,"[0.9574129627803883, 1.010617002345899]" +BranchTee_mvgd_0_lvgd_1000_43,"[0.956805751456305, 1.0106170023459007]" +BranchTee_mvgd_0_lvgd_1000_44,"[0.9567052112616742, 1.0106170023459007]" +BranchTee_mvgd_0_lvgd_1000_45,"[0.956058613221607, 1.010617002345902]" +BranchTee_mvgd_0_lvgd_1000_46,"[0.9558506443461349, 1.010617002345902]" +BranchTee_mvgd_0_lvgd_1000_47,"[0.9553792363593385, 1.0106170023459036]" +BranchTee_mvgd_0_lvgd_1000_48,"[0.9552785460124311, 1.0106170023459036]" +BranchTee_mvgd_0_lvgd_1000_49,"[0.954767659960634, 1.0106170023459047]" +BranchTee_mvgd_0_lvgd_1000_50,"[0.9545594097650129, 1.0106170023459047]" +BranchTee_mvgd_0_lvgd_1000_51,"[0.9542239336483972, 1.0106170023459058]" +BranchTee_mvgd_0_lvgd_1000_52,"[0.9541231213673879, 1.0106170023459058]" +BranchTee_mvgd_0_lvgd_1000_53,"[0.9537480872599255, 1.0106170023459065]" +BranchTee_mvgd_0_lvgd_1000_54,"[0.9535396143438805, 1.0106170023459065]" +BranchTee_mvgd_0_lvgd_1000_55,"[0.9533401611821987, 1.0106170023459071]" +BranchTee_mvgd_0_lvgd_1000_56,"[0.9532392554256325, 1.0106170023459071]" +BranchTee_mvgd_0_lvgd_1000_57,"[0.9530001759350208, 1.0106170023459076]" +BranchTee_mvgd_0_lvgd_1000_58,"[0.9527915393383773, 1.0106170023459076]" +BranchTee_mvgd_0_lvgd_1000_59,"[0.9527281626016023, 1.010617002345908]" +BranchTee_mvgd_0_lvgd_1000_60,"[0.95262719201302, 1.010617002345908]" +BranchTee_mvgd_0_lvgd_1000_61,"[0.9525241323378929, 1.010617002345908]" +BranchTee_mvgd_0_lvgd_1000_62,"[0.9523153914250203, 1.010617002345908]" +BranchTee_mvgd_0_lvgd_1000_63,"[0.9523881068727618, 1.0106170023459082]" +BranchTee_mvgd_0_lvgd_1000_64,"[0.9522871002243829, 1.0106170023459082]" +BranchTee_mvgd_0_lvgd_1000_65,"[0.9523200879694642, 1.0106170023459082]" +BranchTee_mvgd_0_lvgd_1000_66,"[0.952111302312056, 1.0106170023459082]" +BranchTee_mvgd_0_lvgd_1000_67,"[0.9776746961049054, 1.0106170023458545]" +BranchTee_mvgd_0_lvgd_1000_68,"[0.9775763024273855, 1.0106170023458545]" +BranchTee_mvgd_0_lvgd_1000_69,"[0.9756055273403609, 1.0106170023458583]" +BranchTee_mvgd_0_lvgd_1000_70,"[0.9754017270237948, 1.0106170023458583]" +BranchTee_mvgd_0_lvgd_1000_71,"[0.9735996575972796, 1.010617002345862]" +BranchTee_mvgd_0_lvgd_1000_72,"[0.973500852005699, 1.010617002345862]" +BranchTee_mvgd_0_lvgd_1000_73,"[0.9716572066601463, 1.0106170023458658]" +BranchTee_mvgd_0_lvgd_1000_74,"[0.9714525778539133, 1.0106170023458658]" +BranchTee_mvgd_0_lvgd_1000_75,"[0.969778304400592, 1.0106170023458694]" +BranchTee_mvgd_0_lvgd_1000_76,"[0.9696791093918714, 1.0106170023458694]" +BranchTee_mvgd_0_lvgd_1000_77,"[0.9679630634061906, 1.0106170023458725]" +BranchTee_mvgd_0_lvgd_1000_78,"[0.9677576533211625, 1.0106170023458725]" +BranchTee_mvgd_0_lvgd_1000_79,"[0.9662116064130619, 1.0106170023458758]" +BranchTee_mvgd_0_lvgd_1000_80,"[0.966112045157915, 1.0106170023458758]" +BranchTee_mvgd_0_lvgd_1000_81,"[0.9645240386178047, 1.0106170023458787]" +BranchTee_mvgd_0_lvgd_1000_82,"[0.9643178958269091, 1.0106170023458787]" +BranchTee_mvgd_0_lvgd_1000_83,"[0.9629004754232576, 1.0106170023458811]" +BranchTee_mvgd_0_lvgd_1000_84,"[0.9628005717352462, 1.0106170023458811]" +BranchTee_mvgd_0_lvgd_1000_85,"[0.9613410144509286, 1.0106170023458834]" +BranchTee_mvgd_0_lvgd_1000_86,"[0.9611341888222782, 1.0106170023458834]" +BranchTee_mvgd_0_lvgd_1000_87,"[0.9598457635824641, 1.0106170023458858]" +BranchTee_mvgd_0_lvgd_1000_88,"[0.9597455418842789, 1.0106170023458858]" +BranchTee_mvgd_0_lvgd_1000_89,"[0.9584148126908746, 1.0106170023458882]" +BranchTee_mvgd_0_lvgd_1000_90,"[0.9582073553152406, 1.0106170023458882]" +BranchTee_mvgd_0_lvgd_1000_91,"[0.9570482619593278, 1.0106170023458907]" +BranchTee_mvgd_0_lvgd_1000_92,"[0.9569477472463784, 1.0106170023458907]" +BranchTee_mvgd_0_lvgd_1000_93,"[0.9557461933503738, 1.010617002345893]" +BranchTee_mvgd_0_lvgd_1000_94,"[0.9555381564632117, 1.010617002345893]" +BranchTee_mvgd_0_lvgd_1000_95,"[0.9545086991827749, 1.0106170023458947]" +BranchTee_mvgd_0_lvgd_1000_96,"[0.9544079169842107, 1.0106170023458947]" +BranchTee_mvgd_0_lvgd_1000_97,"[0.9533358533587954, 1.0106170023458962]" +BranchTee_mvgd_0_lvgd_1000_98,"[0.9531272902570807, 1.0106170023458962]" +BranchTee_mvgd_0_lvgd_1000_99,"[0.9522277401789249, 1.0106170023458978]" +BranchTee_mvgd_0_lvgd_1000_100,"[0.9521267165162106, 1.0106170023458978]" +BranchTee_mvgd_0_lvgd_1000_101,"[0.951184425348105, 1.0106170023458987]" +BranchTee_mvgd_0_lvgd_1000_102,"[0.9509753903022738, 1.0106170023458987]" +BranchTee_mvgd_0_lvgd_1000_103,"[0.9502059850074059, 1.0106170023459]" +BranchTee_mvgd_0_lvgd_1000_104,"[0.9501047463506147, 1.0106170023459]" +BranchTee_mvgd_0_lvgd_1000_105,"[0.9492924765408031, 1.0106170023459007]" +BranchTee_mvgd_0_lvgd_1000_106,"[0.9490830247021387, 1.0106170023459007]" +BranchTee_mvgd_0_lvgd_1000_107,"[0.9484439678021301, 1.0106170023459013]" +BranchTee_mvgd_0_lvgd_1000_108,"[0.9483425410241226, 1.0106170023459013]" +BranchTee_mvgd_0_lvgd_1000_109,"[0.947660507744699, 1.0106170023459018]" +BranchTee_mvgd_0_lvgd_1000_110,"[0.9474506950485426, 1.0106170023459018]" +BranchTee_mvgd_0_lvgd_1000_111,"[0.9469421558211795, 1.0106170023459018]" +BranchTee_mvgd_0_lvgd_1000_112,"[0.9468405681498618, 1.0106170023459018]" +BranchTee_mvgd_0_lvgd_1000_113,"[0.9462889524589652, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_114,"[0.9460788355241653, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_115,"[0.9457009486100256, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_116,"[0.9455992275788979, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_117,"[0.9451781760954587, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_118,"[0.9449678121205084, 1.0106170023459022]" +BranchTee_mvgd_0_lvgd_1000_119,"[0.9447206772818343, 1.010617002345902]" +BranchTee_mvgd_0_lvgd_1000_120,"[0.94461885067905, 1.010617002345902]" +BranchTee_mvgd_0_lvgd_1000_121,"[0.9443284753188259, 1.0106170023459013]" +BranchTee_mvgd_0_lvgd_1000_122,"[0.9441179219751688, 1.0106170023459013]" +BranchTee_mvgd_0_lvgd_1000_123,"[0.9440016039181172, 1.010617002345901]" +BranchTee_mvgd_0_lvgd_1000_124,"[0.9438996997342958, 1.010617002345901]" +BranchTee_mvgd_0_lvgd_1000_125,"[0.9437400775083826, 1.0106170023459002]" +BranchTee_mvgd_0_lvgd_1000_126,"[0.9435293928313895, 1.0106170023459002]" +BranchTee_mvgd_0_lvgd_1000_127,"[0.9435439210924561, 1.0106170023458998]" +BranchTee_mvgd_0_lvgd_1000_128,"[0.9434419674674953, 1.0106170023458998]" +BranchTee_mvgd_0_lvgd_1000_129,"[0.9434131403442251, 1.0106170023458996]" +BranchTee_mvgd_0_lvgd_1000_130,"[0.9432023826223713, 1.0106170023458996]" +BranchTee_mvgd_0_lvgd_1000_131,"[0.9433477515194787, 1.0106170023458994]" +BranchTee_mvgd_0_lvgd_1000_132,"[0.9432457766886271, 1.0106170023458994]" +BusBar_mvgd_0_lvgd_1001_LV,"[0.9706444523222076, 1.0033245214086641]" +BranchTee_mvgd_0_lvgd_1001_1,"[0.969950174007444, 1.0033245214086628]" +BranchTee_mvgd_0_lvgd_1001_2,"[0.9698722399095382, 1.0033245214086628]" +BranchTee_mvgd_0_lvgd_1001_3,"[0.9693946390776428, 1.003324521408662]" +BranchTee_mvgd_0_lvgd_1001_4,"[0.9692471574455939, 1.003324521408662]" +BranchTee_mvgd_0_lvgd_1001_5,"[0.9689779292502, 1.0033245214086612]" +BranchTee_mvgd_0_lvgd_1001_6,"[0.9688999169428408, 1.0033245214086612]" +BranchTee_mvgd_0_lvgd_1001_7,"[0.9687000893756569, 1.003324521408661]" +BranchTee_mvgd_0_lvgd_1001_8,"[0.9685525019679616, 1.003324521408661]" +BranchTee_mvgd_0_lvgd_1001_9,"[0.9685611651044561, 1.0033245214086608]" +BranchTee_mvgd_0_lvgd_1001_10,"[0.9684831192236051, 1.0033245214086608]" +BranchTee_mvgd_0_lvgd_1001_11,"[0.969950174007444, 1.0033245214086628]" +BranchTee_mvgd_0_lvgd_1001_12,"[0.9698722399095382, 1.0033245214086628]" +BranchTee_mvgd_0_lvgd_1001_13,"[0.9693946390776428, 1.003324521408662]" +BranchTee_mvgd_0_lvgd_1001_14,"[0.9692471574455939, 1.003324521408662]" +BranchTee_mvgd_0_lvgd_1001_15,"[0.9689779292502, 1.0033245214086612]" +BranchTee_mvgd_0_lvgd_1001_16,"[0.9688999169428408, 1.0033245214086612]" +BranchTee_mvgd_0_lvgd_1001_17,"[0.9687000893756569, 1.003324521408661]" +BranchTee_mvgd_0_lvgd_1001_18,"[0.9685525019679616, 1.003324521408661]" +BranchTee_mvgd_0_lvgd_1001_19,"[0.9685611651044561, 1.0033245214086608]" +BranchTee_mvgd_0_lvgd_1001_20,"[0.9684831192236051, 1.0033245214086608]" +BranchTee_mvgd_0_lvgd_1001_21,"[0.9698486485911906, 1.0033245214086655]" +BranchTee_mvgd_0_lvgd_1001_22,"[0.9697707063336964, 1.0033245214086655]" +BranchTee_mvgd_0_lvgd_1001_23,"[0.9691250163701741, 1.003324521408667]" +BranchTee_mvgd_0_lvgd_1001_24,"[0.9689774936942586, 1.003324521408667]" +BranchTee_mvgd_0_lvgd_1001_25,"[0.9684736095962605, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_26,"[0.9683955566584799, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_27,"[0.9678944675561131, 1.0033245214086697]" +BranchTee_mvgd_0_lvgd_1001_28,"[0.9677467572669206, 1.0033245214086697]" +BranchTee_mvgd_0_lvgd_1001_29,"[0.9673876345011724, 1.0033245214086708]" +BranchTee_mvgd_0_lvgd_1001_30,"[0.967309493928143, 1.0033245214086708]" +BranchTee_mvgd_0_lvgd_1001_31,"[0.9669531399588998, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_32,"[0.9668052858294865, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_33,"[0.966591018422751, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_34,"[0.9665128134397262, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_35,"[0.9663012896056894, 1.0033245214086741]" +BranchTee_mvgd_0_lvgd_1001_36,"[0.9661533357055265, 1.0033245214086741]" +BranchTee_mvgd_0_lvgd_1001_37,"[0.9660839781875655, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_38,"[0.9660057321527207, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_39,"[0.965939094028473, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_40,"[0.9657910846332446, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_41,"[0.9658666519559618, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_42,"[0.9657883883123962, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_43,"[0.9698486485911906, 1.0033245214086655]" +BranchTee_mvgd_0_lvgd_1001_44,"[0.9697707063336964, 1.0033245214086655]" +BranchTee_mvgd_0_lvgd_1001_45,"[0.9691250163701741, 1.003324521408667]" +BranchTee_mvgd_0_lvgd_1001_46,"[0.9689774936942586, 1.003324521408667]" +BranchTee_mvgd_0_lvgd_1001_47,"[0.9684736095962605, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_48,"[0.9683955566584799, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_49,"[0.9678944675561131, 1.0033245214086697]" +BranchTee_mvgd_0_lvgd_1001_50,"[0.9677467572669206, 1.0033245214086697]" +BranchTee_mvgd_0_lvgd_1001_51,"[0.9673876345011724, 1.0033245214086708]" +BranchTee_mvgd_0_lvgd_1001_52,"[0.967309493928143, 1.0033245214086708]" +BranchTee_mvgd_0_lvgd_1001_53,"[0.9669531399588998, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_54,"[0.9668052858294865, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_55,"[0.966591018422751, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_56,"[0.9665128134397262, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_57,"[0.9663012896056894, 1.0033245214086741]" +BranchTee_mvgd_0_lvgd_1001_58,"[0.9661533357055265, 1.0033245214086741]" +BranchTee_mvgd_0_lvgd_1001_59,"[0.9660839781875655, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_60,"[0.9660057321527207, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_61,"[0.965939094028473, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_62,"[0.9657910846332446, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_63,"[0.9658666519559618, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_64,"[0.9657883883123962, 1.0033245214086752]" +BranchTee_mvgd_0_lvgd_1001_65,"[0.969825576347838, 1.0033245214086663]" +BranchTee_mvgd_0_lvgd_1001_66,"[0.9697476322357916, 1.0033245214086663]" +BranchTee_mvgd_0_lvgd_1001_67,"[0.9690650014305185, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_68,"[0.9689174696155971, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_69,"[0.9683627731818049, 1.0033245214086703]" +BranchTee_mvgd_0_lvgd_1001_70,"[0.9682847113088351, 1.0033245214086703]" +BranchTee_mvgd_0_lvgd_1001_71,"[0.9677189261425831, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_72,"[0.9675711890508988, 1.0033245214086721]" +BranchTee_mvgd_0_lvgd_1001_73,"[0.9671334996324217, 1.0033245214086737]" +BranchTee_mvgd_0_lvgd_1001_74,"[0.9670553385229729, 1.0033245214086737]" +BranchTee_mvgd_0_lvgd_1001_75,"[0.9666065218413495, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_76,"[0.9664586146761075, 1.0033245214086748]" +BranchTee_mvgd_0_lvgd_1001_77,"[0.966138025744813, 1.003324521408676]" +BranchTee_mvgd_0_lvgd_1001_78,"[0.9660597840879074, 1.003324521408676]" +BranchTee_mvgd_0_lvgd_1001_79,"[0.9657280331398175, 1.0033245214086768]" +BranchTee_mvgd_0_lvgd_1001_80,"[0.9655799913869502, 1.0033245214086768]" +BranchTee_mvgd_0_lvgd_1001_81,"[0.9653765706142615, 1.0033245214086777]" +BranchTee_mvgd_0_lvgd_1001_82,"[0.96529826723306, 1.0033245214086777]" +BranchTee_mvgd_0_lvgd_1001_83,"[0.9650836535388227, 1.0033245214086786]" +BranchTee_mvgd_0_lvgd_1001_84,"[0.9649355129088346, 1.0033245214086786]" +BranchTee_mvgd_0_lvgd_1001_85,"[0.964849302079274, 1.0033245214086792]" +BranchTee_mvgd_0_lvgd_1001_86,"[0.9647709559000691, 1.0033245214086792]" +BranchTee_mvgd_0_lvgd_1001_87,"[0.9646735251556312, 1.0033245214086801]" +BranchTee_mvgd_0_lvgd_1001_88,"[0.964525321524482, 1.0033245214086801]" +BranchTee_mvgd_0_lvgd_1001_89,"[0.9645563364859226, 1.0033245214086803]" +BranchTee_mvgd_0_lvgd_1001_90,"[0.9644779665066869, 1.0033245214086803]" +BranchTee_mvgd_0_lvgd_1001_91,"[0.9644977385242166, 1.0033245214086803]" +BranchTee_mvgd_0_lvgd_1001_92,"[0.9643495078734969, 1.0033245214086803]" +BranchTee_mvgd_0_lvgd_1001_93,"[0.9697429194884919, 1.0033245214086677]" +BranchTee_mvgd_0_lvgd_1001_94,"[0.9696649687317433, 1.0033245214086677]" +BranchTee_mvgd_0_lvgd_1001_95,"[0.968888599027039, 1.0033245214086712]" +BranchTee_mvgd_0_lvgd_1001_96,"[0.9687410403432056, 1.0033245214086712]" +BranchTee_mvgd_0_lvgd_1001_97,"[0.9680815320685182, 1.0033245214086743]" +BranchTee_mvgd_0_lvgd_1001_98,"[0.9680034475138276, 1.0033245214086743]" +BranchTee_mvgd_0_lvgd_1001_99,"[0.9673217512790531, 1.0033245214086772]" +BranchTee_mvgd_0_lvgd_1001_100,"[0.9671739535089146, 1.0033245214086772]" +BranchTee_mvgd_0_lvgd_1001_101,"[0.9666092937005846, 1.0033245214086797]" +BranchTee_mvgd_0_lvgd_1001_102,"[0.9665310901963888, 1.0033245214086797]" +BranchTee_mvgd_0_lvgd_1001_103,"[0.9659441878596053, 1.0033245214086821]" +BranchTee_mvgd_0_lvgd_1001_104,"[0.9657961792451359, 1.0033245214086821]" +BranchTee_mvgd_0_lvgd_1001_105,"[0.9653264666693353, 1.0033245214086843]" +BranchTee_mvgd_0_lvgd_1001_106,"[0.9652481592232445, 1.0033245214086843]" +BranchTee_mvgd_0_lvgd_1001_107,"[0.9647561544825152, 1.0033245214086868]" +BranchTee_mvgd_0_lvgd_1001_108,"[0.9646079635486388, 1.0033245214086868]" +BranchTee_mvgd_0_lvgd_1001_109,"[0.9642332800481709, 1.0033245214086886]" +BranchTee_mvgd_0_lvgd_1001_110,"[0.9641548838076045, 1.0033245214086886]" +BranchTee_mvgd_0_lvgd_1001_111,"[0.9637578635158045, 1.0033245214086906]" +BranchTee_mvgd_0_lvgd_1001_112,"[0.9636095190332947, 1.0033245214086906]" +BranchTee_mvgd_0_lvgd_1001_113,"[0.963329929439386, 1.0033245214086917]" +BranchTee_mvgd_0_lvgd_1001_114,"[0.9632514596717328, 1.0033245214086917]" +BranchTee_mvgd_0_lvgd_1001_115,"[0.9629494937404006, 1.0033245214086932]" +BranchTee_mvgd_0_lvgd_1001_116,"[0.9628010246879348, 1.0033245214086932]" +BranchTee_mvgd_0_lvgd_1001_117,"[0.9626165767515906, 1.0033245214086943]" +BranchTee_mvgd_0_lvgd_1001_118,"[0.9625380488239536, 1.0033245214086943]" +BranchTee_mvgd_0_lvgd_1001_119,"[0.9623311901464221, 1.0033245214086954]" +BranchTee_mvgd_0_lvgd_1001_120,"[0.9621826256719186, 1.0033245214086954]" +BranchTee_mvgd_0_lvgd_1001_121,"[0.9620933500149963, 1.0033245214086963]" +BranchTee_mvgd_0_lvgd_1001_122,"[0.9620147793735916, 1.0033245214086963]" +BranchTee_mvgd_0_lvgd_1001_123,"[0.9619030637675848, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_124,"[0.9617544331489488, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_125,"[0.9617603432350481, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_126,"[0.9616817453843294, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_127,"[0.961665191554155, 1.003324521408697]" +BranchTee_mvgd_0_lvgd_1001_128,"[0.9615165241595723, 1.003324521408697]" +BranchTee_mvgd_0_lvgd_1001_129,"[0.961617616284783, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_130,"[0.9615390067663615, 1.0033245214086968]" +BranchTee_mvgd_0_lvgd_1001_131,"[0.9693831320995356, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_132,"[0.9693051524066345, 1.0033245214086683]" +BranchTee_mvgd_0_lvgd_1001_133,"[0.9681607480822357, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_134,"[0.9680130784314512, 1.0033245214086732]" +BranchTee_mvgd_0_lvgd_1001_135,"[0.9669773478428672, 1.0033245214086781]" +BranchTee_mvgd_0_lvgd_1001_136,"[0.9668991741095736, 1.0033245214086781]" +BranchTee_mvgd_0_lvgd_1001_137,"[0.9658329723136453, 1.003324521408683]" +BranchTee_mvgd_0_lvgd_1001_138,"[0.9656849466507238, 1.003324521408683]" +BranchTee_mvgd_0_lvgd_1001_139,"[0.9647276663892871, 1.003324521408688]" +BranchTee_mvgd_0_lvgd_1001_140,"[0.9646493103303626, 1.003324521408688]" +BranchTee_mvgd_0_lvgd_1001_141,"[0.96366146826591, 1.003324521408693]" +BranchTee_mvgd_0_lvgd_1001_142,"[0.9635131089398581, 1.003324521408693]" +BranchTee_mvgd_0_lvgd_1001_143,"[0.9626344201201309, 1.0033245214086974]" +BranchTee_mvgd_0_lvgd_1001_144,"[0.9625558936483277, 1.0033245214086974]" +BranchTee_mvgd_0_lvgd_1001_145,"[0.9616465573751027, 1.0033245214087023]" +BranchTee_mvgd_0_lvgd_1001_146,"[0.9614978870988462, 1.0033245214087023]" +BranchTee_mvgd_0_lvgd_1001_147,"[0.9606979194513681, 1.0033245214087065]" +BranchTee_mvgd_0_lvgd_1001_148,"[0.9606192346660232, 1.0033245214087065]" +BranchTee_mvgd_0_lvgd_1001_149,"[0.9597885389646441, 1.003324521408711]" +BranchTee_mvgd_0_lvgd_1001_150,"[0.9596395807929592, 1.003324521408711]" +BranchTee_mvgd_0_lvgd_1001_151,"[0.9589184525437848, 1.0033245214087154]" +BranchTee_mvgd_0_lvgd_1001_152,"[0.9588396217189016, 1.0033245214087154]" +BranchTee_mvgd_0_lvgd_1001_153,"[0.9580876899650697, 1.0033245214087194]" +BranchTee_mvgd_0_lvgd_1001_154,"[0.9579384672715713, 1.0033245214087194]" +BranchTee_mvgd_0_lvgd_1001_155,"[0.9572962850324914, 1.0033245214087234]" +BranchTee_mvgd_0_lvgd_1001_156,"[0.9572173206043375, 1.0033245214087234]" +BranchTee_mvgd_0_lvgd_1001_157,"[0.9565442646534262, 1.0033245214087276]" +BranchTee_mvgd_0_lvgd_1001_158,"[0.9563948011066662, 1.0033245214087276]" +BranchTee_mvgd_0_lvgd_1001_159,"[0.955831659776343, 1.0033245214087316]" +BranchTee_mvgd_0_lvgd_1001_160,"[0.9557525743305934, 1.0033245214087316]" +BranchTee_mvgd_0_lvgd_1001_161,"[0.9551584944128517, 1.0033245214087356]" +BranchTee_mvgd_0_lvgd_1001_162,"[0.9550088139515883, 1.0033245214087356]" +BranchTee_mvgd_0_lvgd_1001_163,"[0.9545247966278104, 1.003324521408739]" +BranchTee_mvgd_0_lvgd_1001_164,"[0.9544456028862687, 1.003324521408739]" +BranchTee_mvgd_0_lvgd_1001_165,"[0.9539305875128617, 1.0033245214087425]" +BranchTee_mvgd_0_lvgd_1001_166,"[0.9537807143205601, 1.0033245214087425]" +BranchTee_mvgd_0_lvgd_1001_167,"[0.953375892223802, 1.0033245214087456]" +BranchTee_mvgd_0_lvgd_1001_168,"[0.9532966030307316, 1.0033245214087456]" +BranchTee_mvgd_0_lvgd_1001_169,"[0.9528607289108186, 1.0033245214087487]" +BranchTee_mvgd_0_lvgd_1001_170,"[0.9527106873894505, 1.0033245214087487]" +BranchTee_mvgd_0_lvgd_1001_171,"[0.9523851197978876, 1.0033245214087518]" +BranchTee_mvgd_0_lvgd_1001_172,"[0.9523057481059929, 1.0033245214087518]" +BranchTee_mvgd_0_lvgd_1001_173,"[0.951949080075014, 1.0033245214087543]" +BranchTee_mvgd_0_lvgd_1001_174,"[0.951798894818227, 1.0033245214087543]" +BranchTee_mvgd_0_lvgd_1001_175,"[0.9515526290143368, 1.0033245214087565]" +BranchTee_mvgd_0_lvgd_1001_176,"[0.9514731878704281, 1.0033245214087565]" +BranchTee_mvgd_0_lvgd_1001_177,"[0.9511957788297539, 1.0033245214087585]" +BranchTee_mvgd_0_lvgd_1001_178,"[0.951045474595483, 1.0033245214087585]" +BranchTee_mvgd_0_lvgd_1001_179,"[0.9508785458243354, 1.0033245214087603]" +BranchTee_mvgd_0_lvgd_1001_180,"[0.9507990483547225, 1.0033245214087603]" +BranchTee_mvgd_0_lvgd_1001_181,"[0.9506009392227847, 1.0033245214087618]" +BranchTee_mvgd_0_lvgd_1001_182,"[0.950450540905386, 1.0033245214087618]" +BranchTee_mvgd_0_lvgd_1001_183,"[0.9503629723446934, 1.003324521408763]" +BranchTee_mvgd_0_lvgd_1001_184,"[0.9502834317403447, 1.003324521408763]" +BranchTee_mvgd_0_lvgd_1001_185,"[0.95016465141535, 1.0033245214087636]" +BranchTee_mvgd_0_lvgd_1001_186,"[0.9500141840173334, 1.0033245214087636]" +BranchTee_mvgd_0_lvgd_1001_187,"[0.9500059867593134, 1.003324521408764]" +BranchTee_mvgd_0_lvgd_1001_188,"[0.9499264162608246, 1.003324521408764]" +BranchTee_mvgd_0_lvgd_1001_189,"[0.9498869815951233, 1.0033245214087647]" +BranchTee_mvgd_0_lvgd_1001_190,"[0.9497364701985654, 1.0033245214087647]" +BranchTee_mvgd_0_lvgd_1001_191,"[0.9498076432436309, 1.0033245214087647]" +BranchTee_mvgd_0_lvgd_1001_192,"[0.9497280561260499, 1.0033245214087647]" +BranchTee_mvgd_0_lvgd_1001_193,"[0.9497679719122011, 1.0033245214087647]" +BranchTee_mvgd_0_lvgd_1001_194,"[0.9496174416499256, 1.0033245214087647]" +BusBar_mvgd_0_lvgd_1010_LV,"[0.95925110865585, 1.0000000000000187]" +BranchTee_mvgd_0_lvgd_1010_1,"[0.9499894631264149, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1010_2,"[0.9393369613044159, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1010_3,"[0.9589017172891809, 1.0000000000000175]" +BranchTee_mvgd_0_lvgd_1010_4,"[0.958859163388443, 1.0000000000000175]" +BranchTee_mvgd_0_lvgd_1010_5,"[0.9586396447546539, 1.0000000000000167]" +BranchTee_mvgd_0_lvgd_1010_6,"[0.9585516718076422, 1.0000000000000167]" +BranchTee_mvgd_0_lvgd_1010_7,"[0.9584649182587569, 1.0000000000000164]" +BranchTee_mvgd_0_lvgd_1010_8,"[0.9584223449633034, 1.0000000000000164]" +BranchTee_mvgd_0_lvgd_1010_9,"[0.958377549102763, 1.0000000000000162]" +BranchTee_mvgd_0_lvgd_1010_10,"[0.9582895520926186, 1.0000000000000162]" +BranchTee_mvgd_0_lvgd_1010_11,"[0.958840076021545, 1.000000000000019]" +BranchTee_mvgd_0_lvgd_1010_12,"[0.9587975193848876, 1.000000000000019]" +BranchTee_mvgd_0_lvgd_1010_13,"[0.958487715890445, 1.0000000000000193]" +BranchTee_mvgd_0_lvgd_1010_14,"[0.9583997289963722, 1.0000000000000193]" +BranchTee_mvgd_0_lvgd_1010_15,"[0.9581940518965859, 1.0000000000000195]" +BranchTee_mvgd_0_lvgd_1010_16,"[0.9581514665652622, 1.0000000000000195]" +BranchTee_mvgd_0_lvgd_1010_17,"[0.9579590986872814, 1.00000000000002]" +BranchTee_mvgd_0_lvgd_1010_18,"[0.9578710632316951, 1.00000000000002]" +BranchTee_mvgd_0_lvgd_1010_19,"[0.9577828729619996, 1.0000000000000209]" +BranchTee_mvgd_0_lvgd_1010_20,"[0.957740269347044, 1.0000000000000209]" +BranchTee_mvgd_0_lvgd_1010_21,"[0.9576653824116811, 1.000000000000021]" +BranchTee_mvgd_0_lvgd_1010_22,"[0.9575773199506215, 1.000000000000021]" +BranchTee_mvgd_0_lvgd_1010_23,"[0.9576066367766792, 1.000000000000021]" +BranchTee_mvgd_0_lvgd_1010_24,"[0.9575640253203337, 1.000000000000021]" +BranchTee_mvgd_0_lvgd_1010_25,"[0.958759217570829, 1.0000000000000175]" +BranchTee_mvgd_0_lvgd_1010_26,"[0.9587166573447726, 1.0000000000000175]" +BranchTee_mvgd_0_lvgd_1010_27,"[0.9583219115131523, 1.0000000000000164]" +BranchTee_mvgd_0_lvgd_1010_28,"[0.958233909393199, 1.0000000000000164]" +BranchTee_mvgd_0_lvgd_1010_29,"[0.9579392171587359, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1010_30,"[0.957896620497688, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1010_31,"[0.9576111530518373, 1.0000000000000149]" +BranchTee_mvgd_0_lvgd_1010_32,"[0.9575230856028967, 1.0000000000000149]" +BranchTee_mvgd_0_lvgd_1010_33,"[0.9573377398791858, 1.0000000000000142]" +BranchTee_mvgd_0_lvgd_1010_34,"[0.9572951164530739, 1.0000000000000142]" +BranchTee_mvgd_0_lvgd_1010_35,"[0.9571189901696658, 1.0000000000000135]" +BranchTee_mvgd_0_lvgd_1010_36,"[0.9570308774269648, 1.0000000000000135]" +BranchTee_mvgd_0_lvgd_1010_37,"[0.956954918591842, 1.0000000000000129]" +BranchTee_mvgd_0_lvgd_1010_38,"[0.9569122781130883, 1.0000000000000129]" +BranchTee_mvgd_0_lvgd_1010_39,"[0.9568455316382486, 1.0000000000000127]" +BranchTee_mvgd_0_lvgd_1010_40,"[0.9567573937090109, 1.0000000000000127]" +BranchTee_mvgd_0_lvgd_1010_41,"[0.9567908379393143, 1.0000000000000127]" +BranchTee_mvgd_0_lvgd_1010_42,"[0.9567481901474663, 1.0000000000000127]" +BranchTee_mvgd_0_lvgd_1010_43,"[0.958726066858716, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1010_44,"[0.9586835051608864, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1010_45,"[0.9582446959441262, 1.0000000000000229]" +BranchTee_mvgd_0_lvgd_1010_46,"[0.9581566867316385, 1.0000000000000229]" +BranchTee_mvgd_0_lvgd_1010_47,"[0.9578070192014713, 1.0000000000000249]" +BranchTee_mvgd_0_lvgd_1010_48,"[0.9577644166606452, 1.0000000000000249]" +BranchTee_mvgd_0_lvgd_1010_49,"[0.9574130538986809, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1010_50,"[0.9573249682242726, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1010_51,"[0.9570628195048166, 1.0000000000000282]" +BranchTee_mvgd_0_lvgd_1010_52,"[0.9570201838338528, 1.0000000000000282]" +BranchTee_mvgd_0_lvgd_1010_53,"[0.9567563294457254, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1010_54,"[0.9566681832975228, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1010_55,"[0.9564935993481056, 1.000000000000031]" +BranchTee_mvgd_0_lvgd_1010_56,"[0.956450938301908, 1.000000000000031]" +BranchTee_mvgd_0_lvgd_1010_57,"[0.9562746387782015, 1.000000000000032]" +BranchTee_mvgd_0_lvgd_1010_58,"[0.9561864482211911, 1.000000000000032]" +BranchTee_mvgd_0_lvgd_1010_59,"[0.9560994595028869, 1.0000000000000329]" +BranchTee_mvgd_0_lvgd_1010_60,"[0.9560567808686449, 1.0000000000000329]" +BranchTee_mvgd_0_lvgd_1010_61,"[0.9559680672159011, 1.0000000000000338]" +BranchTee_mvgd_0_lvgd_1010_62,"[0.9558798483716358, 1.0000000000000338]" +BranchTee_mvgd_0_lvgd_1010_63,"[0.9558804698114571, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1010_64,"[0.9558377813987792, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1010_65,"[0.9558366691025464, 1.0000000000000342]" +BranchTee_mvgd_0_lvgd_1010_66,"[0.9557484381286644, 1.0000000000000342]" +BusBar_mvgd_0_lvgd_1011_LV,"[0.9604590652334275, 1.0000000000000646]" +BranchTee_mvgd_0_lvgd_1011_1,"[0.9572505612241923, 1.0000000000000648]" +BranchTee_mvgd_0_lvgd_1011_2,"[0.9502306101304199, 1.0000000000000648]" +BranchTee_mvgd_0_lvgd_1011_3,"[0.9601801405604007, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1011_4,"[0.9601257729384777, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1011_5,"[0.9600406642391174, 1.0000000000000662]" +BranchTee_mvgd_0_lvgd_1011_6,"[0.9599282813589363, 1.0000000000000662]" +BranchTee_mvgd_0_lvgd_1011_7,"[0.9599669948815962, 1.0000000000000655]" +BranchTee_mvgd_0_lvgd_1011_8,"[0.9599126151868228, 1.0000000000000655]" +BranchTee_mvgd_0_lvgd_1011_9,"[0.9595568716053998, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1011_10,"[0.9594444320503408, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1011_11,"[0.9592287342228122, 1.0000000000000666]" +BranchTee_mvgd_0_lvgd_1011_12,"[0.9591743126705062, 1.0000000000000666]" +BranchTee_mvgd_0_lvgd_1011_13,"[0.958982604951985, 1.000000000000067]" +BranchTee_mvgd_0_lvgd_1011_14,"[0.9588700980490333, 1.000000000000067]" +BranchTee_mvgd_0_lvgd_1011_15,"[0.9588185090919332, 1.0000000000000677]" +BranchTee_mvgd_0_lvgd_1011_16,"[0.9587640642530245, 1.0000000000000677]" +BranchTee_mvgd_0_lvgd_1011_17,"[0.9587364552973712, 1.0000000000000677]" +BranchTee_mvgd_0_lvgd_1011_18,"[0.958623919502177, 1.0000000000000677]" +BranchTee_mvgd_0_lvgd_1011_19,"[0.9592922813792656, 1.0000000000000686]" +BranchTee_mvgd_0_lvgd_1011_20,"[0.9592378634324603, 1.0000000000000686]" +BranchTee_mvgd_0_lvgd_1011_21,"[0.9581604134204209, 1.0000000000000722]" +BranchTee_mvgd_0_lvgd_1011_22,"[0.9580478099532787, 1.0000000000000722]" +BranchTee_mvgd_0_lvgd_1011_23,"[0.9570635034405856, 1.0000000000000753]" +BranchTee_mvgd_0_lvgd_1011_24,"[0.9570089587526194, 1.0000000000000753]" +BranchTee_mvgd_0_lvgd_1011_25,"[0.9560015881665774, 1.0000000000000782]" +BranchTee_mvgd_0_lvgd_1011_26,"[0.9558887303602938, 1.0000000000000782]" +BranchTee_mvgd_0_lvgd_1011_27,"[0.9549747073875893, 1.0000000000000808]" +BranchTee_mvgd_0_lvgd_1011_28,"[0.9549200433815221, 1.0000000000000808]" +BranchTee_mvgd_0_lvgd_1011_29,"[0.9539828954893617, 1.0000000000000833]" +BranchTee_mvgd_0_lvgd_1011_30,"[0.9538697988116405, 1.0000000000000833]" +BranchTee_mvgd_0_lvgd_1011_31,"[0.9530261899302466, 1.000000000000086]" +BranchTee_mvgd_0_lvgd_1011_32,"[0.9529714141475978, 1.000000000000086]" +BranchTee_mvgd_0_lvgd_1011_33,"[0.9521046227211591, 1.0000000000000882]" +BranchTee_mvgd_0_lvgd_1011_34,"[0.9519913028778412, 1.0000000000000882]" +BranchTee_mvgd_0_lvgd_1011_35,"[0.9512182289552114, 1.0000000000000906]" +BranchTee_mvgd_0_lvgd_1011_36,"[0.9511633490493471, 1.0000000000000906]" +BranchTee_mvgd_0_lvgd_1011_37,"[0.9503670382367743, 1.0000000000000926]" +BranchTee_mvgd_0_lvgd_1011_38,"[0.9502535111578762, 1.0000000000000926]" +BranchTee_mvgd_0_lvgd_1011_39,"[0.9495510832613407, 1.0000000000000948]" +BranchTee_mvgd_0_lvgd_1011_40,"[0.9494961069905826, 1.0000000000000948]" +BranchTee_mvgd_0_lvgd_1011_41,"[0.9487703911971243, 1.000000000000097]" +BranchTee_mvgd_0_lvgd_1011_42,"[0.9486566730223105, 1.000000000000097]" +BranchTee_mvgd_0_lvgd_1011_43,"[0.9480249923117167, 1.0000000000000993]" +BranchTee_mvgd_0_lvgd_1011_44,"[0.9479699275321822, 1.0000000000000993]" +BranchTee_mvgd_0_lvgd_1011_45,"[0.9473149113097389, 1.0000000000001015]" +BranchTee_mvgd_0_lvgd_1011_46,"[0.9472010183732565, 1.0000000000001015]" +BranchTee_mvgd_0_lvgd_1011_47,"[0.9466401760027698, 1.0000000000001041]" +BranchTee_mvgd_0_lvgd_1011_48,"[0.9465850306609611, 1.0000000000001041]" +BranchTee_mvgd_0_lvgd_1011_49,"[0.9460008086066432, 1.0000000000001064]" +BranchTee_mvgd_0_lvgd_1011_50,"[0.945886757421751, 1.0000000000001064]" +BranchTee_mvgd_0_lvgd_1011_51,"[0.9453968344510484, 1.0000000000001092]" +BranchTee_mvgd_0_lvgd_1011_52,"[0.9453416165762052, 1.0000000000001092]" +BranchTee_mvgd_0_lvgd_1011_53,"[0.9448282732401458, 1.0000000000001117]" +BranchTee_mvgd_0_lvgd_1011_54,"[0.9447140804830809, 1.0000000000001117]" +BranchTee_mvgd_0_lvgd_1011_55,"[0.9442951477981588, 1.0000000000001144]" +BranchTee_mvgd_0_lvgd_1011_56,"[0.9442398654943964, 1.0000000000001144]" +BranchTee_mvgd_0_lvgd_1011_57,"[0.9437974752970475, 1.0000000000001166]" +BranchTee_mvgd_0_lvgd_1011_58,"[0.9436831577905578, 1.0000000000001166]" +BranchTee_mvgd_0_lvgd_1011_59,"[0.9433352760343475, 1.0000000000001186]" +BranchTee_mvgd_0_lvgd_1011_60,"[0.9432799374725955, 1.0000000000001186]" +BranchTee_mvgd_0_lvgd_1011_61,"[0.9429085646317067, 1.0000000000001203]" +BranchTee_mvgd_0_lvgd_1011_62,"[0.9427941393282, 1.0000000000001203]" +BranchTee_mvgd_0_lvgd_1011_63,"[0.9425173588411598, 1.0000000000001217]" +BranchTee_mvgd_0_lvgd_1011_64,"[0.9424619722509248, 1.0000000000001217]" +BranchTee_mvgd_0_lvgd_1011_65,"[0.9421616707183874, 1.0000000000001226]" +BranchTee_mvgd_0_lvgd_1011_66,"[0.9420471546827319, 1.0000000000001226]" +BranchTee_mvgd_0_lvgd_1011_67,"[0.941841515453565, 1.0000000000001232]" +BranchTee_mvgd_0_lvgd_1011_68,"[0.9417860891145352, 1.0000000000001232]" +BranchTee_mvgd_0_lvgd_1011_69,"[0.9415569025232492, 1.0000000000001237]" +BranchTee_mvgd_0_lvgd_1011_70,"[0.9414423129152729, 1.0000000000001237]" +BranchTee_mvgd_0_lvgd_1011_71,"[0.9413078445418895, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_72,"[0.9412523867754053, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_73,"[0.9410943483962942, 1.0000000000001246]" +BranchTee_mvgd_0_lvgd_1011_74,"[0.94097970245303, 1.0000000000001246]" +BranchTee_mvgd_0_lvgd_1011_75,"[0.9409164241138501, 1.0000000000001243]" +BranchTee_mvgd_0_lvgd_1011_76,"[0.9408609432742625, 1.0000000000001243]" +BranchTee_mvgd_0_lvgd_1011_77,"[0.9407740759835495, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_78,"[0.9406593910012705, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_79,"[0.9406673114369357, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_80,"[0.9406118159028746, 1.0000000000001241]" +BranchTee_mvgd_0_lvgd_1011_81,"[0.9405961321596981, 1.000000000000124]" +BranchTee_mvgd_0_lvgd_1011_82,"[0.9404814254757922, 1.000000000000124]" +BranchTee_mvgd_0_lvgd_1011_83,"[0.9405605429813333, 1.000000000000124]" +BranchTee_mvgd_0_lvgd_1011_84,"[0.9405050411469105, 1.000000000000124]" +BusBar_mvgd_0_lvgd_1012_LV,"[0.9644854180591491, 0.9999999999999998]" +BranchTee_mvgd_0_lvgd_1012_1,"[0.9630115873841669, 0.9999999999999997]" +BranchTee_mvgd_0_lvgd_1012_2,"[0.9565611518351875, 0.9999999999999997]" +BranchTee_mvgd_0_lvgd_1012_3,"[0.9637043902200673, 0.999999999999999]" +BranchTee_mvgd_0_lvgd_1012_4,"[0.9635911418516755, 0.999999999999999]" +BranchTee_mvgd_0_lvgd_1012_5,"[0.9631835830415383, 0.9999999999999989]" +BranchTee_mvgd_0_lvgd_1012_6,"[0.9629758283330035, 0.9999999999999989]" +BranchTee_mvgd_0_lvgd_1012_7,"[0.96292315804942, 0.9999999999999989]" +BranchTee_mvgd_0_lvgd_1012_8,"[0.9628098177794854, 0.9999999999999989]" +BranchTee_mvgd_0_lvgd_1012_9,"[0.9622953740853686, 0.9999999999999958]" +BranchTee_mvgd_0_lvgd_1012_10,"[0.9621819598568571, 0.9999999999999958]" +BranchTee_mvgd_0_lvgd_1012_11,"[0.960232671489272, 0.9999999999999918]" +BranchTee_mvgd_0_lvgd_1012_12,"[0.9600242780480549, 0.9999999999999918]" +BranchTee_mvgd_0_lvgd_1012_13,"[0.9582975879030995, 0.999999999999988]" +BranchTee_mvgd_0_lvgd_1012_14,"[0.9581837004253976, 0.999999999999988]" +BranchTee_mvgd_0_lvgd_1012_15,"[0.9564903605487093, 0.9999999999999842]" +BranchTee_mvgd_0_lvgd_1012_16,"[0.9562811514022291, 0.9999999999999842]" +BranchTee_mvgd_0_lvgd_1012_17,"[0.9548112361371334, 0.9999999999999811]" +BranchTee_mvgd_0_lvgd_1012_18,"[0.9546969327166389, 0.9999999999999811]" +BranchTee_mvgd_0_lvgd_1012_19,"[0.953260420257137, 0.9999999999999782]" +BranchTee_mvgd_0_lvgd_1012_20,"[0.9530505019332671, 0.9999999999999782]" +BranchTee_mvgd_0_lvgd_1012_21,"[0.951838127870194, 0.9999999999999757]" +BranchTee_mvgd_0_lvgd_1012_22,"[0.9517234673319205, 0.9999999999999757]" +BranchTee_mvgd_0_lvgd_1012_23,"[0.950544532190348, 0.9999999999999735]" +BranchTee_mvgd_0_lvgd_1012_24,"[0.9503340138237597, 0.9999999999999735]" +BranchTee_mvgd_0_lvgd_1012_25,"[0.9493798157022018, 0.9999999999999716]" +BranchTee_mvgd_0_lvgd_1012_26,"[0.9492648581914551, 0.9999999999999716]" +BranchTee_mvgd_0_lvgd_1012_27,"[0.9483441186094184, 0.9999999999999697]" +BranchTee_mvgd_0_lvgd_1012_28,"[0.9481331115660369, 0.9999999999999697]" +BranchTee_mvgd_0_lvgd_1012_29,"[0.9474375902997504, 0.9999999999999684]" +BranchTee_mvgd_0_lvgd_1012_30,"[0.9473223970714046, 0.9999999999999684]" +BranchTee_mvgd_0_lvgd_1012_31,"[0.9466603374424247, 0.9999999999999669]" +BranchTee_mvgd_0_lvgd_1012_32,"[0.9464489549227538, 0.9999999999999669]" +BranchTee_mvgd_0_lvgd_1012_33,"[0.9460124758211381, 0.9999999999999659]" +BranchTee_mvgd_0_lvgd_1012_34,"[0.9458971090183335, 0.9999999999999659]" +BranchTee_mvgd_0_lvgd_1012_35,"[0.9454940781629486, 0.9999999999999649]" +BranchTee_mvgd_0_lvgd_1012_36,"[0.9452824347877777, 0.9999999999999649]" +BranchTee_mvgd_0_lvgd_1012_37,"[0.9451052262575608, 0.9999999999999641]" +BranchTee_mvgd_0_lvgd_1012_38,"[0.9449897486818184, 0.9999999999999641]" +BranchTee_mvgd_0_lvgd_1012_39,"[0.9448459586021727, 0.9999999999999637]" +BranchTee_mvgd_0_lvgd_1012_40,"[0.9446341699844919, 0.9999999999999637]" +BranchTee_mvgd_0_lvgd_1012_41,"[0.9447163227233073, 0.9999999999999635]" +BranchTee_mvgd_0_lvgd_1012_42,"[0.9446007975982292, 0.9999999999999635]" +BusBar_mvgd_0_lvgd_1013_LV,"[0.9633758438714113, 1.0000000000000395]" +BranchTee_mvgd_0_lvgd_1013_1,"[0.9470479543047843, 1.0000000000000393]" +BranchTee_mvgd_0_lvgd_1013_2,"[0.9402569236512559, 1.0000000000000393]" +BranchTee_mvgd_0_lvgd_1013_3,"[0.9632087255657348, 1.00000000000004]" +BranchTee_mvgd_0_lvgd_1013_4,"[0.963157622998045, 1.00000000000004]" +BranchTee_mvgd_0_lvgd_1013_5,"[0.962612134942972, 1.0000000000000437]" +BranchTee_mvgd_0_lvgd_1013_6,"[0.9625610007004753, 1.0000000000000437]" +BranchTee_mvgd_0_lvgd_1013_7,"[0.961895978582725, 1.0000000000000473]" +BranchTee_mvgd_0_lvgd_1013_8,"[0.9617902164472988, 1.0000000000000473]" +BranchTee_mvgd_0_lvgd_1013_9,"[0.9612274117476822, 1.0000000000000508]" +BranchTee_mvgd_0_lvgd_1013_10,"[0.9611762038344633, 1.0000000000000508]" +BranchTee_mvgd_0_lvgd_1013_11,"[0.960606463799924, 1.0000000000000542]" +BranchTee_mvgd_0_lvgd_1013_12,"[0.9605005596584434, 1.0000000000000542]" +BranchTee_mvgd_0_lvgd_1013_13,"[0.9600331672281329, 1.0000000000000573]" +BranchTee_mvgd_0_lvgd_1013_14,"[0.9599818956074239, 1.0000000000000573]" +BranchTee_mvgd_0_lvgd_1013_15,"[0.9595075468843507, 1.00000000000006]" +BranchTee_mvgd_0_lvgd_1013_16,"[0.9594015214248082, 1.00000000000006]" +BranchTee_mvgd_0_lvgd_1013_17,"[0.9590296307486269, 1.0000000000000624]" +BranchTee_mvgd_0_lvgd_1013_18,"[0.9589783054711284, 1.0000000000000624]" +BranchTee_mvgd_0_lvgd_1013_19,"[0.9585994391286244, 1.0000000000000644]" +BranchTee_mvgd_0_lvgd_1013_20,"[0.9584933132059705, 1.0000000000000644]" +BranchTee_mvgd_0_lvgd_1013_21,"[0.9582169954611748, 1.0000000000000666]" +BranchTee_mvgd_0_lvgd_1013_22,"[0.9581656266515686, 1.0000000000000666]" +BranchTee_mvgd_0_lvgd_1013_23,"[0.9578823154810406, 1.000000000000068]" +BranchTee_mvgd_0_lvgd_1013_24,"[0.9577761100890175, 1.000000000000068]" +BranchTee_mvgd_0_lvgd_1013_25,"[0.9575954180530856, 1.000000000000069]" +BranchTee_mvgd_0_lvgd_1013_26,"[0.9575440158962847, 1.000000000000069]" +BranchTee_mvgd_0_lvgd_1013_27,"[0.9573563143165714, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_28,"[0.9572500505590525, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_29,"[0.9571650185415657, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_30,"[0.9571135932687489, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_31,"[0.9570215372552223, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_32,"[0.9569152363171594, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_33,"[0.9569258801159851, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_34,"[0.9568744419904678, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_35,"[0.9568780490283431, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_36,"[0.9567717321464226, 1.0000000000000695]" +BranchTee_mvgd_0_lvgd_1013_37,"[0.9624027430787204, 1.000000000000043]" +BranchTee_mvgd_0_lvgd_1013_38,"[0.9623515977096624, 1.000000000000043]" +BranchTee_mvgd_0_lvgd_1013_39,"[0.9614640928784205, 1.0000000000000466]" +BranchTee_mvgd_0_lvgd_1013_40,"[0.961358283224611, 1.0000000000000466]" +BranchTee_mvgd_0_lvgd_1013_41,"[0.9605599277982708, 1.00000000000005]" +BranchTee_mvgd_0_lvgd_1013_42,"[0.9605086842973631, 1.00000000000005]" +BranchTee_mvgd_0_lvgd_1013_43,"[0.9596902773385718, 1.0000000000000528]" +BranchTee_mvgd_0_lvgd_1013_44,"[0.9595842720713464, 1.0000000000000528]" +BranchTee_mvgd_0_lvgd_1013_45,"[0.958855173749653, 1.0000000000000555]" +BranchTee_mvgd_0_lvgd_1013_46,"[0.9588038391328805, 1.0000000000000555]" +BranchTee_mvgd_0_lvgd_1013_47,"[0.9580546442183931, 1.0000000000000582]" +BranchTee_mvgd_0_lvgd_1013_48,"[0.9579484579341627, 1.0000000000000582]" +BranchTee_mvgd_0_lvgd_1013_49,"[0.9572887186886264, 1.0000000000000606]" +BranchTee_mvgd_0_lvgd_1013_50,"[0.9572373000616633, 1.0000000000000606]" +BranchTee_mvgd_0_lvgd_1013_51,"[0.9565574220072801, 1.0000000000000626]" +BranchTee_mvgd_0_lvgd_1013_52,"[0.9564510694812395, 1.0000000000000626]" +BranchTee_mvgd_0_lvgd_1013_53,"[0.9558607817846191, 1.0000000000000646]" +BranchTee_mvgd_0_lvgd_1013_54,"[0.9558092863363588, 1.0000000000000646]" +BranchTee_mvgd_0_lvgd_1013_55,"[0.9551988205031486, 1.0000000000000662]" +BranchTee_mvgd_0_lvgd_1013_56,"[0.9550923166756817, 1.0000000000000662]" +BranchTee_mvgd_0_lvgd_1013_57,"[0.9545715634145419, 1.000000000000068]" +BranchTee_mvgd_0_lvgd_1013_58,"[0.9545199984104173, 1.000000000000068]" +BranchTee_mvgd_0_lvgd_1013_59,"[0.9539790306145279, 1.0000000000000693]" +BranchTee_mvgd_0_lvgd_1013_60,"[0.9538723905771942, 1.0000000000000693]" +BranchTee_mvgd_0_lvgd_1013_61,"[0.9534212449732772, 1.0000000000000706]" +BranchTee_mvgd_0_lvgd_1013_62,"[0.9533696177483885, 1.0000000000000706]" +BranchTee_mvgd_0_lvgd_1013_63,"[0.9528982241795576, 1.000000000000072]" +BranchTee_mvgd_0_lvgd_1013_64,"[0.9527914631606949, 1.000000000000072]" +BranchTee_mvgd_0_lvgd_1013_65,"[0.9524099887012921, 1.0000000000000735]" +BranchTee_mvgd_0_lvgd_1013_66,"[0.952358306653353, 1.0000000000000735]" +BranchTee_mvgd_0_lvgd_1013_67,"[0.9519565538023195, 1.000000000000075]" +BranchTee_mvgd_0_lvgd_1013_68,"[0.9518496871522929, 1.000000000000075]" +BranchTee_mvgd_0_lvgd_1013_69,"[0.9515379375297849, 1.0000000000000762]" +BranchTee_mvgd_0_lvgd_1013_70,"[0.9514862081119104, 1.0000000000000762]" +BranchTee_mvgd_0_lvgd_1013_71,"[0.9511541527068944, 1.0000000000000773]" +BranchTee_mvgd_0_lvgd_1013_72,"[0.9510471958830319, 1.0000000000000773]" +BranchTee_mvgd_0_lvgd_1013_73,"[0.9508052149437437, 1.0000000000000784]" +BranchTee_mvgd_0_lvgd_1013_74,"[0.9507534456570927, 1.0000000000000784]" +BranchTee_mvgd_0_lvgd_1013_75,"[0.9504911346094999, 1.0000000000000797]" +BranchTee_mvgd_0_lvgd_1013_76,"[0.9503841031607486, 1.0000000000000797]" +BranchTee_mvgd_0_lvgd_1013_77,"[0.9502119248632361, 1.0000000000000815]" +BranchTee_mvgd_0_lvgd_1013_78,"[0.95016012324953, 1.0000000000000815]" +BranchTee_mvgd_0_lvgd_1013_79,"[0.949967593609009, 1.0000000000000828]" +BranchTee_mvgd_0_lvgd_1013_80,"[0.949860503160353, 1.0000000000000828]" +BranchTee_mvgd_0_lvgd_1013_81,"[0.949758151543226, 1.0000000000000848]" +BranchTee_mvgd_0_lvgd_1013_82,"[0.9497063251771597, 1.0000000000000848]" +BranchTee_mvgd_0_lvgd_1013_83,"[0.9495836040961226, 1.0000000000000862]" +BranchTee_mvgd_0_lvgd_1013_84,"[0.9494764703327996, 1.0000000000000862]" +BranchTee_mvgd_0_lvgd_1013_85,"[0.9494439594921565, 1.000000000000087]" +BranchTee_mvgd_0_lvgd_1013_86,"[0.9493921159737236, 1.000000000000087]" +BranchTee_mvgd_0_lvgd_1013_87,"[0.9493392206814141, 1.000000000000088]" +BranchTee_mvgd_0_lvgd_1013_88,"[0.949232059332975, 1.000000000000088]" +BranchTee_mvgd_0_lvgd_1013_89,"[0.9492693934094991, 1.0000000000000886]" +BranchTee_mvgd_0_lvgd_1013_90,"[0.9492175403562505, 1.0000000000000886]" +BranchTee_mvgd_0_lvgd_1013_91,"[0.949234478142419, 1.0000000000000886]" +BranchTee_mvgd_0_lvgd_1013_92,"[0.9491273049666716, 1.0000000000000886]" +BusBar_mvgd_0_lvgd_1014_LV,"[0.9766047455657184, 0.9999999999999954]" +BranchTee_mvgd_0_lvgd_1014_1,"[0.976207858398692, 0.9999999999999954]" +BranchTee_mvgd_0_lvgd_1014_2,"[0.9729513940229189, 0.9999999999999954]" +BranchTee_mvgd_0_lvgd_1014_3,"[0.9764664999396933, 0.9999999999999947]" +BranchTee_mvgd_0_lvgd_1014_4,"[0.9764333330132587, 0.9999999999999947]" +BranchTee_mvgd_0_lvgd_1014_5,"[0.9763973737879, 0.9999999999999944]" +BranchTee_mvgd_0_lvgd_1014_6,"[0.9763365617262193, 0.9999999999999944]" +BranchTee_mvgd_0_lvgd_1014_7,"[0.97585948705511, 0.9999999999999912]" +BranchTee_mvgd_0_lvgd_1014_8,"[0.9758262994964808, 0.9999999999999912]" +BranchTee_mvgd_0_lvgd_1014_9,"[0.9751479317090432, 0.999999999999987]" +BranchTee_mvgd_0_lvgd_1014_10,"[0.9750870417200601, 0.999999999999987]" +BranchTee_mvgd_0_lvgd_1014_11,"[0.9744701042907673, 0.9999999999999833]" +BranchTee_mvgd_0_lvgd_1014_12,"[0.9744368694106557, 0.9999999999999833]" +BranchTee_mvgd_0_lvgd_1014_13,"[0.9738260265652677, 0.9999999999999799]" +BranchTee_mvgd_0_lvgd_1014_14,"[0.9737650539117454, 0.9999999999999799]" +BranchTee_mvgd_0_lvgd_1014_15,"[0.9732157210978254, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1014_16,"[0.9731824433781584, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1014_17,"[0.9726392074376736, 0.9999999999999742]" +BranchTee_mvgd_0_lvgd_1014_18,"[0.972578160375671, 0.9999999999999742]" +BranchTee_mvgd_0_lvgd_1014_19,"[0.9720965059321562, 0.9999999999999715]" +BranchTee_mvgd_0_lvgd_1014_20,"[0.9720631898958368, 0.9999999999999715]" +BranchTee_mvgd_0_lvgd_1014_21,"[0.9715876338965036, 0.9999999999999689]" +BranchTee_mvgd_0_lvgd_1014_22,"[0.9715265207534208, 0.9999999999999689]" +BranchTee_mvgd_0_lvgd_1014_23,"[0.9711126094420862, 0.9999999999999666]" +BranchTee_mvgd_0_lvgd_1014_24,"[0.9710792596488322, 0.9999999999999666]" +BranchTee_mvgd_0_lvgd_1014_25,"[0.970671447633851, 0.9999999999999644]" +BranchTee_mvgd_0_lvgd_1014_26,"[0.9706102768007143, 0.9999999999999644]" +BranchTee_mvgd_0_lvgd_1014_27,"[0.9702641643311319, 0.9999999999999626]" +BranchTee_mvgd_0_lvgd_1014_28,"[0.9702307853732247, 0.9999999999999626]" +BranchTee_mvgd_0_lvgd_1014_29,"[0.9698907723343128, 0.9999999999999607]" +BranchTee_mvgd_0_lvgd_1014_30,"[0.9698295522579045, 0.9999999999999607]" +BranchTee_mvgd_0_lvgd_1014_31,"[0.9695512852366389, 0.9999999999999591]" +BranchTee_mvgd_0_lvgd_1014_32,"[0.9695178817345914, 0.9999999999999591]" +BranchTee_mvgd_0_lvgd_1014_33,"[0.9692457135616884, 0.9999999999999578]" +BranchTee_mvgd_0_lvgd_1014_34,"[0.9691844527365354, 0.9999999999999578]" +BranchTee_mvgd_0_lvgd_1014_35,"[0.9689740686246108, 0.9999999999999566]" +BranchTee_mvgd_0_lvgd_1014_36,"[0.9689406452227652, 0.9999999999999566]" +BranchTee_mvgd_0_lvgd_1014_37,"[0.9687363586619998, 0.9999999999999555]" +BranchTee_mvgd_0_lvgd_1014_38,"[0.9686750656222453, 0.9999999999999555]" +BranchTee_mvgd_0_lvgd_1014_39,"[0.9685325927009703, 0.9999999999999548]" +BranchTee_mvgd_0_lvgd_1014_40,"[0.9684991540630373, 0.9999999999999548]" +BranchTee_mvgd_0_lvgd_1014_41,"[0.9683627766830427, 0.999999999999954]" +BranchTee_mvgd_0_lvgd_1014_42,"[0.9683014599942178, 0.999999999999954]" +BranchTee_mvgd_0_lvgd_1014_43,"[0.9682269173394523, 0.9999999999999536]" +BranchTee_mvgd_0_lvgd_1014_44,"[0.9681934681439993, 0.9999999999999536]" +BranchTee_mvgd_0_lvgd_1014_45,"[0.9681250183106667, 0.9999999999999534]" +BranchTee_mvgd_0_lvgd_1014_46,"[0.9680636865613841, 0.9999999999999534]" +BranchTee_mvgd_0_lvgd_1014_47,"[0.9680570840263061, 0.9999999999999533]" +BranchTee_mvgd_0_lvgd_1014_48,"[0.968023628962211, 0.9999999999999533]" +BranchTee_mvgd_0_lvgd_1014_49,"[0.9680231158219278, 0.9999999999999531]" +BranchTee_mvgd_0_lvgd_1014_50,"[0.9679617776155147, 0.9999999999999531]" +BusBar_mvgd_0_lvgd_1015_LV,"[0.9685432075258387, 1.0000000000000093]" +BranchTee_mvgd_0_lvgd_1015_1,"[0.967700071640814, 1.0000000000000095]" +BranchTee_mvgd_0_lvgd_1015_2,"[0.9642412408563024, 1.0000000000000095]" +BranchTee_mvgd_0_lvgd_1015_3,"[0.9506246141144788, 1.0000000000000093]" +BranchTee_mvgd_0_lvgd_1015_4,"[0.9456572475804391, 1.0000000000000093]" +BusBar_mvgd_0_lvgd_1016_LV,"[0.9813892715630266, 1.0000000000002438]" +BranchTee_mvgd_0_lvgd_1016_1,"[0.9661582769485961, 1.0000000000002442]" +BranchTee_mvgd_0_lvgd_1016_2,"[0.9521454977305468, 1.0000000000002442]" +BranchTee_mvgd_0_lvgd_1016_3,"[0.974982005372867, 1.0000000000002438]" +BranchTee_mvgd_0_lvgd_1016_4,"[0.9732056747532835, 1.0000000000002438]" +BranchTee_mvgd_0_lvgd_1016_5,"[0.9645059298002503, 1.0000000000002431]" +BranchTee_mvgd_0_lvgd_1016_6,"[0.962710233548041, 1.0000000000002431]" +BranchTee_mvgd_0_lvgd_1016_7,"[0.9560213447783061, 1.0000000000002431]" +BranchTee_mvgd_0_lvgd_1016_8,"[0.9526946159016273, 1.0000000000002431]" +BusBar_mvgd_0_lvgd_1017_LV,"[0.9611291318048016, 1.000000000000446]" +BranchTee_mvgd_0_lvgd_1017_1,"[0.9456480294991029, 1.0000000000004454]" +BranchTee_mvgd_0_lvgd_1017_2,"[0.9374746069774124, 1.0000000000004454]" +BranchTee_mvgd_0_lvgd_1017_3,"[0.960817723634731, 1.0000000000004463]" +BranchTee_mvgd_0_lvgd_1017_4,"[0.9606890879398577, 1.0000000000004463]" +BranchTee_mvgd_0_lvgd_1017_5,"[0.9581280772185486, 1.0000000000004412]" +BranchTee_mvgd_0_lvgd_1017_6,"[0.9579990803223707, 1.0000000000004412]" +BranchTee_mvgd_0_lvgd_1017_7,"[0.9551733136964811, 1.0000000000004363]" +BranchTee_mvgd_0_lvgd_1017_8,"[0.9549285740374285, 1.0000000000004363]" +BranchTee_mvgd_0_lvgd_1017_9,"[0.9522649798666983, 1.0000000000004317]" +BranchTee_mvgd_0_lvgd_1017_10,"[0.9521351885217733, 1.0000000000004317]" +BranchTee_mvgd_0_lvgd_1017_11,"[0.9494032024199499, 1.0000000000004265]" +BranchTee_mvgd_0_lvgd_1017_12,"[0.9491569745518005, 1.0000000000004265]" +BranchTee_mvgd_0_lvgd_1017_13,"[0.9465881172417904, 1.0000000000004219]" +BranchTee_mvgd_0_lvgd_1017_14,"[0.9464575473018726, 1.0000000000004219]" +BranchTee_mvgd_0_lvgd_1017_15,"[0.9438198480185056, 1.000000000000417]" +BranchTee_mvgd_0_lvgd_1017_16,"[0.9435721627734691, 1.000000000000417]" +BranchTee_mvgd_0_lvgd_1017_17,"[0.9410985277552395, 1.0000000000004121]" +BranchTee_mvgd_0_lvgd_1017_18,"[0.9409671959684728, 1.0000000000004121]" +BranchTee_mvgd_0_lvgd_1017_19,"[0.9384242769979707, 1.0000000000004072]" +BranchTee_mvgd_0_lvgd_1017_20,"[0.9381751669024158, 1.0000000000004072]" +BranchTee_mvgd_0_lvgd_1017_21,"[0.9357972257340547, 1.0000000000004026]" +BranchTee_mvgd_0_lvgd_1017_22,"[0.9356651497442234, 1.0000000000004026]" +BranchTee_mvgd_0_lvgd_1017_23,"[0.9332174912343213, 1.0000000000003977]" +BranchTee_mvgd_0_lvgd_1017_24,"[0.9329669905090933, 1.0000000000003977]" +BranchTee_mvgd_0_lvgd_1017_25,"[0.9306852003317593, 1.000000000000393]" +BranchTee_mvgd_0_lvgd_1017_26,"[0.9305523986773266, 1.000000000000393]" +BranchTee_mvgd_0_lvgd_1017_27,"[0.9282004668885345, 1.0000000000003881]" +BranchTee_mvgd_0_lvgd_1017_28,"[0.9279486114450021, 1.0000000000003881]" +BranchTee_mvgd_0_lvgd_1017_29,"[0.9257634144478085, 1.0000000000003832]" +BranchTee_mvgd_0_lvgd_1017_30,"[0.9256299065586499, 1.0000000000003832]" +BranchTee_mvgd_0_lvgd_1017_31,"[0.9233741533312225, 1.0000000000003784]" +BranchTee_mvgd_0_lvgd_1017_32,"[0.9231209807628823, 1.0000000000003784]" +BranchTee_mvgd_0_lvgd_1017_33,"[0.9210328036580936, 1.000000000000374]" +BranchTee_mvgd_0_lvgd_1017_34,"[0.9208986098498458, 1.000000000000374]" +BranchTee_mvgd_0_lvgd_1017_35,"[0.9187394720796639, 1.0000000000003695]" +BranchTee_mvgd_0_lvgd_1017_36,"[0.918485021649156, 1.0000000000003695]" +BranchTee_mvgd_0_lvgd_1017_37,"[0.9164942751591584, 1.0000000000003648]" +BranchTee_mvgd_0_lvgd_1017_38,"[0.9163594166251072, 1.0000000000003648]" +BranchTee_mvgd_0_lvgd_1017_39,"[0.9142973157498671, 1.0000000000003602]" +BranchTee_mvgd_0_lvgd_1017_40,"[0.9140416283712742, 1.0000000000003602]" +BranchTee_mvgd_0_lvgd_1017_41,"[0.9121487067287773, 1.0000000000003557]" +BranchTee_mvgd_0_lvgd_1017_42,"[0.9120132055292243, 1.0000000000003557]" +BranchTee_mvgd_0_lvgd_1017_43,"[0.9100485470263292, 1.0000000000003513]" +BranchTee_mvgd_0_lvgd_1017_44,"[0.9097916652426471, 1.0000000000003513]" +BranchTee_mvgd_0_lvgd_1017_45,"[0.9079969457055583, 1.0000000000003473]" +BranchTee_mvgd_0_lvgd_1017_46,"[0.907860824754611, 1.0000000000003473]" +BranchTee_mvgd_0_lvgd_1017_47,"[0.9059939976521489, 1.0000000000003433]" +BranchTee_mvgd_0_lvgd_1017_48,"[0.9057359656078433, 1.0000000000003433]" +BranchTee_mvgd_0_lvgd_1017_49,"[0.9040398079902365, 1.0000000000003395]" +BranchTee_mvgd_0_lvgd_1017_50,"[0.9039030910399857, 1.0000000000003395]" +BranchTee_mvgd_0_lvgd_1017_51,"[0.9021344674421642, 1.0000000000003355]" +BranchTee_mvgd_0_lvgd_1017_52,"[0.9018753308507482, 1.0000000000003355]" +BranchTee_mvgd_0_lvgd_1017_53,"[0.900278077071315, 1.0000000000003313]" +BranchTee_mvgd_0_lvgd_1017_54,"[0.9001407886933676, 1.0000000000003313]" +BranchTee_mvgd_0_lvgd_1017_55,"[0.898470723321754, 1.000000000000327]" +BranchTee_mvgd_0_lvgd_1017_56,"[0.8982105294283494, 1.000000000000327]" +BranchTee_mvgd_0_lvgd_1017_57,"[0.8967125030776836, 1.0000000000003229]" +BranchTee_mvgd_0_lvgd_1017_58,"[0.8965746686420444, 1.0000000000003229]" +BranchTee_mvgd_0_lvgd_1017_59,"[0.8950034983939269, 1.0000000000003186]" +BranchTee_mvgd_0_lvgd_1017_60,"[0.8947422959327965, 1.0000000000003186]" +BranchTee_mvgd_0_lvgd_1017_61,"[0.8933438018608225, 1.0000000000003144]" +BranchTee_mvgd_0_lvgd_1017_62,"[0.893205447512119, 1.0000000000003144]" +BranchTee_mvgd_0_lvgd_1017_63,"[0.8917334910372734, 1.0000000000003104]" +BranchTee_mvgd_0_lvgd_1017_64,"[0.8914713301843428, 1.0000000000003104]" +BranchTee_mvgd_0_lvgd_1017_65,"[0.890172654109138, 1.0000000000003066]" +BranchTee_mvgd_0_lvgd_1017_66,"[0.8900338067402109, 1.0000000000003066]" +BranchTee_mvgd_0_lvgd_1017_67,"[0.8886613640373148, 1.0000000000003029]" +BranchTee_mvgd_0_lvgd_1017_68,"[0.888398296357727, 1.0000000000003029]" +BranchTee_mvgd_0_lvgd_1017_69,"[0.8871997044969384, 1.0000000000002993]" +BranchTee_mvgd_0_lvgd_1017_70,"[0.8870603917198239, 1.0000000000002993]" +BranchTee_mvgd_0_lvgd_1017_71,"[0.8857877437537082, 1.000000000000296]" +BranchTee_mvgd_0_lvgd_1017_72,"[0.8855238221444889, 1.000000000000296]" +BranchTee_mvgd_0_lvgd_1017_73,"[0.8844255608704698, 1.0000000000002929]" +BranchTee_mvgd_0_lvgd_1017_74,"[0.8842858109848291, 1.0000000000002929]" +BranchTee_mvgd_0_lvgd_1017_75,"[0.8831132193257047, 1.00000000000029]" +BranchTee_mvgd_0_lvgd_1017_76,"[0.8828484979536417, 1.00000000000029]" +BranchTee_mvgd_0_lvgd_1017_77,"[0.8818507934733714, 1.0000000000002873]" +BranchTee_mvgd_0_lvgd_1017_78,"[0.8817106354324225, 1.0000000000002873]" +BranchTee_mvgd_0_lvgd_1017_79,"[0.8806383419181636, 1.0000000000002847]" +BranchTee_mvgd_0_lvgd_1017_80,"[0.8803728761530388, 1.0000000000002847]" +BranchTee_mvgd_0_lvgd_1017_81,"[0.8794759342138015, 1.0000000000002824]" +BranchTee_mvgd_0_lvgd_1017_82,"[0.8793353975878422, 1.0000000000002824]" +BranchTee_mvgd_0_lvgd_1017_83,"[0.878363624010329, 1.0000000000002804]" +BranchTee_mvgd_0_lvgd_1017_84,"[0.8780974703536678, 1.0000000000002804]" +BranchTee_mvgd_0_lvgd_1017_85,"[0.8773014759753914, 1.0000000000002784]" +BranchTee_mvgd_0_lvgd_1017_86,"[0.8771605909130012, 1.0000000000002784]" +BranchTee_mvgd_0_lvgd_1017_87,"[0.8762895387294718, 1.000000000000277]" +BranchTee_mvgd_0_lvgd_1017_88,"[0.8760227547390104, 1.000000000000277]" +BranchTee_mvgd_0_lvgd_1017_89,"[0.8753278719740737, 1.0000000000002756]" +BranchTee_mvgd_0_lvgd_1017_90,"[0.8751866691611161, 1.0000000000002756]" +BranchTee_mvgd_0_lvgd_1017_91,"[0.8744165192313855, 1.0000000000002742]" +BranchTee_mvgd_0_lvgd_1017_92,"[0.8741491634414782, 1.0000000000002742]" +BranchTee_mvgd_0_lvgd_1017_93,"[0.8735555351627079, 1.0000000000002727]" +BranchTee_mvgd_0_lvgd_1017_94,"[0.8734140457792507, 1.0000000000002727]" +BranchTee_mvgd_0_lvgd_1017_95,"[0.87274495812959, 1.0000000000002713]" +BranchTee_mvgd_0_lvgd_1017_96,"[0.8724770899678153, 1.0000000000002713]" +BranchTee_mvgd_0_lvgd_1017_97,"[0.8719848376852944, 1.00000000000027]" +BranchTee_mvgd_0_lvgd_1017_98,"[0.871843093360597, 1.00000000000027]" +BranchTee_mvgd_0_lvgd_1017_99,"[0.8712752069749652, 1.000000000000269]" +BranchTee_mvgd_0_lvgd_1017_100,"[0.8710068866752115, 1.000000000000269]" +BranchTee_mvgd_0_lvgd_1017_101,"[0.8706161103824265, 1.0000000000002678]" +BranchTee_mvgd_0_lvgd_1017_102,"[0.8704741431481479, 1.0000000000002678]" +BranchTee_mvgd_0_lvgd_1017_103,"[0.8700075757874024, 1.000000000000267]" +BranchTee_mvgd_0_lvgd_1017_104,"[0.8697388642997417, 1.000000000000267]" +BranchTee_mvgd_0_lvgd_1017_105,"[0.8694496423494938, 1.0000000000002662]" +BranchTee_mvgd_0_lvgd_1017_106,"[0.8693074845912893, 1.0000000000002662]" +BranchTee_mvgd_0_lvgd_1017_107,"[0.8689423326408924, 1.0000000000002653]" +BranchTee_mvgd_0_lvgd_1017_108,"[0.868673291538573, 1.0000000000002653]" +BranchTee_mvgd_0_lvgd_1017_109,"[0.8684856805489759, 1.0000000000002645]" +BranchTee_mvgd_0_lvgd_1017_110,"[0.8683433649566652, 1.0000000000002645]" +BranchTee_mvgd_0_lvgd_1017_111,"[0.8680797033033258, 1.0000000000002636]" +BranchTee_mvgd_0_lvgd_1017_112,"[0.8678103946872386, 1.0000000000002636]" +BranchTee_mvgd_0_lvgd_1017_113,"[0.8677244294780285, 1.0000000000002627]" +BranchTee_mvgd_0_lvgd_1017_114,"[0.8675819889945263, 1.0000000000002627]" +BranchTee_mvgd_0_lvgd_1017_115,"[0.8674198709321183, 1.000000000000262]" +BranchTee_mvgd_0_lvgd_1017_116,"[0.8671503573331065, 1.000000000000262]" +BranchTee_mvgd_0_lvgd_1017_117,"[0.8671660508923781, 1.0000000000002613]" +BranchTee_mvgd_0_lvgd_1017_118,"[0.8670235186615882, 1.0000000000002613]" +BranchTee_mvgd_0_lvgd_1017_119,"[0.866962975826589, 1.0000000000002607]" +BranchTee_mvgd_0_lvgd_1017_120,"[0.8666933201059941, 1.0000000000002607]" +BranchTee_mvgd_0_lvgd_1017_121,"[0.8668106635873812, 1.00000000000026]" +BranchTee_mvgd_0_lvgd_1017_122,"[0.8666680729012634, 1.00000000000026]" +BranchTee_mvgd_0_lvgd_1017_123,"[0.8667091152378705, 1.0000000000002598]" +BranchTee_mvgd_0_lvgd_1017_124,"[0.866439380486712, 1.0000000000002598]" +BranchTee_mvgd_0_lvgd_1017_125,"[0.8666583432369273, 1.0000000000002596]" +BranchTee_mvgd_0_lvgd_1017_126,"[0.8665157274819517, 1.0000000000002596]" +BranchTee_mvgd_0_lvgd_1017_127,"[0.9591300172632167, 1.0000000000004408]" +BranchTee_mvgd_0_lvgd_1017_128,"[0.9590011551575731, 1.0000000000004408]" +BranchTee_mvgd_0_lvgd_1017_129,"[0.9571585971377917, 1.0000000000004352]" +BranchTee_mvgd_0_lvgd_1017_130,"[0.9569143653646214, 1.0000000000004352]" +BranchTee_mvgd_0_lvgd_1017_131,"[0.9552149273937517, 1.0000000000004299]" +BranchTee_mvgd_0_lvgd_1017_132,"[0.9550855369853971, 1.0000000000004299]" +BranchTee_mvgd_0_lvgd_1017_133,"[0.9532990571521004, 1.000000000000425]" +BranchTee_mvgd_0_lvgd_1017_134,"[0.9530538360667645, 1.000000000000425]" +BranchTee_mvgd_0_lvgd_1017_135,"[0.9514110412828963, 1.0000000000004197]" +BranchTee_mvgd_0_lvgd_1017_136,"[0.9512811334116166, 1.0000000000004197]" +BranchTee_mvgd_0_lvgd_1017_137,"[0.9495509277187405, 1.0000000000004143]" +BranchTee_mvgd_0_lvgd_1017_138,"[0.9493047381757538, 1.0000000000004143]" +BranchTee_mvgd_0_lvgd_1017_139,"[0.9477187702009224, 1.0000000000004092]" +BranchTee_mvgd_0_lvgd_1017_140,"[0.9475883560759137, 1.0000000000004092]" +BranchTee_mvgd_0_lvgd_1017_141,"[0.9459146154412307, 1.0000000000004043]" +BranchTee_mvgd_0_lvgd_1017_142,"[0.945667478991939, 1.0000000000004043]" +BranchTee_mvgd_0_lvgd_1017_143,"[0.9441385160189079, 1.0000000000003995]" +BranchTee_mvgd_0_lvgd_1017_144,"[0.944007607216281, 1.0000000000003995]" +BranchTee_mvgd_0_lvgd_1017_145,"[0.9423905173929611, 1.0000000000003948]" +BranchTee_mvgd_0_lvgd_1017_146,"[0.9421424562802615, 1.0000000000003948]" +BranchTee_mvgd_0_lvgd_1017_147,"[0.940670670947679, 1.0000000000003901]" +BranchTee_mvgd_0_lvgd_1017_148,"[0.9405392794073643, 1.0000000000003901]" +BranchTee_mvgd_0_lvgd_1017_149,"[0.938979020857805, 1.0000000000003857]" +BranchTee_mvgd_0_lvgd_1017_150,"[0.9387300580097274, 1.0000000000003857]" +BranchTee_mvgd_0_lvgd_1017_151,"[0.9373156172801859, 1.000000000000381]" +BranchTee_mvgd_0_lvgd_1017_152,"[0.9371837553022355, 1.000000000000381]" +BranchTee_mvgd_0_lvgd_1017_153,"[0.9356805030743524, 1.0000000000003766]" +BranchTee_mvgd_0_lvgd_1017_154,"[0.9354306620964864, 1.0000000000003766]" +BranchTee_mvgd_0_lvgd_1017_155,"[0.9340737271376877, 1.000000000000372]" +BranchTee_mvgd_0_lvgd_1017_156,"[0.9339414073779614, 1.000000000000372]" +BranchTee_mvgd_0_lvgd_1017_157,"[0.9324953309841449, 1.0000000000003675]" +BranchTee_mvgd_0_lvgd_1017_158,"[0.9322446361508971, 1.0000000000003675]" +BranchTee_mvgd_0_lvgd_1017_159,"[0.9309453622201347, 1.0000000000003626]" +BranchTee_mvgd_0_lvgd_1017_160,"[0.9308125976853665, 1.0000000000003626]" +BranchTee_mvgd_0_lvgd_1017_161,"[0.9294238609842959, 1.0000000000003577]" +BranchTee_mvgd_0_lvgd_1017_162,"[0.9291723372289662, 1.0000000000003577]" +BranchTee_mvgd_0_lvgd_1017_163,"[0.9279308735611164, 1.000000000000353]" +BranchTee_mvgd_0_lvgd_1017_164,"[0.9277976776033533, 1.000000000000353]" +BranchTee_mvgd_0_lvgd_1017_165,"[0.9264664386848614, 1.0000000000003484]" +BranchTee_mvgd_0_lvgd_1017_166,"[0.9262141115885322, 1.0000000000003484]" +BranchTee_mvgd_0_lvgd_1017_167,"[0.9250306012877567, 1.0000000000003437]" +BranchTee_mvgd_0_lvgd_1017_168,"[0.9248969875981702, 1.0000000000003437]" +BranchTee_mvgd_0_lvgd_1017_169,"[0.9236233986713552, 1.0000000000003393]" +BranchTee_mvgd_0_lvgd_1017_170,"[0.9233702944505866, 1.0000000000003393]" +BranchTee_mvgd_0_lvgd_1017_171,"[0.9222448743859311, 1.0000000000003353]" +BranchTee_mvgd_0_lvgd_1017_172,"[0.9221108569879978, 1.0000000000003353]" +BranchTee_mvgd_0_lvgd_1017_173,"[0.9208950642727564, 1.0000000000003315]" +BranchTee_mvgd_0_lvgd_1017_174,"[0.9206412097660902, 1.0000000000003315]" +BranchTee_mvgd_0_lvgd_1017_175,"[0.9195740104711659, 1.0000000000003277]" +BranchTee_mvgd_0_lvgd_1017_176,"[0.919439603713218, 1.0000000000003277]" +BranchTee_mvgd_0_lvgd_1017_177,"[0.9182817473353951, 1.0000000000003242]" +BranchTee_mvgd_0_lvgd_1017_178,"[0.9180271699886682, 1.0000000000003242]" +BranchTee_mvgd_0_lvgd_1017_179,"[0.917018315565596, 1.0000000000003202]" +BranchTee_mvgd_0_lvgd_1017_180,"[0.9168835341127457, 1.0000000000003202]" +BranchTee_mvgd_0_lvgd_1017_181,"[0.9157837480030664, 1.0000000000003162]" +BranchTee_mvgd_0_lvgd_1017_182,"[0.9155284758535419, 1.0000000000003162]" +BranchTee_mvgd_0_lvgd_1017_183,"[0.9145780838813228, 1.0000000000003126]" +BranchTee_mvgd_0_lvgd_1017_184,"[0.914442942706765, 1.0000000000003126]" +BranchTee_mvgd_0_lvgd_1017_185,"[0.9134013545037254, 1.000000000000309]" +BranchTee_mvgd_0_lvgd_1017_186,"[0.9131454161630538, 1.000000000000309]" +BranchTee_mvgd_0_lvgd_1017_187,"[0.9122535976105353, 1.0000000000003058]" +BranchTee_mvgd_0_lvgd_1017_188,"[0.9121181119862362, 1.0000000000003058]" +BranchTee_mvgd_0_lvgd_1017_189,"[0.9111348429431155, 1.0000000000003026]" +BranchTee_mvgd_0_lvgd_1017_190,"[0.9108782675791403, 1.0000000000003026]" +BranchTee_mvgd_0_lvgd_1017_191,"[0.9100451267227296, 1.0000000000002993]" +BranchTee_mvgd_0_lvgd_1017_192,"[0.9099093122095083, 1.0000000000002993]" +BranchTee_mvgd_0_lvgd_1017_193,"[0.9089844771056657, 1.0000000000002964]" +BranchTee_mvgd_0_lvgd_1017_194,"[0.9087272944230912, 1.0000000000002964]" +BranchTee_mvgd_0_lvgd_1017_195,"[0.9079529287693647, 1.0000000000002935]" +BranchTee_mvgd_0_lvgd_1017_196,"[0.9078168012063819, 1.0000000000002935]" +BranchTee_mvgd_0_lvgd_1017_197,"[0.9069505082629823, 1.0000000000002909]" +BranchTee_mvgd_0_lvgd_1017_198,"[0.9066927484829316, 1.0000000000002909]" +BranchTee_mvgd_0_lvgd_1017_199,"[0.9059772486962718, 1.0000000000002884]" +BranchTee_mvgd_0_lvgd_1017_200,"[0.9058408241899376, 1.0000000000002884]" +BranchTee_mvgd_0_lvgd_1017_201,"[0.9050331749902567, 1.000000000000286]" +BranchTee_mvgd_0_lvgd_1017_202,"[0.9047748688287425, 1.000000000000286]" +BranchTee_mvgd_0_lvgd_1017_203,"[0.9041183186641353, 1.0000000000002836]" +BranchTee_mvgd_0_lvgd_1017_204,"[0.9039816135764525, 1.0000000000002836]" +BranchTee_mvgd_0_lvgd_1017_205,"[0.903232702990894, 1.0000000000002816]" +BranchTee_mvgd_0_lvgd_1017_206,"[0.9029738816362384, 1.0000000000002816]" +BranchTee_mvgd_0_lvgd_1017_207,"[0.9023763578773454, 1.0000000000002793]" +BranchTee_mvgd_0_lvgd_1017_208,"[0.9022393888137052, 1.0000000000002793]" +BranchTee_mvgd_0_lvgd_1017_209,"[0.9015493049296612, 1.0000000000002773]" +BranchTee_mvgd_0_lvgd_1017_210,"[0.9012900000188977, 1.0000000000002773]" +BranchTee_mvgd_0_lvgd_1017_211,"[0.9007515724215108, 1.0000000000002753]" +BranchTee_mvgd_0_lvgd_1017_212,"[0.9006143562179628, 1.0000000000002753]" +BranchTee_mvgd_0_lvgd_1017_213,"[0.8999831802746345, 1.0000000000002731]" +BranchTee_mvgd_0_lvgd_1017_214,"[0.8997234238689331, 1.0000000000002731]" +BranchTee_mvgd_0_lvgd_1017_215,"[0.8992441551099075, 1.0000000000002711]" +BranchTee_mvgd_0_lvgd_1017_216,"[0.8991067088199236, 1.0000000000002711]" +BranchTee_mvgd_0_lvgd_1017_217,"[0.898534515148213, 1.0000000000002693]" +BranchTee_mvgd_0_lvgd_1017_218,"[0.8982743397073714, 1.0000000000002693]" +BranchTee_mvgd_0_lvgd_1017_219,"[0.8978542853391237, 1.0000000000002676]" +BranchTee_mvgd_0_lvgd_1017_220,"[0.8977166262198821, 1.0000000000002676]" +BranchTee_mvgd_0_lvgd_1017_221,"[0.8972034821874597, 1.0000000000002656]" +BranchTee_mvgd_0_lvgd_1017_222,"[0.8969429205435092, 1.0000000000002656]" +BranchTee_mvgd_0_lvgd_1017_223,"[0.8965821289541536, 1.0000000000002638]" +BranchTee_mvgd_0_lvgd_1017_224,"[0.8964442744523687, 1.0000000000002638]" +BranchTee_mvgd_0_lvgd_1017_225,"[0.8959902404140029, 1.0000000000002618]" +BranchTee_mvgd_0_lvgd_1017_226,"[0.8957293257439799, 1.0000000000002618]" +BranchTee_mvgd_0_lvgd_1017_227,"[0.8954278381231654, 1.00000000000026]" +BranchTee_mvgd_0_lvgd_1017_228,"[0.8952898058604899, 1.00000000000026]" +BranchTee_mvgd_0_lvgd_1017_229,"[0.8948949351137271, 1.0000000000002585]" +BranchTee_mvgd_0_lvgd_1017_230,"[0.8946337009116646, 1.0000000000002585]" +BranchTee_mvgd_0_lvgd_1017_231,"[0.8943915512221656, 1.0000000000002571]" +BranchTee_mvgd_0_lvgd_1017_232,"[0.894253358980197, 1.0000000000002571]" +BranchTee_mvgd_0_lvgd_1017_233,"[0.8939176977264598, 1.0000000000002556]" +BranchTee_mvgd_0_lvgd_1017_234,"[0.8936561777746558, 1.0000000000002556]" +BranchTee_mvgd_0_lvgd_1017_235,"[0.8934733927297571, 1.0000000000002542]" +BranchTee_mvgd_0_lvgd_1017_236,"[0.8933350584346775, 1.0000000000002542]" +BranchTee_mvgd_0_lvgd_1017_237,"[0.8930586457458467, 1.000000000000253]" +BranchTee_mvgd_0_lvgd_1017_238,"[0.8927968740854728, 1.000000000000253]" +BranchTee_mvgd_0_lvgd_1017_239,"[0.8926734731321748, 1.000000000000252]" +BranchTee_mvgd_0_lvgd_1017_240,"[0.8925350148390593, 1.000000000000252]" +BranchTee_mvgd_0_lvgd_1017_241,"[0.892317882629589, 1.000000000000251]" +BranchTee_mvgd_0_lvgd_1017_242,"[0.8920558935307008, 1.000000000000251]" +BranchTee_mvgd_0_lvgd_1017_243,"[0.8919918888387633, 1.0000000000002498]" +BranchTee_mvgd_0_lvgd_1017_244,"[0.8918533247155894, 1.0000000000002498]" +BranchTee_mvgd_0_lvgd_1017_245,"[0.8916954977201985, 1.0000000000002487]" +BranchTee_mvgd_0_lvgd_1017_246,"[0.891433325651215, 1.0000000000002487]" +BranchTee_mvgd_0_lvgd_1017_247,"[0.8914287221080457, 1.000000000000248]" +BranchTee_mvgd_0_lvgd_1017_248,"[0.891290070419441, 1.000000000000248]" +BranchTee_mvgd_0_lvgd_1017_249,"[0.8911915661764139, 1.0000000000002478]" +BranchTee_mvgd_0_lvgd_1017_250,"[0.8909292457731347, 1.0000000000002478]" +BranchTee_mvgd_0_lvgd_1017_251,"[0.8909840409845153, 1.0000000000002474]" +BranchTee_mvgd_0_lvgd_1017_252,"[0.8908453200752792, 1.0000000000002474]" +BranchTee_mvgd_0_lvgd_1017_253,"[0.8908061489153934, 1.0000000000002471]" +BranchTee_mvgd_0_lvgd_1017_254,"[0.8905437149496241, 1.0000000000002471]" +BranchTee_mvgd_0_lvgd_1017_255,"[0.8906578992462567, 1.0000000000002467]" +BranchTee_mvgd_0_lvgd_1017_256,"[0.8905191275246931, 1.0000000000002467]" +BranchTee_mvgd_0_lvgd_1017_257,"[0.8905392925657865, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_258,"[0.8902767799136447, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_259,"[0.890450336363488, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_260,"[0.8903115322845913, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_261,"[0.8903910294317687, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_262,"[0.8901284730417446, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_263,"[0.8903613774681037, 1.0000000000002465]" +BranchTee_mvgd_0_lvgd_1017_264,"[0.8902225595166322, 1.0000000000002465]" +BusBar_mvgd_0_lvgd_1018_LV,"[0.9739842693516776, 1.000000000002967]" +BranchTee_mvgd_0_lvgd_1018_1,"[0.9689360199208739, 1.0000000000029672]" +BranchTee_mvgd_0_lvgd_1018_2,"[0.9685782582010294, 1.0000000000029672]" +BranchTee_mvgd_0_lvgd_1018_3,"[0.9643851890825014, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_4,"[0.9637259898604674, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_5,"[0.9603342080753305, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_6,"[0.9599732394430249, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_7,"[0.9567849668136122, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_8,"[0.9561205239755605, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_9,"[0.9537394274690665, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_10,"[0.9533759609622146, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_11,"[0.9511989904846374, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_12,"[0.9505306401797545, 1.0000000000029674]" +BranchTee_mvgd_0_lvgd_1018_13,"[0.9491651235815058, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_14,"[0.9487999040754637, 1.0000000000029676]" +BranchTee_mvgd_0_lvgd_1018_15,"[0.9476387172490279, 1.0000000000029678]" +BranchTee_mvgd_0_lvgd_1018_16,"[0.9469678523963999, 1.0000000000029678]" +BranchTee_mvgd_0_lvgd_1018_17,"[0.9466207256578352, 1.000000000002968]" +BranchTee_mvgd_0_lvgd_1018_18,"[0.9462545237272232, 1.000000000002968]" +BranchTee_mvgd_0_lvgd_1018_19,"[0.946111515634712, 1.000000000002968]" +BranchTee_mvgd_0_lvgd_1018_20,"[0.9454395663385753, 1.000000000002968]" +BranchTee_mvgd_0_lvgd_1018_21,"[0.9686277102679518, 1.0000000000029692]" +BranchTee_mvgd_0_lvgd_1018_22,"[0.9682698345899017, 1.0000000000029692]" +BranchTee_mvgd_0_lvgd_1018_23,"[0.9637496535378101, 1.0000000000029714]" +BranchTee_mvgd_0_lvgd_1018_24,"[0.963090019016453, 1.0000000000029714]" +BranchTee_mvgd_0_lvgd_1018_25,"[0.9593525980564489, 1.0000000000029732]" +BranchTee_mvgd_0_lvgd_1018_26,"[0.9589912598021471, 1.0000000000029732]" +BranchTee_mvgd_0_lvgd_1018_27,"[0.9554385332188898, 1.0000000000029752]" +BranchTee_mvgd_0_lvgd_1018_28,"[0.9547731527201985, 1.0000000000029752]" +BranchTee_mvgd_0_lvgd_1018_29,"[0.952009530148472, 1.000000000002977]" +BranchTee_mvgd_0_lvgd_1018_30,"[0.9516454026804049, 1.000000000002977]" +BranchTee_mvgd_0_lvgd_1018_31,"[0.949067129514434, 1.000000000002978]" +BranchTee_mvgd_0_lvgd_1018_32,"[0.9483972757911011, 1.000000000002978]" +BranchTee_mvgd_0_lvgd_1018_33,"[0.94661294887956, 1.0000000000029792]" +BranchTee_mvgd_0_lvgd_1018_34,"[0.9462467439382076, 1.0000000000029792]" +BranchTee_mvgd_0_lvgd_1018_35,"[0.94464805868355, 1.0000000000029798]" +BranchTee_mvgd_0_lvgd_1018_36,"[0.9439750669112522, 1.0000000000029798]" +BranchTee_mvgd_0_lvgd_1018_37,"[0.9431736025324543, 1.0000000000029805]" +BranchTee_mvgd_0_lvgd_1018_38,"[0.9428060611587181, 1.0000000000029805]" +BranchTee_mvgd_0_lvgd_1018_39,"[0.942190165028108, 1.0000000000029805]" +BranchTee_mvgd_0_lvgd_1018_40,"[0.9415154151016164, 1.0000000000029805]" +BranchTee_mvgd_0_lvgd_1018_41,"[0.9416984014837176, 1.0000000000029805]" +BranchTee_mvgd_0_lvgd_1018_42,"[0.9413302838936843, 1.0000000000029805]" +BusBar_mvgd_0_lvgd_1002_LV,"[0.9739520198999481, 1.0057459103422877]" +BranchTee_mvgd_0_lvgd_1002_1,"[0.9428696422880689, 1.0057459103422879]" +BranchTee_mvgd_0_lvgd_1002_2,"[0.9346717088428153, 1.0057459103422879]" +BranchTee_mvgd_0_lvgd_1002_3,"[0.9735327918421349, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_4,"[0.9734857502222938, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_5,"[0.9731554389230428, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_6,"[0.9730664369704117, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_7,"[0.9728199776170933, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_8,"[0.9727729015251136, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_9,"[0.9725264193493207, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_10,"[0.9724373598205319, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_11,"[0.9722747773315993, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_12,"[0.9722276748392757, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_13,"[0.9720650597136313, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_14,"[0.9719759579077484, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_15,"[0.9718972764323838, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_16,"[0.9718501556429004, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_17,"[0.9717714323532539, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_18,"[0.9716823036196605, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_19,"[0.9716875341291978, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_20,"[0.971640403167532, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_21,"[0.9716455833356106, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_22,"[0.971556443055786, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_23,"[0.9735327918421349, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_24,"[0.9734857502222938, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_25,"[0.9731554389230428, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_26,"[0.9730664369704117, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_27,"[0.9728199776170933, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_28,"[0.9727729015251136, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_29,"[0.9725264193493207, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_30,"[0.9724373598205319, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_31,"[0.9722747773315993, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_32,"[0.9722276748392757, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_33,"[0.9720650597136313, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_34,"[0.9719759579077484, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_35,"[0.9718972764323838, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_36,"[0.9718501556429004, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_37,"[0.9717714323532539, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_38,"[0.9716823036196605, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_39,"[0.9716875341291978, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_40,"[0.971640403167532, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_41,"[0.9716455833356106, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_42,"[0.971556443055786, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_43,"[0.9735327918421349, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_44,"[0.9734857502222938, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_45,"[0.9731554389230428, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_46,"[0.9730664369704117, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_47,"[0.9728199776170933, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_48,"[0.9727729015251136, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_49,"[0.9725264193493207, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_50,"[0.9724373598205319, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_51,"[0.9722747773315993, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_52,"[0.9722276748392757, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_53,"[0.9720650597136313, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_54,"[0.9719759579077484, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_55,"[0.9718972764323838, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_56,"[0.9718501556429004, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_57,"[0.9717714323532539, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_58,"[0.9716823036196605, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_59,"[0.9716875341291978, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_60,"[0.971640403167532, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_61,"[0.9716455833356106, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_62,"[0.971556443055786, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_63,"[0.9735327918421349, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_64,"[0.9734857502222938, 1.005745910342287]" +BranchTee_mvgd_0_lvgd_1002_65,"[0.9731554389230428, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_66,"[0.9730664369704117, 1.005745910342286]" +BranchTee_mvgd_0_lvgd_1002_67,"[0.9728199776170933, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_68,"[0.9727729015251136, 1.0057459103422854]" +BranchTee_mvgd_0_lvgd_1002_69,"[0.9725264193493207, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_70,"[0.9724373598205319, 1.0057459103422848]" +BranchTee_mvgd_0_lvgd_1002_71,"[0.9722747773315993, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_72,"[0.9722276748392757, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_73,"[0.9720650597136313, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_74,"[0.9719759579077484, 1.0057459103422843]" +BranchTee_mvgd_0_lvgd_1002_75,"[0.9718972764323838, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_76,"[0.9718501556429004, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_77,"[0.9717714323532539, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_78,"[0.9716823036196605, 1.0057459103422837]" +BranchTee_mvgd_0_lvgd_1002_79,"[0.9716875341291978, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_80,"[0.971640403167532, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_81,"[0.9716455833356106, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_82,"[0.971556443055786, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_83,"[0.9732789270225028, 1.0057459103422863]" +BranchTee_mvgd_0_lvgd_1002_84,"[0.9732318731313917, 1.0057459103422863]" +BranchTee_mvgd_0_lvgd_1002_85,"[0.9726393570581643, 1.0057459103422852]" +BranchTee_mvgd_0_lvgd_1002_86,"[0.9725503078724093, 1.0057459103422852]" +BranchTee_mvgd_0_lvgd_1002_87,"[0.972033331445942, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_88,"[0.9719862172525722, 1.0057459103422846]" +BranchTee_mvgd_0_lvgd_1002_89,"[0.9714608678533524, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_90,"[0.9713717106210744, 1.0057459103422839]" +BranchTee_mvgd_0_lvgd_1002_91,"[0.9709219856552567, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_92,"[0.9708748175283543, 1.0057459103422834]" +BranchTee_mvgd_0_lvgd_1002_93,"[0.9704167004376522, 1.0057459103422828]" +BranchTee_mvgd_0_lvgd_1002_94,"[0.9703274472544473, 1.0057459103422828]" +BranchTee_mvgd_0_lvgd_1002_95,"[0.9699450294963273, 1.0057459103422826]" +BranchTee_mvgd_0_lvgd_1002_96,"[0.969897813855719, 1.0057459103422826]" +BranchTee_mvgd_0_lvgd_1002_97,"[0.9695069863227427, 1.0057459103422823]" +BranchTee_mvgd_0_lvgd_1002_98,"[0.9694176493753107, 1.0057459103422823]" +BranchTee_mvgd_0_lvgd_1002_99,"[0.9691025861203104, 1.0057459103422821]" +BranchTee_mvgd_0_lvgd_1002_100,"[0.9690553294310168, 1.0057459103422821]" +BranchTee_mvgd_0_lvgd_1002_101,"[0.9687318402745866, 1.005745910342282]" +BranchTee_mvgd_0_lvgd_1002_102,"[0.9686424318294524, 1.005745910342282]" +BranchTee_mvgd_0_lvgd_1002_103,"[0.9683947618849483, 1.0057459103422817]" +BranchTee_mvgd_0_lvgd_1002_104,"[0.9683474706511673, 1.0057459103422817]" +BranchTee_mvgd_0_lvgd_1002_105,"[0.9680913602213483, 1.0057459103422814]" +BranchTee_mvgd_0_lvgd_1002_106,"[0.968001892613385, 1.0057459103422814]" +BranchTee_mvgd_0_lvgd_1002_107,"[0.967821646269135, 1.005745910342281]" +BranchTee_mvgd_0_lvgd_1002_108,"[0.9677743270281297, 1.005745910342281]" +BranchTee_mvgd_0_lvgd_1002_109,"[0.9675856271746476, 1.0057459103422806]" +BranchTee_mvgd_0_lvgd_1002_110,"[0.9674961127954353, 1.0057459103422806]" +BranchTee_mvgd_0_lvgd_1002_111,"[0.9673833118008978, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_112,"[0.967335971116803, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_113,"[0.9672147051643015, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_114,"[0.9671251564503462, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_115,"[0.9670798139989267, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_116,"[0.9670324584564902, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_117,"[0.9669786411866697, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_118,"[0.966889070607511, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_119,"[0.9669111913277579, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_120,"[0.9668638275260298, 1.0057459103422803]" +BranchTee_mvgd_0_lvgd_1002_121,"[0.9668774651666958, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_122,"[0.9667878852129339, 1.0057459103422801]" +BranchTee_mvgd_0_lvgd_1002_123,"[0.973013414471971, 1.005745910342283]" +BranchTee_mvgd_0_lvgd_1002_124,"[0.9729663477397126, 1.005745910342283]" +BranchTee_mvgd_0_lvgd_1002_125,"[0.9720916041522575, 1.0057459103422781]" +BranchTee_mvgd_0_lvgd_1002_126,"[0.9720025047798875, 1.0057459103422781]" +BranchTee_mvgd_0_lvgd_1002_127,"[0.9711866042037341, 1.0057459103422735]" +BranchTee_mvgd_0_lvgd_1002_128,"[0.9711394489299504, 1.0057459103422735]" +BranchTee_mvgd_0_lvgd_1002_129,"[0.9702984282740447, 1.0057459103422688]" +BranchTee_mvgd_0_lvgd_1002_130,"[0.9702091642095195, 1.0057459103422688]" +BranchTee_mvgd_0_lvgd_1002_131,"[0.9694270911413849, 1.0057459103422643]" +BranchTee_mvgd_0_lvgd_1002_132,"[0.9693798502722927, 1.0057459103422643]" +BranchTee_mvgd_0_lvgd_1002_133,"[0.9685726059582376, 1.0057459103422604]" +BranchTee_mvgd_0_lvgd_1002_134,"[0.9684831828115257, 1.0057459103422604]" +BranchTee_mvgd_0_lvgd_1002_135,"[0.9677349870123746, 1.0057459103422561]" +BranchTee_mvgd_0_lvgd_1002_136,"[0.9676876635335885, 1.0057459103422561]" +BranchTee_mvgd_0_lvgd_1002_137,"[0.9669142469557422, 1.0057459103422521]" +BranchTee_mvgd_0_lvgd_1002_138,"[0.9668246704102818, 1.0057459103422521]" +BranchTee_mvgd_0_lvgd_1002_139,"[0.9661103995801629, 1.005745910342248]" +BranchTee_mvgd_0_lvgd_1002_140,"[0.9660629965155687, 1.005745910342248]" +BranchTee_mvgd_0_lvgd_1002_141,"[0.9653234570318459, 1.0057459103422437]" +BranchTee_mvgd_0_lvgd_1002_142,"[0.965233732842377, 1.0057459103422437]" +BranchTee_mvgd_0_lvgd_1002_143,"[0.9645534326013102, 1.0057459103422397]" +BranchTee_mvgd_0_lvgd_1002_144,"[0.9645059530118983, 1.0057459103422397]" +BranchTee_mvgd_0_lvgd_1002_145,"[0.9638003379240093, 1.0057459103422357]" +BranchTee_mvgd_0_lvgd_1002_146,"[0.9637104719143258, 1.0057459103422357]" +BranchTee_mvgd_0_lvgd_1002_147,"[0.9630641857839809, 1.005745910342232]" +BranchTee_mvgd_0_lvgd_1002_148,"[0.9630166327666352, 1.005745910342232]" +BranchTee_mvgd_0_lvgd_1002_149,"[0.9623449873010881, 1.0057459103422286]" +BranchTee_mvgd_0_lvgd_1002_150,"[0.9622549853617045, 1.0057459103422286]" +BranchTee_mvgd_0_lvgd_1002_151,"[0.9616427547478915, 1.005745910342225]" +BranchTee_mvgd_0_lvgd_1002_152,"[0.9615951314341368, 1.005745910342225]" +BranchTee_mvgd_0_lvgd_1002_153,"[0.9609574987240185, 1.005745910342222]" +BranchTee_mvgd_0_lvgd_1002_154,"[0.9608673668097641, 1.005745910342222]" +BranchTee_mvgd_0_lvgd_1002_155,"[0.9602892309857445, 1.0057459103422184]" +BranchTee_mvgd_0_lvgd_1002_156,"[0.9602415405404527, 1.0057459103422184]" +BranchTee_mvgd_0_lvgd_1002_157,"[0.9596379616080097, 1.005745910342215]" +BranchTee_mvgd_0_lvgd_1002_158,"[0.9595477057355434, 1.005745910342215]" +BranchTee_mvgd_0_lvgd_1002_159,"[0.9590037018261846, 1.0057459103422115]" +BranchTee_mvgd_0_lvgd_1002_160,"[0.9589559474462425, 1.0057459103422115]" +BranchTee_mvgd_0_lvgd_1002_161,"[0.9583864611862686, 1.0057459103422084]" +BranchTee_mvgd_0_lvgd_1002_162,"[0.9582960874315203, 1.0057459103422084]" +BranchTee_mvgd_0_lvgd_1002_163,"[0.9577862503983038, 1.005745910342205]" +BranchTee_mvgd_0_lvgd_1002_164,"[0.957738435311241, 1.005745910342205]" +BranchTee_mvgd_0_lvgd_1002_165,"[0.9572030784752994, 1.005745910342202]" +BranchTee_mvgd_0_lvgd_1002_166,"[0.9571125929708423, 1.005745910342202]" +BranchTee_mvgd_0_lvgd_1002_167,"[0.9566369555977435, 1.0057459103421988]" +BranchTee_mvgd_0_lvgd_1002_168,"[0.956589083060325, 1.0057459103421988]" +BranchTee_mvgd_0_lvgd_1002_169,"[0.9560878902418074, 1.0057459103421957]" +BranchTee_mvgd_0_lvgd_1002_170,"[0.9559972991741594, 1.0057459103421957]" +BranchTee_mvgd_0_lvgd_1002_171,"[0.9555558920544038, 1.0057459103421924]" +BranchTee_mvgd_0_lvgd_1002_172,"[0.9555079653511862, 1.0057459103421924]" +BranchTee_mvgd_0_lvgd_1002_173,"[0.9550409689712319, 1.0057459103421893]" +BranchTee_mvgd_0_lvgd_1002_174,"[0.9549502785780934, 1.0057459103421893]" +BranchTee_mvgd_0_lvgd_1002_175,"[0.9545431301018122, 1.0057459103421862]" +BranchTee_mvgd_0_lvgd_1002_176,"[0.9544951525436659, 1.0057459103421862]" +BranchTee_mvgd_0_lvgd_1002_177,"[0.9540623828379486, 1.005745910342183]" +BranchTee_mvgd_0_lvgd_1002_178,"[0.953971599405376, 1.005745910342183]" +BranchTee_mvgd_0_lvgd_1002_179,"[0.9535987357481648, 1.0057459103421802]" +BranchTee_mvgd_0_lvgd_1002_180,"[0.953550710670764, 1.0057459103421802]" +BranchTee_mvgd_0_lvgd_1002_181,"[0.9531521956771611, 1.0057459103421778]" +BranchTee_mvgd_0_lvgd_1002_182,"[0.9530613255366811, 1.0057459103421778]" +BranchTee_mvgd_0_lvgd_1002_183,"[0.9527227706490728, 1.005745910342175]" +BranchTee_mvgd_0_lvgd_1002_184,"[0.9526747014113562, 1.005745910342175]" +BranchTee_mvgd_0_lvgd_1002_185,"[0.95231046695851, 1.0057459103421729]" +BranchTee_mvgd_0_lvgd_1002_186,"[0.9522195164841786, 1.0057459103421729]" +BranchTee_mvgd_0_lvgd_1002_187,"[0.9519152920820438, 1.0057459103421709]" +BranchTee_mvgd_0_lvgd_1002_188,"[0.9518671820646442, 1.0057459103421709]" +BranchTee_mvgd_0_lvgd_1002_189,"[0.9515372517614281, 1.005745910342169]" +BranchTee_mvgd_0_lvgd_1002_190,"[0.9514462273668353, 1.005745910342169]" +BranchTee_mvgd_0_lvgd_1002_191,"[0.9511763529227154, 1.0057459103421673]" +BranchTee_mvgd_0_lvgd_1002_192,"[0.9511282055263623, 1.0057459103421673]" +BranchTee_mvgd_0_lvgd_1002_193,"[0.950832600752261, 1.0057459103421658]" +BranchTee_mvgd_0_lvgd_1002_194,"[0.9507415088874863, 1.0057459103421658]" +BranchTee_mvgd_0_lvgd_1002_195,"[0.9505060016228658, 1.0057459103421644]" +BranchTee_mvgd_0_lvgd_1002_196,"[0.9504578202667657, 1.0057459103421644]" +BranchTee_mvgd_0_lvgd_1002_197,"[0.9501965601631742, 1.0057459103421633]" +BranchTee_mvgd_0_lvgd_1002_198,"[0.9501054073116972, 1.0057459103421633]" +BranchTee_mvgd_0_lvgd_1002_199,"[0.9499042821902273, 1.0057459103421622]" +BranchTee_mvgd_0_lvgd_1002_200,"[0.9498560703104174, 1.0057459103421622]" +BranchTee_mvgd_0_lvgd_1002_201,"[0.9496291717728726, 1.0057459103421613]" +BranchTee_mvgd_0_lvgd_1002_202,"[0.94953796444844, 1.0057459103421613]" +BranchTee_mvgd_0_lvgd_1002_203,"[0.9493712341701122, 1.0057459103421604]" +BranchTee_mvgd_0_lvgd_1002_204,"[0.9493229952177948, 1.0057459103421604]" +BranchTee_mvgd_0_lvgd_1002_205,"[0.9491304728891431, 1.0057459103421598]" +BranchTee_mvgd_0_lvgd_1002_206,"[0.949039217632598, 1.0057459103421598]" +BranchTee_mvgd_0_lvgd_1002_207,"[0.9489068926288765, 1.0057459103421589]" +BranchTee_mvgd_0_lvgd_1002_208,"[0.9488586300687329, 1.0057459103421589]" +BranchTee_mvgd_0_lvgd_1002_209,"[0.9487004963332403, 1.005745910342158]" +BranchTee_mvgd_0_lvgd_1002_210,"[0.9486091997093175, 1.005745910342158]" +BranchTee_mvgd_0_lvgd_1002_211,"[0.9485112881392367, 1.005745910342157]" +BranchTee_mvgd_0_lvgd_1002_212,"[0.9484630054477248, 1.005745910342157]" +BranchTee_mvgd_0_lvgd_1002_213,"[0.9483392704261367, 1.0057459103421564]" +BranchTee_mvgd_0_lvgd_1002_214,"[0.9482479390202264, 1.0057459103421564]" +BranchTee_mvgd_0_lvgd_1002_215,"[0.9481844467674481, 1.0057459103421553]" +BranchTee_mvgd_0_lvgd_1002_216,"[0.9481361474310841, 1.0057459103421553]" +BranchTee_mvgd_0_lvgd_1002_217,"[0.9480468189766352, 1.005745910342154]" +BranchTee_mvgd_0_lvgd_1002_218,"[0.9479554593915217, 1.005745910342154]" +BranchTee_mvgd_0_lvgd_1002_219,"[0.9479263900623617, 1.005745910342153]" +BranchTee_mvgd_0_lvgd_1002_220,"[0.9478780775759905, 1.005745910342153]" +BranchTee_mvgd_0_lvgd_1002_221,"[0.9478231612713721, 1.0057459103421524]" +BranchTee_mvgd_0_lvgd_1002_222,"[0.947731780123949, 1.0057459103421524]" +BranchTee_mvgd_0_lvgd_1002_223,"[0.9477371350463712, 1.0057459103421518]" +BranchTee_mvgd_0_lvgd_1002_224,"[0.9476888129114247, 1.0057459103421518]" +BranchTee_mvgd_0_lvgd_1002_225,"[0.9476683120667089, 1.0057459103421516]" +BranchTee_mvgd_0_lvgd_1002_226,"[0.9475769159846761, 1.0057459103421516]" +BranchTee_mvgd_0_lvgd_1002_227,"[0.9476166942082536, 1.0057459103421513]" +BranchTee_mvgd_0_lvgd_1002_228,"[0.9475683659310004, 1.0057459103421513]" +BranchTee_mvgd_0_lvgd_1002_229,"[0.9475822815825242, 1.0057459103421509]" +BranchTee_mvgd_0_lvgd_1002_230,"[0.9474908772010727, 1.0057459103421509]" +BranchTee_mvgd_0_lvgd_1002_231,"[0.9475650754979141, 1.0057459103421509]" +BranchTee_mvgd_0_lvgd_1002_232,"[0.9475167445877039, 1.0057459103421509]" +BusBar_mvgd_0_lvgd_1003_LV,"[0.9732326842421133, 1.0081790078554211]" +BranchTee_mvgd_0_lvgd_1003_1,"[0.966670415276847, 1.0081790078554211]" +BranchTee_mvgd_0_lvgd_1003_2,"[0.9523097376804649, 1.0081790078554211]" +BranchTee_mvgd_0_lvgd_1003_3,"[0.9728911298708331, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_4,"[0.9728527713193009, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_5,"[0.9726178592966386, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_6,"[0.9725452939005884, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_7,"[0.9724128922328666, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_8,"[0.9723745148149114, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_9,"[0.972276239492247, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_10,"[0.9722036485957088, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_11,"[0.9722079120776461, 1.0081790078554194]" +BranchTee_mvgd_0_lvgd_1003_12,"[0.9721695265675624, 1.0081790078554194]" +BranchTee_mvgd_0_lvgd_1003_13,"[0.9728911298708331, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_14,"[0.9728527713193009, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_15,"[0.9726178592966386, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_16,"[0.9725452939005884, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_17,"[0.9724128922328666, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_18,"[0.9723745148149114, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_19,"[0.972276239492247, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_20,"[0.9722036485957088, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_21,"[0.9722079120776461, 1.0081790078554194]" +BranchTee_mvgd_0_lvgd_1003_22,"[0.9721695265675624, 1.0081790078554194]" +BranchTee_mvgd_0_lvgd_1003_23,"[0.972841573714211, 1.0081790078554207]" +BranchTee_mvgd_0_lvgd_1003_24,"[0.9728032132085553, 1.0081790078554207]" +BranchTee_mvgd_0_lvgd_1003_25,"[0.9724859767699757, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_26,"[0.9724134015315707, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_27,"[0.9721659064005473, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_28,"[0.9721275192317582, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_29,"[0.971881372058066, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_30,"[0.971808751663986, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_31,"[0.9716323843862161, 1.00817900785542]" +BranchTee_mvgd_0_lvgd_1003_32,"[0.9715939761374165, 1.00817900785542]" +BranchTee_mvgd_0_lvgd_1003_33,"[0.9714189504810105, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_34,"[0.9713462955124403, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_35,"[0.9712410786301486, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_36,"[0.9712026549057272, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_37,"[0.9710987735670112, 1.0081790078554187]" +BranchTee_mvgd_0_lvgd_1003_38,"[0.9710260946400503, 1.0081790078554187]" +BranchTee_mvgd_0_lvgd_1003_39,"[0.9709920412167716, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_40,"[0.9709536076367559, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_41,"[0.9709208839456733, 1.0081790078554183]" +BranchTee_mvgd_0_lvgd_1003_42,"[0.9708481917006508, 1.0081790078554183]" +BranchTee_mvgd_0_lvgd_1003_43,"[0.9708853053118196, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_44,"[0.9708468675062087, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_45,"[0.9728415737142116, 1.0081790078554207]" +BranchTee_mvgd_0_lvgd_1003_46,"[0.972803213208556, 1.0081790078554207]" +BranchTee_mvgd_0_lvgd_1003_47,"[0.9724859767699767, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_48,"[0.9724134015315719, 1.0081790078554205]" +BranchTee_mvgd_0_lvgd_1003_49,"[0.9721659064005487, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_50,"[0.9721275192317597, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_51,"[0.9718813720580678, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_52,"[0.9718087516639878, 1.0081790078554203]" +BranchTee_mvgd_0_lvgd_1003_53,"[0.9716323843862185, 1.00817900785542]" +BranchTee_mvgd_0_lvgd_1003_54,"[0.9715939761374187, 1.00817900785542]" +BranchTee_mvgd_0_lvgd_1003_55,"[0.9714189504810129, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_56,"[0.9713462955124427, 1.0081790078554196]" +BranchTee_mvgd_0_lvgd_1003_57,"[0.9712410786301514, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_58,"[0.97120265490573, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_59,"[0.9710987735670145, 1.0081790078554187]" +BranchTee_mvgd_0_lvgd_1003_60,"[0.9710260946400535, 1.0081790078554187]" +BranchTee_mvgd_0_lvgd_1003_61,"[0.9709920412167753, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_62,"[0.9709536076367595, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_63,"[0.970920883945677, 1.0081790078554183]" +BranchTee_mvgd_0_lvgd_1003_64,"[0.9708481917006544, 1.0081790078554183]" +BranchTee_mvgd_0_lvgd_1003_65,"[0.9708853053118233, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_66,"[0.9708468675062123, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_67,"[0.9728415737142116, 1.0081790078554216]" +BranchTee_mvgd_0_lvgd_1003_68,"[0.972803213208556, 1.0081790078554216]" +BranchTee_mvgd_0_lvgd_1003_69,"[0.9724859767699767, 1.0081790078554222]" +BranchTee_mvgd_0_lvgd_1003_70,"[0.9724134015315719, 1.0081790078554222]" +BranchTee_mvgd_0_lvgd_1003_71,"[0.9721659064005487, 1.0081790078554227]" +BranchTee_mvgd_0_lvgd_1003_72,"[0.9721275192317597, 1.0081790078554227]" +BranchTee_mvgd_0_lvgd_1003_73,"[0.9718813720580678, 1.0081790078554234]" +BranchTee_mvgd_0_lvgd_1003_74,"[0.9718087516639878, 1.0081790078554234]" +BranchTee_mvgd_0_lvgd_1003_75,"[0.9716323843862185, 1.008179007855424]" +BranchTee_mvgd_0_lvgd_1003_76,"[0.9715939761374187, 1.008179007855424]" +BranchTee_mvgd_0_lvgd_1003_77,"[0.9714189504810129, 1.0081790078554245]" +BranchTee_mvgd_0_lvgd_1003_78,"[0.9713462955124427, 1.0081790078554245]" +BranchTee_mvgd_0_lvgd_1003_79,"[0.9712410786301514, 1.0081790078554251]" +BranchTee_mvgd_0_lvgd_1003_80,"[0.97120265490573, 1.0081790078554251]" +BranchTee_mvgd_0_lvgd_1003_81,"[0.9710987735670145, 1.0081790078554256]" +BranchTee_mvgd_0_lvgd_1003_82,"[0.9710260946400535, 1.0081790078554256]" +BranchTee_mvgd_0_lvgd_1003_83,"[0.9709920412167753, 1.008179007855426]" +BranchTee_mvgd_0_lvgd_1003_84,"[0.9709536076367595, 1.008179007855426]" +BranchTee_mvgd_0_lvgd_1003_85,"[0.970920883945677, 1.0081790078554262]" +BranchTee_mvgd_0_lvgd_1003_86,"[0.9708481917006544, 1.0081790078554262]" +BranchTee_mvgd_0_lvgd_1003_87,"[0.9708853053118233, 1.0081790078554262]" +BranchTee_mvgd_0_lvgd_1003_88,"[0.9708468675062123, 1.0081790078554262]" +BranchTee_mvgd_0_lvgd_1003_89,"[0.9728415737142118, 1.0081790078554218]" +BranchTee_mvgd_0_lvgd_1003_90,"[0.9728032132085561, 1.0081790078554218]" +BranchTee_mvgd_0_lvgd_1003_91,"[0.9724859767699771, 1.0081790078554225]" +BranchTee_mvgd_0_lvgd_1003_92,"[0.9724134015315721, 1.0081790078554225]" +BranchTee_mvgd_0_lvgd_1003_93,"[0.9721659064005491, 1.008179007855423]" +BranchTee_mvgd_0_lvgd_1003_94,"[0.9721275192317601, 1.008179007855423]" +BranchTee_mvgd_0_lvgd_1003_95,"[0.9718813720580683, 1.0081790078554234]" +BranchTee_mvgd_0_lvgd_1003_96,"[0.9718087516639884, 1.0081790078554234]" +BranchTee_mvgd_0_lvgd_1003_97,"[0.9716323843862191, 1.0081790078554236]" +BranchTee_mvgd_0_lvgd_1003_98,"[0.9715939761374194, 1.0081790078554236]" +BranchTee_mvgd_0_lvgd_1003_99,"[0.9714189504810137, 1.0081790078554238]" +BranchTee_mvgd_0_lvgd_1003_100,"[0.9713462955124434, 1.0081790078554238]" +BranchTee_mvgd_0_lvgd_1003_101,"[0.9712410786301522, 1.008179007855424]" +BranchTee_mvgd_0_lvgd_1003_102,"[0.9712026549057308, 1.008179007855424]" +BranchTee_mvgd_0_lvgd_1003_103,"[0.9710987735670152, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_104,"[0.9710260946400543, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_105,"[0.9709920412167762, 1.0081790078554245]" +BranchTee_mvgd_0_lvgd_1003_106,"[0.9709536076367604, 1.0081790078554245]" +BranchTee_mvgd_0_lvgd_1003_107,"[0.970920883945678, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_108,"[0.9708481917006554, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_109,"[0.9708853053118243, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_110,"[0.9708468675062133, 1.0081790078554242]" +BranchTee_mvgd_0_lvgd_1003_111,"[0.9727603985103183, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_112,"[0.9727220348032908, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_113,"[0.9723195352224187, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_114,"[0.9722469475587174, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_115,"[0.9719101083856172, 1.0081790078554158]" +BranchTee_mvgd_0_lvgd_1003_116,"[0.9718717111128704, 1.0081790078554158]" +BranchTee_mvgd_0_lvgd_1003_117,"[0.9715321289981107, 1.0081790078554147]" +BranchTee_mvgd_0_lvgd_1003_118,"[0.9714594824947523, 1.0081790078554147]" +BranchTee_mvgd_0_lvgd_1003_119,"[0.9711856092362773, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_120,"[0.9711471833171057, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_121,"[0.9708705582580538, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_122,"[0.9707978622444124, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_123,"[0.9705869864002533, 1.0081790078554125]" +BranchTee_mvgd_0_lvgd_1003_124,"[0.970548536779489, 1.0081790078554125]" +BranchTee_mvgd_0_lvgd_1003_125,"[0.9703349009732971, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_126,"[0.9702621648229458, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_127,"[0.9701143104670569, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_128,"[0.9700758421107132, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_129,"[0.9699252203385599, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_130,"[0.9698524534609818, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_131,"[0.9697676372247387, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_132,"[0.969729155115606, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_133,"[0.9696415647247348, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_134,"[0.9695687765569533, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_135,"[0.9695470076179312, 1.0081790078554116]" +BranchTee_mvgd_0_lvgd_1003_136,"[0.9695085167511336, 1.0081790078554116]" +BranchTee_mvgd_0_lvgd_1003_137,"[0.9694839676424893, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_138,"[0.9694111676406343, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_139,"[0.9694524477170247, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_140,"[0.9694139530955488, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_141,"[0.9727603985103174, 1.0081790078554198]" +BranchTee_mvgd_0_lvgd_1003_142,"[0.9727220348032899, 1.0081790078554198]" +BranchTee_mvgd_0_lvgd_1003_143,"[0.9723195352224165, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_144,"[0.9722469475587153, 1.0081790078554185]" +BranchTee_mvgd_0_lvgd_1003_145,"[0.9719101083856142, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_146,"[0.9718717111128674, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_147,"[0.9715321289981067, 1.008179007855416]" +BranchTee_mvgd_0_lvgd_1003_148,"[0.9714594824947483, 1.008179007855416]" +BranchTee_mvgd_0_lvgd_1003_149,"[0.9711856092362728, 1.008179007855415]" +BranchTee_mvgd_0_lvgd_1003_150,"[0.9711471833171014, 1.008179007855415]" +BranchTee_mvgd_0_lvgd_1003_151,"[0.9708705582580488, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_152,"[0.9707978622444072, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_153,"[0.9705869864002478, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_154,"[0.9705485367794835, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_155,"[0.9703349009732911, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_156,"[0.9702621648229399, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_157,"[0.9701143104670505, 1.008179007855411]" +BranchTee_mvgd_0_lvgd_1003_158,"[0.9700758421107069, 1.008179007855411]" +BranchTee_mvgd_0_lvgd_1003_159,"[0.9699252203385529, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_160,"[0.9698524534609749, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_161,"[0.9697676372247314, 1.0081790078554096]" +BranchTee_mvgd_0_lvgd_1003_162,"[0.9697291551155987, 1.0081790078554096]" +BranchTee_mvgd_0_lvgd_1003_163,"[0.9696415647247274, 1.0081790078554098]" +BranchTee_mvgd_0_lvgd_1003_164,"[0.969568776556946, 1.0081790078554098]" +BranchTee_mvgd_0_lvgd_1003_165,"[0.969547007617924, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_166,"[0.9695085167511265, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_167,"[0.9694839676424823, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_168,"[0.9694111676406275, 1.00817900785541]" +BranchTee_mvgd_0_lvgd_1003_169,"[0.969452447717018, 1.0081790078554098]" +BranchTee_mvgd_0_lvgd_1003_170,"[0.9694139530955421, 1.0081790078554098]" +BranchTee_mvgd_0_lvgd_1003_171,"[0.9727603985103174, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_172,"[0.9727220348032899, 1.0081790078554191]" +BranchTee_mvgd_0_lvgd_1003_173,"[0.9723195352224165, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_174,"[0.9722469475587153, 1.0081790078554174]" +BranchTee_mvgd_0_lvgd_1003_175,"[0.9719101083856142, 1.0081790078554158]" +BranchTee_mvgd_0_lvgd_1003_176,"[0.9718717111128674, 1.0081790078554158]" +BranchTee_mvgd_0_lvgd_1003_177,"[0.9715321289981067, 1.0081790078554147]" +BranchTee_mvgd_0_lvgd_1003_178,"[0.9714594824947483, 1.0081790078554147]" +BranchTee_mvgd_0_lvgd_1003_179,"[0.9711856092362728, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_180,"[0.9711471833171014, 1.0081790078554138]" +BranchTee_mvgd_0_lvgd_1003_181,"[0.9708705582580488, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_182,"[0.9707978622444072, 1.008179007855413]" +BranchTee_mvgd_0_lvgd_1003_183,"[0.9705869864002478, 1.0081790078554125]" +BranchTee_mvgd_0_lvgd_1003_184,"[0.9705485367794835, 1.0081790078554125]" +BranchTee_mvgd_0_lvgd_1003_185,"[0.9703349009732911, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_186,"[0.9702621648229399, 1.008179007855412]" +BranchTee_mvgd_0_lvgd_1003_187,"[0.9701143104670505, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_188,"[0.9700758421107069, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_189,"[0.9699252203385529, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_190,"[0.9698524534609749, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_191,"[0.9697676372247314, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_192,"[0.9697291551155987, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_193,"[0.9696415647247274, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_194,"[0.969568776556946, 1.0081790078554118]" +BranchTee_mvgd_0_lvgd_1003_195,"[0.969547007617924, 1.0081790078554116]" +BranchTee_mvgd_0_lvgd_1003_196,"[0.9695085167511265, 1.0081790078554116]" +BranchTee_mvgd_0_lvgd_1003_197,"[0.9694839676424823, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_198,"[0.9694111676406275, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_199,"[0.969452447717018, 1.0081790078554114]" +BranchTee_mvgd_0_lvgd_1003_200,"[0.9694139530955421, 1.0081790078554114]" +BusBar_mvgd_0_lvgd_1004_LV,"[0.9804598333810162, 0.9999999999999073]" +BranchTee_mvgd_0_lvgd_1004_1,"[0.9764822504384244, 0.9999999999999073]" +BranchTee_mvgd_0_lvgd_1004_2,"[0.9656013679574987, 0.9999999999999073]" +BranchTee_mvgd_0_lvgd_1004_3,"[0.9801282097410141, 0.9999999999999059]" +BranchTee_mvgd_0_lvgd_1004_4,"[0.9801012530127744, 0.9999999999999059]" +BranchTee_mvgd_0_lvgd_1004_5,"[0.9798186633991773, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_6,"[0.9797676663545054, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_7,"[0.9795312012110791, 0.9999999999999034]" +BranchTee_mvgd_0_lvgd_1004_8,"[0.9795042280522402, 0.9999999999999034]" +BranchTee_mvgd_0_lvgd_1004_9,"[0.9792658285573375, 0.9999999999999025]" +BranchTee_mvgd_0_lvgd_1004_10,"[0.979214802719755, 0.9999999999999025]" +BranchTee_mvgd_0_lvgd_1004_11,"[0.9790225513944423, 0.9999999999999015]" +BranchTee_mvgd_0_lvgd_1004_12,"[0.9789955642209623, 0.9999999999999015]" +BranchTee_mvgd_0_lvgd_1004_13,"[0.97880137420071, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_14,"[0.9787503241481317, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_15,"[0.9786023020305656, 0.9999999999999002]" +BranchTee_mvgd_0_lvgd_1004_16,"[0.978575303267118, 0.9999999999999002]" +BranchTee_mvgd_0_lvgd_1004_17,"[0.9784253384575518, 0.9999999999998999]" +BranchTee_mvgd_0_lvgd_1004_18,"[0.9783742687829647, 0.9999999999998999]" +BranchTee_mvgd_0_lvgd_1004_19,"[0.9782704876315148, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_20,"[0.9782434797099928, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_21,"[0.9781377522192226, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_22,"[0.9780866675278485, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_23,"[0.9780271354639007, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_24,"[0.9780001208219109, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_25,"[0.9779386391240132, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_26,"[0.977887544030447, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_27,"[0.9778722655345962, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1004_28,"[0.9778452466139419, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1004_29,"[0.9778280155447574, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1004_30,"[0.9777769146700933, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1004_31,"[0.97780589058025, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_32,"[0.9777788698254085, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_33,"[0.9799264586890514, 0.9999999999999062]" +BranchTee_mvgd_0_lvgd_1004_34,"[0.9798994964105503, 0.9999999999999062]" +BranchTee_mvgd_0_lvgd_1004_35,"[0.9794026954589458, 0.9999999999999052]" +BranchTee_mvgd_0_lvgd_1004_36,"[0.9793516767527347, 0.9999999999999052]" +BranchTee_mvgd_0_lvgd_1004_37,"[0.9788885486040443, 0.9999999999999045]" +BranchTee_mvgd_0_lvgd_1004_38,"[0.9788615577360109, 0.9999999999999045]" +BranchTee_mvgd_0_lvgd_1004_39,"[0.9783840225092161, 0.9999999999999039]" +BranchTee_mvgd_0_lvgd_1004_40,"[0.9783329506777926, 0.9999999999999039]" +BranchTee_mvgd_0_lvgd_1004_41,"[0.9778891219240442, 0.999999999999903]" +BranchTee_mvgd_0_lvgd_1004_42,"[0.977862103469155, 0.999999999999903]" +BranchTee_mvgd_0_lvgd_1004_43,"[0.9774038510677227, 0.9999999999999022]" +BranchTee_mvgd_0_lvgd_1004_44,"[0.9773527280144392, 0.9999999999999022]" +BranchTee_mvgd_0_lvgd_1004_45,"[0.9769282145250249, 0.9999999999999013]" +BranchTee_mvgd_0_lvgd_1004_46,"[0.9769011694932881, 0.9999999999999013]" +BranchTee_mvgd_0_lvgd_1004_47,"[0.9764622163484883, 0.9999999999999004]" +BranchTee_mvgd_0_lvgd_1004_48,"[0.9764110439903364, 0.9999999999999004]" +BranchTee_mvgd_0_lvgd_1004_49,"[0.9760058609570639, 0.9999999999998996]" +BranchTee_mvgd_0_lvgd_1004_50,"[0.975978790365576, 0.9999999999998996]" +BranchTee_mvgd_0_lvgd_1004_51,"[0.9755591522356859, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_52,"[0.975507932502832, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_53,"[0.975122094436506, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_54,"[0.9750949993092048, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_55,"[0.9746946912759437, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_56,"[0.9746434261112563, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_57,"[0.9742769468384099, 0.9999999999998973]" +BranchTee_mvgd_0_lvgd_1004_58,"[0.9742498282058231, 0.9999999999998973]" +BranchTee_mvgd_0_lvgd_1004_59,"[0.9738688646709347, 0.999999999999897]" +BranchTee_mvgd_0_lvgd_1004_60,"[0.9738175560295053, 0.999999999999897]" +BranchTee_mvgd_0_lvgd_1004_61,"[0.9734704486892819, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_62,"[0.9734433075882696, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_63,"[0.9730817022702546, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_64,"[0.9730303521189071, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_65,"[0.9727026291601008, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_66,"[0.9726754666335962, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_67,"[0.9723332325645957, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_68,"[0.9722818428813906, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_69,"[0.9719735160596388, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_70,"[0.9719463331563825, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_71,"[0.9716234826792163, 0.9999999999998972]" +BranchTee_mvgd_0_lvgd_1004_72,"[0.9715720554529456, 0.9999999999998972]" +BranchTee_mvgd_0_lvgd_1004_73,"[0.9712831358280835, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_74,"[0.971255933602355, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_75,"[0.9709524783677127, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_76,"[0.9709010155973875, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_77,"[0.9706315135309584, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_78,"[0.9706042930423031, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_79,"[0.9703202440060926, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_80,"[0.9702687477004243, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_81,"[0.970018672853351, 0.9999999999999001]" +BranchTee_mvgd_0_lvgd_1004_82,"[0.9699914351663043, 0.9999999999999001]" +BranchTee_mvgd_0_lvgd_1004_83,"[0.9697268025871578, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_84,"[0.9696752747640317, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_85,"[0.9694446360944498, 0.9999999999999011]" +BranchTee_mvgd_0_lvgd_1004_86,"[0.9694173822782572, 0.9999999999999011]" +BranchTee_mvgd_0_lvgd_1004_87,"[0.9691721757151955, 0.9999999999999016]" +BranchTee_mvgd_0_lvgd_1004_88,"[0.9691206184011397, 0.9999999999999016]" +BranchTee_mvgd_0_lvgd_1004_89,"[0.9689094241623907, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1004_90,"[0.9688821552907251, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1004_91,"[0.9686563836009803, 0.9999999999999026]" +BranchTee_mvgd_0_lvgd_1004_92,"[0.9686047988306253, 0.9999999999999026]" +BranchTee_mvgd_0_lvgd_1004_93,"[0.9684130565694168, 0.9999999999999032]" +BranchTee_mvgd_0_lvgd_1004_94,"[0.9683857737200919, 0.9999999999999032]" +BranchTee_mvgd_0_lvgd_1004_95,"[0.9681794450570937, 0.9999999999999037]" +BranchTee_mvgd_0_lvgd_1004_96,"[0.9681278348726311, 0.9999999999999037]" +BranchTee_mvgd_0_lvgd_1004_97,"[0.9679555514273587, 0.9999999999999043]" +BranchTee_mvgd_0_lvgd_1004_98,"[0.96792825568204, 0.9999999999999043]" +BranchTee_mvgd_0_lvgd_1004_99,"[0.9677413774935647, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_100,"[0.9676897439441959, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_101,"[0.9675369254434314, 0.9999999999999053]" +BranchTee_mvgd_0_lvgd_1004_102,"[0.9675096178873447, 0.9999999999999053]" +BranchTee_mvgd_0_lvgd_1004_103,"[0.9673421969138237, 0.9999999999999061]" +BranchTee_mvgd_0_lvgd_1004_104,"[0.9672905420552066, 0.9999999999999061]" +BranchTee_mvgd_0_lvgd_1004_105,"[0.9671571939163507, 0.9999999999999069]" +BranchTee_mvgd_0_lvgd_1004_106,"[0.9671298756379877, 0.9999999999999069]" +BranchTee_mvgd_0_lvgd_1004_107,"[0.9669819179109819, 0.9999999999999075]" +BranchTee_mvgd_0_lvgd_1004_108,"[0.9669302438046713, 0.9999999999999075]" +BranchTee_mvgd_0_lvgd_1004_109,"[0.9668163707327746, 0.9999999999999086]" +BranchTee_mvgd_0_lvgd_1004_110,"[0.9667890428235966, 0.9999999999999086]" +BranchTee_mvgd_0_lvgd_1004_111,"[0.9666605536644363, 0.9999999999999094]" +BranchTee_mvgd_0_lvgd_1004_112,"[0.9666088623773216, 0.9999999999999094]" +BranchTee_mvgd_0_lvgd_1004_113,"[0.966514468364071, 0.9999999999999101]" +BranchTee_mvgd_0_lvgd_1004_114,"[0.9664871319182097, 0.9999999999999101]" +BranchTee_mvgd_0_lvgd_1004_115,"[0.966378115936799, 0.9999999999999108]" +BranchTee_mvgd_0_lvgd_1004_116,"[0.9663264095405373, 0.9999999999999108]" +BranchTee_mvgd_0_lvgd_1004_117,"[0.9662514978634114, 0.9999999999999115]" +BranchTee_mvgd_0_lvgd_1004_118,"[0.9662241539773688, 0.9999999999999115]" +BranchTee_mvgd_0_lvgd_1004_119,"[0.9661346150711563, 0.999999999999912]" +BranchTee_mvgd_0_lvgd_1004_120,"[0.9660828956416021, 0.999999999999912]" +BranchTee_mvgd_0_lvgd_1004_121,"[0.9660274688631922, 0.9999999999999124]" +BranchTee_mvgd_0_lvgd_1004_122,"[0.9660001186355384, 0.9999999999999124]" +BranchTee_mvgd_0_lvgd_1004_123,"[0.9659300599886529, 0.9999999999999128]" +BranchTee_mvgd_0_lvgd_1004_124,"[0.9658783296052852, 0.9999999999999128]" +BranchTee_mvgd_0_lvgd_1004_125,"[0.9658423895727853, 0.9999999999999132]" +BranchTee_mvgd_0_lvgd_1004_126,"[0.965815034103854, 0.9999999999999132]" +BranchTee_mvgd_0_lvgd_1004_127,"[0.9657644581864083, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_128,"[0.9657127189317547, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_129,"[0.9656962667766212, 0.9999999999999135]" +BranchTee_mvgd_0_lvgd_1004_130,"[0.9656689071682056, 0.9999999999999135]" +BranchTee_mvgd_0_lvgd_1004_131,"[0.9656378157357671, 0.9999999999999136]" +BranchTee_mvgd_0_lvgd_1004_132,"[0.9655860696948257, 0.9999999999999136]" +BranchTee_mvgd_0_lvgd_1004_133,"[0.965589105832603, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_134,"[0.9655617431876495, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_135,"[0.9655501372808785, 0.9999999999999133]" +BranchTee_mvgd_0_lvgd_1004_136,"[0.9654983865405389, 0.9999999999999133]" +BranchTee_mvgd_0_lvgd_1004_137,"[0.9655209106708548, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_138,"[0.9654935460931562, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_139,"[0.9655014260376112, 0.999999999999913]" +BranchTee_mvgd_0_lvgd_1004_140,"[0.9654496726860728, 0.999999999999913]" +BranchTee_mvgd_0_lvgd_1004_141,"[0.9654916837928019, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_142,"[0.9654643183866896, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_143,"[0.9799264586890514, 0.9999999999999062]" +BranchTee_mvgd_0_lvgd_1004_144,"[0.9798994964105503, 0.9999999999999062]" +BranchTee_mvgd_0_lvgd_1004_145,"[0.9794026954589458, 0.9999999999999052]" +BranchTee_mvgd_0_lvgd_1004_146,"[0.9793516767527347, 0.9999999999999052]" +BranchTee_mvgd_0_lvgd_1004_147,"[0.9788885486040443, 0.9999999999999045]" +BranchTee_mvgd_0_lvgd_1004_148,"[0.9788615577360109, 0.9999999999999045]" +BranchTee_mvgd_0_lvgd_1004_149,"[0.978384022509216, 0.9999999999999039]" +BranchTee_mvgd_0_lvgd_1004_150,"[0.9783329506777926, 0.9999999999999039]" +BranchTee_mvgd_0_lvgd_1004_151,"[0.9778891219240442, 0.999999999999903]" +BranchTee_mvgd_0_lvgd_1004_152,"[0.977862103469155, 0.999999999999903]" +BranchTee_mvgd_0_lvgd_1004_153,"[0.9774038510677225, 0.9999999999999022]" +BranchTee_mvgd_0_lvgd_1004_154,"[0.9773527280144392, 0.9999999999999022]" +BranchTee_mvgd_0_lvgd_1004_155,"[0.9769282145250249, 0.9999999999999013]" +BranchTee_mvgd_0_lvgd_1004_156,"[0.9769011694932881, 0.9999999999999013]" +BranchTee_mvgd_0_lvgd_1004_157,"[0.9764622163484882, 0.9999999999999004]" +BranchTee_mvgd_0_lvgd_1004_158,"[0.9764110439903364, 0.9999999999999004]" +BranchTee_mvgd_0_lvgd_1004_159,"[0.9760058609570638, 0.9999999999998996]" +BranchTee_mvgd_0_lvgd_1004_160,"[0.975978790365576, 0.9999999999998996]" +BranchTee_mvgd_0_lvgd_1004_161,"[0.9755591522356859, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_162,"[0.9755079325028319, 0.999999999999899]" +BranchTee_mvgd_0_lvgd_1004_163,"[0.975122094436506, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_164,"[0.9750949993092047, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_165,"[0.9746946912759437, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_166,"[0.9746434261112562, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_167,"[0.9742769468384099, 0.9999999999998973]" +BranchTee_mvgd_0_lvgd_1004_168,"[0.974249828205823, 0.9999999999998973]" +BranchTee_mvgd_0_lvgd_1004_169,"[0.9738688646709346, 0.999999999999897]" +BranchTee_mvgd_0_lvgd_1004_170,"[0.9738175560295051, 0.999999999999897]" +BranchTee_mvgd_0_lvgd_1004_171,"[0.9734704486892818, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_172,"[0.9734433075882696, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_173,"[0.9730817022702546, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_174,"[0.9730303521189071, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_175,"[0.9727026291601008, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_176,"[0.9726754666335962, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_177,"[0.9723332325645957, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_178,"[0.9722818428813906, 0.9999999999998966]" +BranchTee_mvgd_0_lvgd_1004_179,"[0.9719735160596388, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_180,"[0.9719463331563825, 0.9999999999998967]" +BranchTee_mvgd_0_lvgd_1004_181,"[0.9716234826792162, 0.9999999999998972]" +BranchTee_mvgd_0_lvgd_1004_182,"[0.9715720554529456, 0.9999999999998972]" +BranchTee_mvgd_0_lvgd_1004_183,"[0.9712831358280835, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_184,"[0.9712559336023548, 0.9999999999998976]" +BranchTee_mvgd_0_lvgd_1004_185,"[0.9709524783677126, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_186,"[0.9709010155973874, 0.9999999999998982]" +BranchTee_mvgd_0_lvgd_1004_187,"[0.9706315135309584, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_188,"[0.9706042930423031, 0.9999999999998987]" +BranchTee_mvgd_0_lvgd_1004_189,"[0.9703202440060926, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_190,"[0.9702687477004243, 0.9999999999998994]" +BranchTee_mvgd_0_lvgd_1004_191,"[0.970018672853351, 0.9999999999999001]" +BranchTee_mvgd_0_lvgd_1004_192,"[0.9699914351663043, 0.9999999999999001]" +BranchTee_mvgd_0_lvgd_1004_193,"[0.9697268025871578, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_194,"[0.9696752747640316, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1004_195,"[0.9694446360944498, 0.9999999999999011]" +BranchTee_mvgd_0_lvgd_1004_196,"[0.9694173822782571, 0.9999999999999011]" +BranchTee_mvgd_0_lvgd_1004_197,"[0.9691721757151955, 0.9999999999999016]" +BranchTee_mvgd_0_lvgd_1004_198,"[0.9691206184011396, 0.9999999999999016]" +BranchTee_mvgd_0_lvgd_1004_199,"[0.9689094241623906, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1004_200,"[0.9688821552907251, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1004_201,"[0.9686563836009803, 0.9999999999999026]" +BranchTee_mvgd_0_lvgd_1004_202,"[0.9686047988306252, 0.9999999999999026]" +BranchTee_mvgd_0_lvgd_1004_203,"[0.9684130565694168, 0.9999999999999032]" +BranchTee_mvgd_0_lvgd_1004_204,"[0.9683857737200918, 0.9999999999999032]" +BranchTee_mvgd_0_lvgd_1004_205,"[0.9681794450570937, 0.9999999999999037]" +BranchTee_mvgd_0_lvgd_1004_206,"[0.9681278348726311, 0.9999999999999037]" +BranchTee_mvgd_0_lvgd_1004_207,"[0.9679555514273586, 0.9999999999999043]" +BranchTee_mvgd_0_lvgd_1004_208,"[0.96792825568204, 0.9999999999999043]" +BranchTee_mvgd_0_lvgd_1004_209,"[0.9677413774935646, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_210,"[0.9676897439441958, 0.9999999999999047]" +BranchTee_mvgd_0_lvgd_1004_211,"[0.9675369254434314, 0.9999999999999053]" +BranchTee_mvgd_0_lvgd_1004_212,"[0.9675096178873446, 0.9999999999999053]" +BranchTee_mvgd_0_lvgd_1004_213,"[0.9673421969138236, 0.9999999999999061]" +BranchTee_mvgd_0_lvgd_1004_214,"[0.9672905420552066, 0.9999999999999061]" +BranchTee_mvgd_0_lvgd_1004_215,"[0.9671571939163507, 0.9999999999999069]" +BranchTee_mvgd_0_lvgd_1004_216,"[0.9671298756379877, 0.9999999999999069]" +BranchTee_mvgd_0_lvgd_1004_217,"[0.9669819179109818, 0.9999999999999075]" +BranchTee_mvgd_0_lvgd_1004_218,"[0.9669302438046712, 0.9999999999999075]" +BranchTee_mvgd_0_lvgd_1004_219,"[0.9668163707327746, 0.9999999999999086]" +BranchTee_mvgd_0_lvgd_1004_220,"[0.9667890428235965, 0.9999999999999086]" +BranchTee_mvgd_0_lvgd_1004_221,"[0.9666605536644363, 0.9999999999999094]" +BranchTee_mvgd_0_lvgd_1004_222,"[0.9666088623773216, 0.9999999999999094]" +BranchTee_mvgd_0_lvgd_1004_223,"[0.966514468364071, 0.9999999999999101]" +BranchTee_mvgd_0_lvgd_1004_224,"[0.9664871319182096, 0.9999999999999101]" +BranchTee_mvgd_0_lvgd_1004_225,"[0.966378115936799, 0.9999999999999108]" +BranchTee_mvgd_0_lvgd_1004_226,"[0.9663264095405372, 0.9999999999999108]" +BranchTee_mvgd_0_lvgd_1004_227,"[0.9662514978634114, 0.9999999999999115]" +BranchTee_mvgd_0_lvgd_1004_228,"[0.9662241539773688, 0.9999999999999115]" +BranchTee_mvgd_0_lvgd_1004_229,"[0.9661346150711563, 0.999999999999912]" +BranchTee_mvgd_0_lvgd_1004_230,"[0.9660828956416021, 0.999999999999912]" +BranchTee_mvgd_0_lvgd_1004_231,"[0.9660274688631922, 0.9999999999999124]" +BranchTee_mvgd_0_lvgd_1004_232,"[0.9660001186355383, 0.9999999999999124]" +BranchTee_mvgd_0_lvgd_1004_233,"[0.9659300599886528, 0.9999999999999128]" +BranchTee_mvgd_0_lvgd_1004_234,"[0.9658783296052851, 0.9999999999999128]" +BranchTee_mvgd_0_lvgd_1004_235,"[0.9658423895727853, 0.9999999999999132]" +BranchTee_mvgd_0_lvgd_1004_236,"[0.965815034103854, 0.9999999999999132]" +BranchTee_mvgd_0_lvgd_1004_237,"[0.9657644581864082, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_238,"[0.9657127189317546, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_239,"[0.9656962667766211, 0.9999999999999135]" +BranchTee_mvgd_0_lvgd_1004_240,"[0.9656689071682055, 0.9999999999999135]" +BranchTee_mvgd_0_lvgd_1004_241,"[0.965637815735767, 0.9999999999999136]" +BranchTee_mvgd_0_lvgd_1004_242,"[0.9655860696948257, 0.9999999999999136]" +BranchTee_mvgd_0_lvgd_1004_243,"[0.9655891058326029, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_244,"[0.9655617431876495, 0.9999999999999134]" +BranchTee_mvgd_0_lvgd_1004_245,"[0.9655501372808785, 0.9999999999999133]" +BranchTee_mvgd_0_lvgd_1004_246,"[0.9654983865405389, 0.9999999999999133]" +BranchTee_mvgd_0_lvgd_1004_247,"[0.9655209106708548, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_248,"[0.9654935460931561, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_249,"[0.9655014260376111, 0.999999999999913]" +BranchTee_mvgd_0_lvgd_1004_250,"[0.9654496726860727, 0.999999999999913]" +BranchTee_mvgd_0_lvgd_1004_251,"[0.9654916837928019, 0.9999999999999131]" +BranchTee_mvgd_0_lvgd_1004_252,"[0.9654643183866896, 0.9999999999999131]" +BusBar_mvgd_0_lvgd_1005_LV,"[0.9690212216955363, 0.9999999999999873]" +BranchTee_mvgd_0_lvgd_1005_1,"[0.9082520216523974, 0.9999999999999886]" +BranchTee_mvgd_0_lvgd_1005_2,"[0.8991379041046156, 0.9999999999999886]" +BranchTee_mvgd_0_lvgd_1005_3,"[0.9082520216523975, 0.9999999999999886]" +BranchTee_mvgd_0_lvgd_1005_4,"[0.8991379041046157, 0.9999999999999886]" +BranchTee_mvgd_0_lvgd_1005_5,"[0.9671195733417272, 0.9999999999999872]" +BranchTee_mvgd_0_lvgd_1005_6,"[0.9619186962874274, 0.9999999999999872]" +BranchTee_mvgd_0_lvgd_1005_7,"[0.968898682190631, 0.9999999999999873]" +BranchTee_mvgd_0_lvgd_1005_8,"[0.9688480637147902, 0.9999999999999873]" +BranchTee_mvgd_0_lvgd_1005_9,"[0.9678933008165125, 0.9999999999999856]" +BranchTee_mvgd_0_lvgd_1005_10,"[0.9678426297561619, 0.9999999999999856]" +BranchTee_mvgd_0_lvgd_1005_11,"[0.9667834752397071, 0.9999999999999838]" +BranchTee_mvgd_0_lvgd_1005_12,"[0.9666875332286695, 0.9999999999999838]" +BranchTee_mvgd_0_lvgd_1005_13,"[0.965691764822531, 0.9999999999999822]" +BranchTee_mvgd_0_lvgd_1005_14,"[0.9656409782326933, 0.9999999999999822]" +BranchTee_mvgd_0_lvgd_1005_15,"[0.9646181875476079, 0.9999999999999809]" +BranchTee_mvgd_0_lvgd_1005_16,"[0.9645220301313079, 0.9999999999999809]" +BranchTee_mvgd_0_lvgd_1005_17,"[0.9635627627246697, 0.9999999999999793]" +BranchTee_mvgd_0_lvgd_1005_18,"[0.9635118639094951, 0.9999999999999793]" +BranchTee_mvgd_0_lvgd_1005_19,"[0.9625255077738969, 0.9999999999999777]" +BranchTee_mvgd_0_lvgd_1005_20,"[0.9624291412542328, 0.9999999999999777]" +BranchTee_mvgd_0_lvgd_1005_21,"[0.9615064414493193, 0.9999999999999759]" +BranchTee_mvgd_0_lvgd_1005_22,"[0.9614554337681068, 0.9999999999999759]" +BranchTee_mvgd_0_lvgd_1005_23,"[0.9605055806010158, 0.9999999999999741]" +BranchTee_mvgd_0_lvgd_1005_24,"[0.9604090113830726, 0.9999999999999741]" +BranchTee_mvgd_0_lvgd_1005_25,"[0.9595229434194795, 0.9999999999999721]" +BranchTee_mvgd_0_lvgd_1005_26,"[0.9594718302854597, 0.9999999999999721]" +BranchTee_mvgd_0_lvgd_1005_27,"[0.9585585461772336, 0.9999999999999702]" +BranchTee_mvgd_0_lvgd_1005_28,"[0.9584617807669169, 0.9999999999999702]" +BranchTee_mvgd_0_lvgd_1005_29,"[0.9576124064935977, 0.9999999999999684]" +BranchTee_mvgd_0_lvgd_1005_30,"[0.9575611913726487, 0.9999999999999684]" +BranchTee_mvgd_0_lvgd_1005_31,"[0.9566845400562928, 0.9999999999999665]" +BranchTee_mvgd_0_lvgd_1005_32,"[0.9565875850578421, 0.9999999999999665]" +BranchTee_mvgd_0_lvgd_1005_33,"[0.9557749639060321, 0.9999999999999646]" +BranchTee_mvgd_0_lvgd_1005_34,"[0.9557236503153336, 0.9999999999999646]" +BranchTee_mvgd_0_lvgd_1005_35,"[0.954883693138706, 0.9999999999999627]" +BranchTee_mvgd_0_lvgd_1005_36,"[0.9547865552520858, 0.9999999999999627]" +BranchTee_mvgd_0_lvgd_1005_37,"[0.9540107442092007, 0.9999999999999608]" +BranchTee_mvgd_0_lvgd_1005_38,"[0.9539593357158228, 0.9999999999999608]" +BranchTee_mvgd_0_lvgd_1005_39,"[0.953156131614771, 0.9999999999999589]" +BranchTee_mvgd_0_lvgd_1005_40,"[0.9530588176329441, 0.9999999999999589]" +BranchTee_mvgd_0_lvgd_1005_41,"[0.9523198712174739, 0.9999999999999574]" +BranchTee_mvgd_0_lvgd_1005_42,"[0.9522683714369053, 0.9999999999999574]" +BranchTee_mvgd_0_lvgd_1005_43,"[0.9515019769093549, 0.9999999999999558]" +BranchTee_mvgd_0_lvgd_1005_44,"[0.9514044937154399, 0.9999999999999558]" +BranchTee_mvgd_0_lvgd_1005_45,"[0.9507024639528654, 0.999999999999954]" +BranchTee_mvgd_0_lvgd_1005_46,"[0.9506508765474794, 0.999999999999954]" +BranchTee_mvgd_0_lvgd_1005_47,"[0.9499213456285055, 0.9999999999999523]" +BranchTee_mvgd_0_lvgd_1005_48,"[0.9498237001928188, 0.9999999999999523]" +BranchTee_mvgd_0_lvgd_1005_49,"[0.9491586365925776, 0.9999999999999506]" +BranchTee_mvgd_0_lvgd_1005_50,"[0.9491069652700392, 0.9999999999999506]" +BranchTee_mvgd_0_lvgd_1005_51,"[0.948414349507944, 0.9999999999999488]" +BranchTee_mvgd_0_lvgd_1005_52,"[0.948316548884931, 0.9999999999999488]" +BranchTee_mvgd_0_lvgd_1005_53,"[0.9476884984184534, 0.9999999999999473]" +BranchTee_mvgd_0_lvgd_1005_54,"[0.9476367469300683, 0.9999999999999473]" +BranchTee_mvgd_0_lvgd_1005_55,"[0.9469810953634893, 0.9999999999999457]" +BranchTee_mvgd_0_lvgd_1005_56,"[0.9468831466885469, 0.9999999999999457]" +BranchTee_mvgd_0_lvgd_1005_57,"[0.9462921537683878, 0.9999999999999444]" +BranchTee_mvgd_0_lvgd_1005_58,"[0.946240325907394, 0.9999999999999444]" +BranchTee_mvgd_0_lvgd_1005_59,"[0.9456216850434677, 0.9999999999999433]" +BranchTee_mvgd_0_lvgd_1005_60,"[0.9455235955296615, 0.9999999999999433]" +BranchTee_mvgd_0_lvgd_1005_61,"[0.9449697019897451, 0.9999999999999424]" +BranchTee_mvgd_0_lvgd_1005_62,"[0.9449178015895505, 0.9999999999999424]" +BranchTee_mvgd_0_lvgd_1005_63,"[0.9443362153831502, 0.9999999999999412]" +BranchTee_mvgd_0_lvgd_1005_64,"[0.9442379923178295, 0.9999999999999412]" +BranchTee_mvgd_0_lvgd_1005_65,"[0.9437212373948303, 0.9999999999999402]" +BranchTee_mvgd_0_lvgd_1005_66,"[0.9436692683271972, 0.9999999999999402]" +BranchTee_mvgd_0_lvgd_1005_67,"[0.9431247781612708, 0.9999999999999388]" +BranchTee_mvgd_0_lvgd_1005_68,"[0.943026428902585, 0.9999999999999388]" +BranchTee_mvgd_0_lvgd_1005_69,"[0.9425468492184632, 0.9999999999999375]" +BranchTee_mvgd_0_lvgd_1005_70,"[0.9424948153916411, 0.9999999999999375]" +BranchTee_mvgd_0_lvgd_1005_71,"[0.9419874600586648, 0.9999999999999362]" +BranchTee_mvgd_0_lvgd_1005_72,"[0.9418889920319861, 0.9999999999999362]" +BranchTee_mvgd_0_lvgd_1005_73,"[0.9414466215776941, 0.9999999999999346]" +BranchTee_mvgd_0_lvgd_1005_74,"[0.9413945269345049, 0.9999999999999346]" +BranchTee_mvgd_0_lvgd_1005_75,"[0.9409243426190754, 0.9999999999999334]" +BranchTee_mvgd_0_lvgd_1005_76,"[0.9408257633133311, 0.9999999999999334]" +BranchTee_mvgd_0_lvgd_1005_77,"[0.94042063343371, 0.9999999999999323]" +BranchTee_mvgd_0_lvgd_1005_78,"[0.9403684819495852, 0.9999999999999323]" +BranchTee_mvgd_0_lvgd_1005_79,"[0.9399355022121652, 0.999999999999931]" +BranchTee_mvgd_0_lvgd_1005_80,"[0.9398368191760829, 0.999999999999931]" +BranchTee_mvgd_0_lvgd_1005_81,"[0.9394689585559608, 0.9999999999999296]" +BranchTee_mvgd_0_lvgd_1005_82,"[0.9394167542369363, 0.9999999999999296]" +BranchTee_mvgd_0_lvgd_1005_83,"[0.9390210099987718, 0.9999999999999283]" +BranchTee_mvgd_0_lvgd_1005_84,"[0.9389222308370443, 0.9999999999999283]" +BranchTee_mvgd_0_lvgd_1005_85,"[0.9385916654885541, 0.9999999999999271]" +BranchTee_mvgd_0_lvgd_1005_86,"[0.9385394123692207, 0.9999999999999271]" +BranchTee_mvgd_0_lvgd_1005_87,"[0.938180931898444, 0.9999999999999258]" +BranchTee_mvgd_0_lvgd_1005_88,"[0.9380820642678175, 0.9999999999999258]" +BranchTee_mvgd_0_lvgd_1005_89,"[0.9377888175189406, 0.9999999999999246]" +BranchTee_mvgd_0_lvgd_1005_90,"[0.9377365196603575, 0.9999999999999246]" +BranchTee_mvgd_0_lvgd_1005_91,"[0.937415328559292, 0.9999999999999233]" +BranchTee_mvgd_0_lvgd_1005_92,"[0.9373163801645823, 0.9999999999999233]" +BranchTee_mvgd_0_lvgd_1005_93,"[0.9370604726489373, 0.999999999999922]" +BranchTee_mvgd_0_lvgd_1005_94,"[0.9370081341365087, 0.999999999999922]" +BranchTee_mvgd_0_lvgd_1005_95,"[0.9367242553301837, 0.9999999999999206]" +BranchTee_mvgd_0_lvgd_1005_96,"[0.9366252339202261, 0.9999999999999206]" +BranchTee_mvgd_0_lvgd_1005_97,"[0.9364066835681047, 0.9999999999999195]" +BranchTee_mvgd_0_lvgd_1005_98,"[0.9363543085094214, 0.9999999999999195]" +BranchTee_mvgd_0_lvgd_1005_99,"[0.9361077622353167, 0.9999999999999182]" +BranchTee_mvgd_0_lvgd_1005_100,"[0.9360086755988551, 0.9999999999999182]" +BranchTee_mvgd_0_lvgd_1005_101,"[0.9358274976295192, 0.9999999999999172]" +BranchTee_mvgd_0_lvgd_1005_102,"[0.9357750901521704, 0.9999999999999172]" +BranchTee_mvgd_0_lvgd_1005_103,"[0.9355658939511907, 0.9999999999999161]" +BranchTee_mvgd_0_lvgd_1005_104,"[0.9354667499127097, 0.9999999999999161]" +BranchTee_mvgd_0_lvgd_1005_105,"[0.9353229568279526, 0.9999999999999152]" +BranchTee_mvgd_0_lvgd_1005_106,"[0.9352705210773101, 0.9999999999999152]" +BranchTee_mvgd_0_lvgd_1005_107,"[0.9350986897860064, 0.9999999999999144]" +BranchTee_mvgd_0_lvgd_1005_108,"[0.934999496201515, 0.9999999999999144]" +BranchTee_mvgd_0_lvgd_1005_109,"[0.9348930977804945, 0.999999999999914]" +BranchTee_mvgd_0_lvgd_1005_110,"[0.9348406379174705, 0.999999999999914]" +BranchTee_mvgd_0_lvgd_1005_111,"[0.934706183661511, 0.999999999999914]" +BranchTee_mvgd_0_lvgd_1005_112,"[0.9346069484142814, 0.999999999999914]" +BranchTee_mvgd_0_lvgd_1005_113,"[0.9345379517096267, 0.9999999999999142]" +BranchTee_mvgd_0_lvgd_1005_114,"[0.9344854719084118, 0.9999999999999142]" +BranchTee_mvgd_0_lvgd_1005_115,"[0.9343884040973113, 0.9999999999999146]" +BranchTee_mvgd_0_lvgd_1005_116,"[0.9342891350935787, 0.9999999999999146]" +BranchTee_mvgd_0_lvgd_1005_117,"[0.9342575444287793, 0.9999999999999151]" +BranchTee_mvgd_0_lvgd_1005_118,"[0.9342050488745595, 0.9999999999999151]" +BranchTee_mvgd_0_lvgd_1005_119,"[0.9341453741976697, 0.9999999999999154]" +BranchTee_mvgd_0_lvgd_1005_120,"[0.9340460793623006, 0.9999999999999154]" +BranchTee_mvgd_0_lvgd_1005_121,"[0.9340518963303706, 0.999999999999916]" +BranchTee_mvgd_0_lvgd_1005_122,"[0.9339993892170301, 0.999999999999916]" +BranchTee_mvgd_0_lvgd_1005_123,"[0.9339771116407982, 0.9999999999999165]" +BranchTee_mvgd_0_lvgd_1005_124,"[0.9338777989129317, 0.9999999999999165]" +BranchTee_mvgd_0_lvgd_1005_125,"[0.9339210223763554, 0.9999999999999171]" +BranchTee_mvgd_0_lvgd_1005_126,"[0.9338685079041671, 0.9999999999999171]" +BranchTee_mvgd_0_lvgd_1005_127,"[0.9338836286706589, 0.9999999999999173]" +BranchTee_mvgd_0_lvgd_1005_128,"[0.9337843059993278, 0.9999999999999173]" +BranchTee_mvgd_0_lvgd_1005_129,"[0.9338649320912822, 0.9999999999999174]" +BranchTee_mvgd_0_lvgd_1005_130,"[0.9338124144645893, 0.9999999999999174]" +BranchTee_mvgd_0_lvgd_1005_131,"[0.9682605066644289, 0.999999999999982]" +BranchTee_mvgd_0_lvgd_1005_132,"[0.9682098548227231, 0.999999999999982]" +BranchTee_mvgd_0_lvgd_1005_133,"[0.9675106369075256, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1005_134,"[0.9674147670190213, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1005_135,"[0.9667716205986739, 0.9999999999999719]" +BranchTee_mvgd_0_lvgd_1005_136,"[0.9667208907419291, 0.9999999999999719]" +BranchTee_mvgd_0_lvgd_1005_137,"[0.9660434648526266, 0.9999999999999668]" +BranchTee_mvgd_0_lvgd_1005_138,"[0.96594744933316, 0.9999999999999668]" +BranchTee_mvgd_0_lvgd_1005_139,"[0.9653261776415071, 0.9999999999999617]" +BranchTee_mvgd_0_lvgd_1005_140,"[0.9652753718158061, 0.9999999999999617]" +BranchTee_mvgd_0_lvgd_1005_141,"[0.9646197658730081, 0.9999999999999567]" +BranchTee_mvgd_0_lvgd_1005_142,"[0.9645236086140645, 0.9999999999999567]" +BranchTee_mvgd_0_lvgd_1005_143,"[0.9639242373155559, 0.9999999999999517]" +BranchTee_mvgd_0_lvgd_1005_144,"[0.9638733575896029, 0.9999999999999517]" +BranchTee_mvgd_0_lvgd_1005_145,"[0.9632395986679372, 0.9999999999999468]" +BranchTee_mvgd_0_lvgd_1005_146,"[0.9631433036033288, 0.9999999999999468]" +BranchTee_mvgd_0_lvgd_1005_147,"[0.962565857492952, 0.9999999999999423]" +BranchTee_mvgd_0_lvgd_1005_148,"[0.9625149059575762, 0.9999999999999423]" +BranchTee_mvgd_0_lvgd_1005_149,"[0.9619030202786811, 0.9999999999999378]" +BranchTee_mvgd_0_lvgd_1005_150,"[0.9618065913835928, 0.9999999999999378]" +BranchTee_mvgd_0_lvgd_1005_151,"[0.9612510943804162, 0.9999999999999335]" +BranchTee_mvgd_0_lvgd_1005_152,"[0.9612000731480598, 0.9999999999999335]" +BranchTee_mvgd_0_lvgd_1005_153,"[0.9606100860737811, 0.9999999999999288]" +BranchTee_mvgd_0_lvgd_1005_154,"[0.9605135273637854, 0.9999999999999288]" +BranchTee_mvgd_0_lvgd_1005_155,"[0.9599800025047206, 0.9999999999999246]" +BranchTee_mvgd_0_lvgd_1005_156,"[0.9599289137089103, 0.9999999999999246]" +BranchTee_mvgd_0_lvgd_1005_157,"[0.9593608497346999, 0.9999999999999205]" +BranchTee_mvgd_0_lvgd_1005_158,"[0.9592641652647435, 0.9999999999999205]" +BranchTee_mvgd_0_lvgd_1005_159,"[0.9587526346985291, 0.9999999999999165]" +BranchTee_mvgd_0_lvgd_1005_160,"[0.9587014804933314, 0.9999999999999165]" +BranchTee_mvgd_0_lvgd_1005_161,"[0.9581553632418628, 0.9999999999999127]" +BranchTee_mvgd_0_lvgd_1005_162,"[0.9580585571052215, 0.9999999999999127]" +BranchTee_mvgd_0_lvgd_1005_163,"[0.9575690420866342, 0.9999999999999091]" +BranchTee_mvgd_0_lvgd_1005_164,"[0.9575178246460966, 0.9999999999999091]" +BranchTee_mvgd_0_lvgd_1005_165,"[0.9569936768610876, 0.9999999999999056]" +BranchTee_mvgd_0_lvgd_1005_166,"[0.9568967531882937, 0.9999999999999056]" +BranchTee_mvgd_0_lvgd_1005_167,"[0.9564292740725898, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1005_168,"[0.9563779955901652, 0.9999999999999021]" +BranchTee_mvgd_0_lvgd_1005_169,"[0.9558758391304265, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1005_170,"[0.9557788020881667, 0.9999999999998983]" +BranchTee_mvgd_0_lvgd_1005_171,"[0.9553333783257565, 0.9999999999998945]" +BranchTee_mvgd_0_lvgd_1005_172,"[0.9552820410137133, 0.9999999999998945]" +BranchTee_mvgd_0_lvgd_1005_173,"[0.9548018968474125, 0.9999999999998912]" +BranchTee_mvgd_0_lvgd_1005_174,"[0.954704750637399, 0.9999999999998912]" +BranchTee_mvgd_0_lvgd_1005_175,"[0.9542814007687577, 0.9999999999998879]" +BranchTee_mvgd_0_lvgd_1005_176,"[0.9542300068575764, 0.9999999999998879]" +BranchTee_mvgd_0_lvgd_1005_177,"[0.95377189505673, 0.9999999999998845]" +BranchTee_mvgd_0_lvgd_1005_178,"[0.9536746439145438, 0.9999999999998845]" +BranchTee_mvgd_0_lvgd_1005_179,"[0.9532733855653611, 0.9999999999998817]" +BranchTee_mvgd_0_lvgd_1005_180,"[0.9532219373031153, 0.9999999999998817]" +BranchTee_mvgd_0_lvgd_1005_181,"[0.9527858770383089, 0.9999999999998789]" +BranchTee_mvgd_0_lvgd_1005_182,"[0.9526885252322166, 0.9999999999998789]" +BranchTee_mvgd_0_lvgd_1005_183,"[0.9523093751087909, 0.9999999999998767]" +BranchTee_mvgd_0_lvgd_1005_184,"[0.9522578747605146, 0.9999999999998767]" +BranchTee_mvgd_0_lvgd_1005_185,"[0.9518438842958546, 0.9999999999998745]" +BranchTee_mvgd_0_lvgd_1005_186,"[0.9517464361256008, 0.9999999999998745]" +BranchTee_mvgd_0_lvgd_1005_187,"[0.9513894100104759, 0.9999999999998722]" +BranchTee_mvgd_0_lvgd_1005_188,"[0.9513378598575196, 0.9999999999998722]" +BranchTee_mvgd_0_lvgd_1005_189,"[0.9509459565458191, 0.9999999999998702]" +BranchTee_mvgd_0_lvgd_1005_190,"[0.9508484163413918, 0.9999999999998702]" +BranchTee_mvgd_0_lvgd_1005_191,"[0.9505135290892447, 0.9999999999998682]" +BranchTee_mvgd_0_lvgd_1005_192,"[0.9504619314286158, 0.9999999999998682]" +BranchTee_mvgd_0_lvgd_1005_193,"[0.9500921317068182, 0.9999999999998666]" +BranchTee_mvgd_0_lvgd_1005_194,"[0.9499945038271932, 0.9999999999998666]" +BranchTee_mvgd_0_lvgd_1005_195,"[0.9496817693609687, 0.9999999999998656]" +BranchTee_mvgd_0_lvgd_1005_196,"[0.9496301265046612, 0.9999999999998656]" +BranchTee_mvgd_0_lvgd_1005_197,"[0.9492824458895048, 0.9999999999998646]" +BranchTee_mvgd_0_lvgd_1005_198,"[0.9491847347213648, 0.9999999999998646]" +BranchTee_mvgd_0_lvgd_1005_199,"[0.9488941660286646, 0.9999999999998637]" +BranchTee_mvgd_0_lvgd_1005_200,"[0.9488424803029761, 0.9999999999998637]" +BranchTee_mvgd_0_lvgd_1005_201,"[0.9485169333869011, 0.999999999999863]" +BranchTee_mvgd_0_lvgd_1005_202,"[0.9484191433433329, 0.999999999999863]" +BranchTee_mvgd_0_lvgd_1005_203,"[0.9481507524730595, 0.9999999999998626]" +BranchTee_mvgd_0_lvgd_1005_204,"[0.9480990262178978, 0.9999999999998626]" +BranchTee_mvgd_0_lvgd_1005_205,"[0.9477956266651979, 0.9999999999998623]" +BranchTee_mvgd_0_lvgd_1005_206,"[0.9476977621843699, 0.9999999999998623]" +BranchTee_mvgd_0_lvgd_1005_207,"[0.9474515602436252, 0.9999999999998621]" +BranchTee_mvgd_0_lvgd_1005_208,"[0.9473997958118024, 0.9999999999998621]" +BranchTee_mvgd_0_lvgd_1005_209,"[0.9471185563550258, 0.9999999999998618]" +BranchTee_mvgd_0_lvgd_1005_210,"[0.947020621898843, 0.9999999999998618]" +BranchTee_mvgd_0_lvgd_1005_211,"[0.9467966190500879, 0.9999999999998616]" +BranchTee_mvgd_0_lvgd_1005_212,"[0.9467448188066053, 0.9999999999998616]" +BranchTee_mvgd_0_lvgd_1005_213,"[0.9464857512432033, 0.9999999999998613]" +BranchTee_mvgd_0_lvgd_1005_214,"[0.9463877512959453, 0.9999999999998613]" +BranchTee_mvgd_0_lvgd_1005_215,"[0.9461859567544156, 0.9999999999998611]" +BranchTee_mvgd_0_lvgd_1005_216,"[0.9461341230757382, 0.9999999999998611]" +BranchTee_mvgd_0_lvgd_1005_217,"[0.9458972382649672, 0.9999999999998606]" +BranchTee_mvgd_0_lvgd_1005_218,"[0.9457991773319055, 0.9999999999998606]" +BranchTee_mvgd_0_lvgd_1005_219,"[0.9456195993632917, 0.9999999999998598]" +BranchTee_mvgd_0_lvgd_1005_220,"[0.9455677346366134, 0.9999999999998598]" +BranchTee_mvgd_0_lvgd_1005_221,"[0.9453530424966881, 0.9999999999998588]" +BranchTee_mvgd_0_lvgd_1005_222,"[0.94525492510269, 0.9999999999998588]" +BranchTee_mvgd_0_lvgd_1005_223,"[0.9450975710210774, 0.999999999999858]" +BranchTee_mvgd_0_lvgd_1005_224,"[0.9450456776435772, 0.999999999999858]" +BranchTee_mvgd_0_lvgd_1005_225,"[0.9448531871490822, 0.9999999999998572]" +BranchTee_mvgd_0_lvgd_1005_226,"[0.944755017837194, 0.9999999999998572]" +BranchTee_mvgd_0_lvgd_1005_227,"[0.9446198940032695, 0.9999999999998564]" +BranchTee_mvgd_0_lvgd_1005_228,"[0.9445679743813603, 0.9999999999998564]" +BranchTee_mvgd_0_lvgd_1005_229,"[0.9443976935609155, 0.9999999999998559]" +BranchTee_mvgd_0_lvgd_1005_230,"[0.9442994768909349, 0.9999999999998559]" +BranchTee_mvgd_0_lvgd_1005_231,"[0.9441865887104538, 0.9999999999998556]" +BranchTee_mvgd_0_lvgd_1005_232,"[0.9441346452590228, 0.9999999999998556]" +BranchTee_mvgd_0_lvgd_1005_233,"[0.9439865811932077, 0.9999999999998551]" +BranchTee_mvgd_0_lvgd_1005_234,"[0.943888321740239, 0.9999999999998551]" +BranchTee_mvgd_0_lvgd_1005_235,"[0.9437976736627608, 0.9999999999998549]" +BranchTee_mvgd_0_lvgd_1005_236,"[0.9437457088044025, 0.9999999999998549]" +BranchTee_mvgd_0_lvgd_1005_237,"[0.9436198676239409, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_238,"[0.9435215699769408, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_239,"[0.943453165494828, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_240,"[0.9434011816590729, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_241,"[0.9432975685432756, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_242,"[0.9431992373035847, 0.9999999999998546]" +BranchTee_mvgd_0_lvgd_1005_243,"[0.9431530789512687, 0.9999999999998544]" +BranchTee_mvgd_0_lvgd_1005_244,"[0.9431010785738037, 0.9999999999998544]" +BranchTee_mvgd_0_lvgd_1005_245,"[0.9430196977492724, 0.9999999999998547]" +BranchTee_mvgd_0_lvgd_1005_246,"[0.9429213375291381, 0.9999999999998547]" +BranchTee_mvgd_0_lvgd_1005_247,"[0.9428974268826499, 0.9999999999998547]" +BranchTee_mvgd_0_lvgd_1005_248,"[0.942845412404535, 0.9999999999998547]" +BranchTee_mvgd_0_lvgd_1005_249,"[0.9427862671441284, 0.9999999999998549]" +BranchTee_mvgd_0_lvgd_1005_250,"[0.9426878825652184, 0.9999999999998549]" +BranchTee_mvgd_0_lvgd_1005_251,"[0.9426862202419874, 0.9999999999998552]" +BranchTee_mvgd_0_lvgd_1005_252,"[0.9426341941088683, 0.9999999999998552]" +BranchTee_mvgd_0_lvgd_1005_253,"[0.9425972867309309, 0.9999999999998553]" +BranchTee_mvgd_0_lvgd_1005_254,"[0.9424988824228383, 0.9999999999998553]" +BranchTee_mvgd_0_lvgd_1005_255,"[0.9425194680817554, 0.9999999999998558]" +BranchTee_mvgd_0_lvgd_1005_256,"[0.9424674327430699, 0.9999999999998558]" +BranchTee_mvgd_0_lvgd_1005_257,"[0.9424527646109213, 0.9999999999998561]" +BranchTee_mvgd_0_lvgd_1005_258,"[0.9423543452096632, 0.9999999999998561]" +BranchTee_mvgd_0_lvgd_1005_259,"[0.9423971775514103, 0.9999999999998568]" +BranchTee_mvgd_0_lvgd_1005_260,"[0.942345135459596, 0.9999999999998568]" +BranchTee_mvgd_0_lvgd_1005_261,"[0.9423527069812845, 0.9999999999998576]" +BranchTee_mvgd_0_lvgd_1005_262,"[0.9422542771277963, 0.9999999999998576]" +BranchTee_mvgd_0_lvgd_1005_263,"[0.9423193538954397, 0.9999999999998581]" +BranchTee_mvgd_0_lvgd_1005_264,"[0.9422673075051335, 0.9999999999998581]" +BranchTee_mvgd_0_lvgd_1005_265,"[0.942297118133451, 0.9999999999998586]" +BranchTee_mvgd_0_lvgd_1005_266,"[0.9421986824720756, 0.9999999999998586]" +BranchTee_mvgd_0_lvgd_1005_267,"[0.9422860004519253, 0.9999999999998588]" +BranchTee_mvgd_0_lvgd_1005_268,"[0.9422339522191665, 0.9999999999998588]" +BusBar_mvgd_0_lvgd_1006_LV,"[0.9648004719326597, 0.9999999999997776]" +BranchTee_mvgd_0_lvgd_1006_1,"[0.9643123962663543, 0.9999999999997754]" +BranchTee_mvgd_0_lvgd_1006_2,"[0.9642727538626266, 0.9999999999997754]" +BranchTee_mvgd_0_lvgd_1006_3,"[0.9638567908077786, 0.9999999999997735]" +BranchTee_mvgd_0_lvgd_1006_4,"[0.9637817821724662, 0.9999999999997735]" +BranchTee_mvgd_0_lvgd_1006_5,"[0.9634336706470217, 0.9999999999997715]" +BranchTee_mvgd_0_lvgd_1006_6,"[0.9633939920833935, 0.9999999999997715]" +BranchTee_mvgd_0_lvgd_1006_7,"[0.9630430476332372, 0.9999999999997694]" +BranchTee_mvgd_0_lvgd_1006_8,"[0.9629679756078423, 0.9999999999997694]" +BranchTee_mvgd_0_lvgd_1006_9,"[0.9626849348850822, 0.9999999999997674]" +BranchTee_mvgd_0_lvgd_1006_10,"[0.9626452254585934, 0.9999999999997674]" +BranchTee_mvgd_0_lvgd_1006_11,"[0.9623593422696824, 0.9999999999997657]" +BranchTee_mvgd_0_lvgd_1006_12,"[0.9622842169011757, 0.9999999999997657]" +BranchTee_mvgd_0_lvgd_1006_13,"[0.9620662809244471, 0.999999999999764]" +BranchTee_mvgd_0_lvgd_1006_14,"[0.9620265459608157, 0.999999999999764]" +BranchTee_mvgd_0_lvgd_1006_15,"[0.9618057587263233, 0.9999999999997623]" +BranchTee_mvgd_0_lvgd_1006_16,"[0.9617305901113139, 0.9999999999997623]" +BranchTee_mvgd_0_lvgd_1006_17,"[0.961577784823189, 0.9999999999997609]" +BranchTee_mvgd_0_lvgd_1006_18,"[0.9615380296719236, 0.9999999999997609]" +BranchTee_mvgd_0_lvgd_1006_19,"[0.9613823650952089, 0.9999999999997595]" +BranchTee_mvgd_0_lvgd_1006_20,"[0.9613071633706435, 0.9999999999997595]" +BranchTee_mvgd_0_lvgd_1006_21,"[0.9612195066939899, 0.9999999999997585]" +BranchTee_mvgd_0_lvgd_1006_22,"[0.9611797367234454, 0.9999999999997585]" +BranchTee_mvgd_0_lvgd_1006_23,"[0.9610892134978696, 0.9999999999997576]" +BranchTee_mvgd_0_lvgd_1006_24,"[0.961013988831633, 0.9999999999997576]" +BranchTee_mvgd_0_lvgd_1006_25,"[0.960991490657003, 0.9999999999997569]" +BranchTee_mvgd_0_lvgd_1006_26,"[0.9609517112493903, 0.9999999999997569]" +BranchTee_mvgd_0_lvgd_1006_27,"[0.960926340044424, 0.9999999999997566]" +BranchTee_mvgd_0_lvgd_1006_28,"[0.9608511026258677, 0.9999999999997566]" +BranchTee_mvgd_0_lvgd_1006_29,"[0.9608937648052217, 0.9999999999997565]" +BranchTee_mvgd_0_lvgd_1006_30,"[0.9608539813515856, 0.9999999999997565]" +BranchTee_mvgd_0_lvgd_1006_31,"[0.9640119014075941, 0.9999999999997726]" +BranchTee_mvgd_0_lvgd_1006_32,"[0.9639722466458047, 0.9999999999997726]" +BranchTee_mvgd_0_lvgd_1006_33,"[0.9632374762066631, 0.9999999999997679]" +BranchTee_mvgd_0_lvgd_1006_34,"[0.9631624193368749, 0.9999999999997679]" +BranchTee_mvgd_0_lvgd_1006_35,"[0.9624772072190603, 0.9999999999997633]" +BranchTee_mvgd_0_lvgd_1006_36,"[0.9624374892215365, 0.9999999999997633]" +BranchTee_mvgd_0_lvgd_1006_37,"[0.9617311041749949, 0.9999999999997593]" +BranchTee_mvgd_0_lvgd_1006_38,"[0.9616559297240915, 0.9999999999997593]" +BranchTee_mvgd_0_lvgd_1006_39,"[0.9609991776118361, 0.9999999999997556]" +BranchTee_mvgd_0_lvgd_1006_40,"[0.9609593985224454, 0.9999999999997556]" +BranchTee_mvgd_0_lvgd_1006_41,"[0.9602814369016391, 0.9999999999997521]" +BranchTee_mvgd_0_lvgd_1006_42,"[0.9602061489473503, 0.9999999999997521]" +BranchTee_mvgd_0_lvgd_1006_43,"[0.9595778922264895, 0.9999999999997488]" +BranchTee_mvgd_0_lvgd_1006_44,"[0.9595380542131381, 0.9999999999997488]" +BranchTee_mvgd_0_lvgd_1006_45,"[0.9588885525970284, 0.9999999999997456]" +BranchTee_mvgd_0_lvgd_1006_46,"[0.9588131552618738, 0.9999999999997456]" +BranchTee_mvgd_0_lvgd_1006_47,"[0.9582134278367035, 0.9999999999997424]" +BranchTee_mvgd_0_lvgd_1006_48,"[0.958173533090611, 0.9999999999997424]" +BranchTee_mvgd_0_lvgd_1006_49,"[0.9575525265915934, 0.9999999999997392]" +BranchTee_mvgd_0_lvgd_1006_50,"[0.9574770240414915, 0.9999999999997392]" +BranchTee_mvgd_0_lvgd_1006_51,"[0.9569058583232637, 0.9999999999997363]" +BranchTee_mvgd_0_lvgd_1006_52,"[0.9568659090582173, 0.9999999999997363]" +BranchTee_mvgd_0_lvgd_1006_53,"[0.9562734313101939, 0.9999999999997335]" +BranchTee_mvgd_0_lvgd_1006_54,"[0.956197827753027, 0.9999999999997335]" +BranchTee_mvgd_0_lvgd_1006_55,"[0.9556552546489331, 0.9999999999997311]" +BranchTee_mvgd_0_lvgd_1006_56,"[0.9556152531005169, 0.9999999999997311]" +BranchTee_mvgd_0_lvgd_1006_57,"[0.9550513362474409, 0.9999999999997287]" +BranchTee_mvgd_0_lvgd_1006_58,"[0.9549756359315787, 0.9999999999997287]" +BranchTee_mvgd_0_lvgd_1006_59,"[0.9544616848342297, 0.9999999999997261]" +BranchTee_mvgd_0_lvgd_1006_60,"[0.9544216332590334, 0.9999999999997261]" +BranchTee_mvgd_0_lvgd_1006_61,"[0.9538863079439358, 0.9999999999997236]" +BranchTee_mvgd_0_lvgd_1006_62,"[0.9538105151567187, 0.9999999999997236]" +BranchTee_mvgd_0_lvgd_1006_63,"[0.9533252139341302, 0.999999999999721]" +BranchTee_mvgd_0_lvgd_1006_64,"[0.9532851146089373, 0.999999999999721]" +BranchTee_mvgd_0_lvgd_1006_65,"[0.9527784099634422, 0.9999999999997182]" +BranchTee_mvgd_0_lvgd_1006_66,"[0.9527025290296234, 0.9999999999997182]" +BranchTee_mvgd_0_lvgd_1006_67,"[0.9522459040157143, 0.9999999999997157]" +BranchTee_mvgd_0_lvgd_1006_68,"[0.9522057592366684, 0.9999999999997157]" +BranchTee_mvgd_0_lvgd_1006_69,"[0.9517277028710076, 0.9999999999997131]" +BranchTee_mvgd_0_lvgd_1006_70,"[0.9516517381511604, 0.9999999999997131]" +BranchTee_mvgd_0_lvgd_1006_71,"[0.9512238141367703, 0.9999999999997107]" +BranchTee_mvgd_0_lvgd_1006_72,"[0.9511836262185224, 0.9999999999997107]" +BranchTee_mvgd_0_lvgd_1006_73,"[0.9507342442120572, 0.9999999999997085]" +BranchTee_mvgd_0_lvgd_1006_74,"[0.9506582001009432, 0.9999999999997085]" +BranchTee_mvgd_0_lvgd_1006_75,"[0.9502590003253776, 0.9999999999997066]" +BranchTee_mvgd_0_lvgd_1006_76,"[0.9502187716002147, 0.9999999999997066]" +BranchTee_mvgd_0_lvgd_1006_77,"[0.9497980884924685, 0.9999999999997047]" +BranchTee_mvgd_0_lvgd_1006_78,"[0.9497219694173705, 0.9999999999997047]" +BranchTee_mvgd_0_lvgd_1006_79,"[0.9493515155604808, 0.9999999999997029]" +BranchTee_mvgd_0_lvgd_1006_80,"[0.9493112483774356, 0.9999999999997029]" +BranchTee_mvgd_0_lvgd_1006_81,"[0.94891928715965, 0.9999999999997012]" +BranchTee_mvgd_0_lvgd_1006_82,"[0.9488430975786727, 0.9999999999997012]" +BranchTee_mvgd_0_lvgd_1006_83,"[0.9485014097534745, 0.9999999999996997]" +BranchTee_mvgd_0_lvgd_1006_84,"[0.9484611064774179, 0.9999999999996997]" +BranchTee_mvgd_0_lvgd_1006_85,"[0.9480978885846333, 0.999999999999698]" +BranchTee_mvgd_0_lvgd_1006_86,"[0.9480216329849708, 0.999999999999698]" +BranchTee_mvgd_0_lvgd_1006_87,"[0.947708729730808, 0.9999999999996964]" +BranchTee_mvgd_0_lvgd_1006_88,"[0.9476683927415256, 0.9999999999996964]" +BranchTee_mvgd_0_lvgd_1006_89,"[0.9473339380451978, 0.9999999999996951]" +BranchTee_mvgd_0_lvgd_1006_90,"[0.9472576209413717, 0.9999999999996951]" +BranchTee_mvgd_0_lvgd_1006_91,"[0.946973519217632, 0.9999999999996938]" +BranchTee_mvgd_0_lvgd_1006_92,"[0.9469331509088843, 0.9999999999996938]" +BranchTee_mvgd_0_lvgd_1006_93,"[0.9466274777100379, 0.9999999999996924]" +BranchTee_mvgd_0_lvgd_1006_94,"[0.9465511036421044, 0.9999999999996924]" +BranchTee_mvgd_0_lvgd_1006_95,"[0.9462958188224885, 0.999999999999691]" +BranchTee_mvgd_0_lvgd_1006_96,"[0.9462554216010569, 0.999999999999691]" +BranchTee_mvgd_0_lvgd_1006_97,"[0.9459785466239843, 0.9999999999996897]" +BranchTee_mvgd_0_lvgd_1006_98,"[0.9459021201557175, 0.9999999999996897]" +BranchTee_mvgd_0_lvgd_1006_99,"[0.9456756660230702, 0.9999999999996882]" +BranchTee_mvgd_0_lvgd_1006_100,"[0.9456352423077886, 0.9999999999996882]" +BranchTee_mvgd_0_lvgd_1006_101,"[0.9453871806942974, 0.9999999999996869]" +BranchTee_mvgd_0_lvgd_1006_102,"[0.9453107064113447, 0.9999999999996869]" +BranchTee_mvgd_0_lvgd_1006_103,"[0.9451130951530463, 0.9999999999996854]" +BranchTee_mvgd_0_lvgd_1006_104,"[0.9450726473738206, 0.9999999999996854]" +BranchTee_mvgd_0_lvgd_1006_105,"[0.9448534126780351, 0.9999999999996841]" +BranchTee_mvgd_0_lvgd_1006_106,"[0.9447768951860515, 0.9999999999996841]" +BranchTee_mvgd_0_lvgd_1006_107,"[0.9446081373899786, 0.9999999999996828]" +BranchTee_mvgd_0_lvgd_1006_108,"[0.9445676679867935, 0.9999999999996828]" +BranchTee_mvgd_0_lvgd_1006_109,"[0.9443772721705144, 0.9999999999996817]" +BranchTee_mvgd_0_lvgd_1006_110,"[0.9443007160932729, 0.9999999999996817]" +BranchTee_mvgd_0_lvgd_1006_111,"[0.9441608207443278, 0.9999999999996808]" +BranchTee_mvgd_0_lvgd_1006_112,"[0.9441203321662436, 0.9999999999996808]" +BranchTee_mvgd_0_lvgd_1006_113,"[0.9439587855948681, 0.9999999999996799]" +BranchTee_mvgd_0_lvgd_1006_114,"[0.9438821955723533, 0.9999999999996799]" +BranchTee_mvgd_0_lvgd_1006_115,"[0.9437711700495643, 0.9999999999996789]" +BranchTee_mvgd_0_lvgd_1006_116,"[0.9437306647537043, 0.9999999999996789]" +BranchTee_mvgd_0_lvgd_1006_117,"[0.943597976192709, 0.9999999999996781]" +BranchTee_mvgd_0_lvgd_1006_118,"[0.9435213568791916, 0.9999999999996781]" +BranchTee_mvgd_0_lvgd_1006_119,"[0.9434392069533885, 0.9999999999996773]" +BranchTee_mvgd_0_lvgd_1006_120,"[0.9433986874039156, 0.9999999999996773]" +BranchTee_mvgd_0_lvgd_1006_121,"[0.94329486401591, 0.9999999999996766]" +BranchTee_mvgd_0_lvgd_1006_122,"[0.9432182200780066, 0.9999999999996766]" +BranchTee_mvgd_0_lvgd_1006_123,"[0.9431649499100699, 0.9999999999996758]" +BranchTee_mvgd_0_lvgd_1006_124,"[0.9431244185771589, 0.9999999999996758]" +BranchTee_mvgd_0_lvgd_1006_125,"[0.9430494659195036, 0.9999999999996751]" +BranchTee_mvgd_0_lvgd_1006_126,"[0.9429728020342224, 0.9999999999996751]" +BranchTee_mvgd_0_lvgd_1006_127,"[0.9429484141739101, 0.9999999999996747]" +BranchTee_mvgd_0_lvgd_1006_128,"[0.9429078735327108, 0.9999999999996747]" +BranchTee_mvgd_0_lvgd_1006_129,"[0.9428617955557084, 0.9999999999996743]" +BranchTee_mvgd_0_lvgd_1006_130,"[0.9427851164084855, 0.9999999999996743]" +BranchTee_mvgd_0_lvgd_1006_131,"[0.9427896117938339, 0.9999999999996739]" +BranchTee_mvgd_0_lvgd_1006_132,"[0.9427490643234298, 0.9999999999996739]" +BranchTee_mvgd_0_lvgd_1006_133,"[0.9427318633690869, 0.9999999999996737]" +BranchTee_mvgd_0_lvgd_1006_134,"[0.9426551736518111, 0.9999999999996737]" +BranchTee_mvgd_0_lvgd_1006_135,"[0.9426885516091156, 0.9999999999996735]" +BranchTee_mvgd_0_lvgd_1006_136,"[0.9426479997914785, 0.9999999999996735]" +BranchTee_mvgd_0_lvgd_1006_137,"[0.9426596765928404, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_138,"[0.942582981001872, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_139,"[0.9426452392462421, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_140,"[0.9426046855651825, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_141,"[0.9640119014075941, 0.9999999999997726]" +BranchTee_mvgd_0_lvgd_1006_142,"[0.9639722466458047, 0.9999999999997726]" +BranchTee_mvgd_0_lvgd_1006_143,"[0.9632374762066631, 0.9999999999997679]" +BranchTee_mvgd_0_lvgd_1006_144,"[0.9631624193368749, 0.9999999999997679]" +BranchTee_mvgd_0_lvgd_1006_145,"[0.9624772072190603, 0.9999999999997633]" +BranchTee_mvgd_0_lvgd_1006_146,"[0.9624374892215365, 0.9999999999997633]" +BranchTee_mvgd_0_lvgd_1006_147,"[0.9617311041749949, 0.9999999999997593]" +BranchTee_mvgd_0_lvgd_1006_148,"[0.9616559297240915, 0.9999999999997593]" +BranchTee_mvgd_0_lvgd_1006_149,"[0.9609991776118361, 0.9999999999997556]" +BranchTee_mvgd_0_lvgd_1006_150,"[0.9609593985224454, 0.9999999999997556]" +BranchTee_mvgd_0_lvgd_1006_151,"[0.9602814369016391, 0.9999999999997521]" +BranchTee_mvgd_0_lvgd_1006_152,"[0.9602061489473503, 0.9999999999997521]" +BranchTee_mvgd_0_lvgd_1006_153,"[0.9595778922264895, 0.9999999999997488]" +BranchTee_mvgd_0_lvgd_1006_154,"[0.9595380542131381, 0.9999999999997488]" +BranchTee_mvgd_0_lvgd_1006_155,"[0.9588885525970284, 0.9999999999997456]" +BranchTee_mvgd_0_lvgd_1006_156,"[0.9588131552618738, 0.9999999999997456]" +BranchTee_mvgd_0_lvgd_1006_157,"[0.9582134278367035, 0.9999999999997424]" +BranchTee_mvgd_0_lvgd_1006_158,"[0.958173533090611, 0.9999999999997424]" +BranchTee_mvgd_0_lvgd_1006_159,"[0.9575525265915934, 0.9999999999997392]" +BranchTee_mvgd_0_lvgd_1006_160,"[0.9574770240414915, 0.9999999999997392]" +BranchTee_mvgd_0_lvgd_1006_161,"[0.9569058583232637, 0.9999999999997363]" +BranchTee_mvgd_0_lvgd_1006_162,"[0.9568659090582173, 0.9999999999997363]" +BranchTee_mvgd_0_lvgd_1006_163,"[0.9562734313101939, 0.9999999999997335]" +BranchTee_mvgd_0_lvgd_1006_164,"[0.956197827753027, 0.9999999999997335]" +BranchTee_mvgd_0_lvgd_1006_165,"[0.9556552546489331, 0.9999999999997311]" +BranchTee_mvgd_0_lvgd_1006_166,"[0.9556152531005169, 0.9999999999997311]" +BranchTee_mvgd_0_lvgd_1006_167,"[0.9550513362474409, 0.9999999999997287]" +BranchTee_mvgd_0_lvgd_1006_168,"[0.9549756359315787, 0.9999999999997287]" +BranchTee_mvgd_0_lvgd_1006_169,"[0.9544616848342297, 0.9999999999997261]" +BranchTee_mvgd_0_lvgd_1006_170,"[0.9544216332590334, 0.9999999999997261]" +BranchTee_mvgd_0_lvgd_1006_171,"[0.9538863079439358, 0.9999999999997236]" +BranchTee_mvgd_0_lvgd_1006_172,"[0.9538105151567187, 0.9999999999997236]" +BranchTee_mvgd_0_lvgd_1006_173,"[0.9533252139341302, 0.999999999999721]" +BranchTee_mvgd_0_lvgd_1006_174,"[0.9532851146089373, 0.999999999999721]" +BranchTee_mvgd_0_lvgd_1006_175,"[0.9527784099634422, 0.9999999999997182]" +BranchTee_mvgd_0_lvgd_1006_176,"[0.9527025290296234, 0.9999999999997182]" +BranchTee_mvgd_0_lvgd_1006_177,"[0.9522459040157143, 0.9999999999997157]" +BranchTee_mvgd_0_lvgd_1006_178,"[0.9522057592366684, 0.9999999999997157]" +BranchTee_mvgd_0_lvgd_1006_179,"[0.9517277028710076, 0.9999999999997131]" +BranchTee_mvgd_0_lvgd_1006_180,"[0.9516517381511604, 0.9999999999997131]" +BranchTee_mvgd_0_lvgd_1006_181,"[0.9512238141367703, 0.9999999999997107]" +BranchTee_mvgd_0_lvgd_1006_182,"[0.9511836262185224, 0.9999999999997107]" +BranchTee_mvgd_0_lvgd_1006_183,"[0.9507342442120572, 0.9999999999997085]" +BranchTee_mvgd_0_lvgd_1006_184,"[0.9506582001009432, 0.9999999999997085]" +BranchTee_mvgd_0_lvgd_1006_185,"[0.9502590003253776, 0.9999999999997066]" +BranchTee_mvgd_0_lvgd_1006_186,"[0.9502187716002147, 0.9999999999997066]" +BranchTee_mvgd_0_lvgd_1006_187,"[0.9497980884924685, 0.9999999999997047]" +BranchTee_mvgd_0_lvgd_1006_188,"[0.9497219694173705, 0.9999999999997047]" +BranchTee_mvgd_0_lvgd_1006_189,"[0.9493515155604808, 0.9999999999997029]" +BranchTee_mvgd_0_lvgd_1006_190,"[0.9493112483774356, 0.9999999999997029]" +BranchTee_mvgd_0_lvgd_1006_191,"[0.94891928715965, 0.9999999999997012]" +BranchTee_mvgd_0_lvgd_1006_192,"[0.9488430975786727, 0.9999999999997012]" +BranchTee_mvgd_0_lvgd_1006_193,"[0.9485014097534745, 0.9999999999996997]" +BranchTee_mvgd_0_lvgd_1006_194,"[0.9484611064774179, 0.9999999999996997]" +BranchTee_mvgd_0_lvgd_1006_195,"[0.9480978885846333, 0.999999999999698]" +BranchTee_mvgd_0_lvgd_1006_196,"[0.9480216329849708, 0.999999999999698]" +BranchTee_mvgd_0_lvgd_1006_197,"[0.947708729730808, 0.9999999999996964]" +BranchTee_mvgd_0_lvgd_1006_198,"[0.9476683927415256, 0.9999999999996964]" +BranchTee_mvgd_0_lvgd_1006_199,"[0.9473339380451978, 0.9999999999996951]" +BranchTee_mvgd_0_lvgd_1006_200,"[0.9472576209413717, 0.9999999999996951]" +BranchTee_mvgd_0_lvgd_1006_201,"[0.946973519217632, 0.9999999999996938]" +BranchTee_mvgd_0_lvgd_1006_202,"[0.9469331509088843, 0.9999999999996938]" +BranchTee_mvgd_0_lvgd_1006_203,"[0.9466274777100379, 0.9999999999996924]" +BranchTee_mvgd_0_lvgd_1006_204,"[0.9465511036421044, 0.9999999999996924]" +BranchTee_mvgd_0_lvgd_1006_205,"[0.9462958188224885, 0.999999999999691]" +BranchTee_mvgd_0_lvgd_1006_206,"[0.9462554216010569, 0.999999999999691]" +BranchTee_mvgd_0_lvgd_1006_207,"[0.9459785466239843, 0.9999999999996897]" +BranchTee_mvgd_0_lvgd_1006_208,"[0.9459021201557175, 0.9999999999996897]" +BranchTee_mvgd_0_lvgd_1006_209,"[0.9456756660230702, 0.9999999999996882]" +BranchTee_mvgd_0_lvgd_1006_210,"[0.9456352423077886, 0.9999999999996882]" +BranchTee_mvgd_0_lvgd_1006_211,"[0.9453871806942974, 0.9999999999996869]" +BranchTee_mvgd_0_lvgd_1006_212,"[0.9453107064113447, 0.9999999999996869]" +BranchTee_mvgd_0_lvgd_1006_213,"[0.9451130951530463, 0.9999999999996854]" +BranchTee_mvgd_0_lvgd_1006_214,"[0.9450726473738206, 0.9999999999996854]" +BranchTee_mvgd_0_lvgd_1006_215,"[0.9448534126780351, 0.9999999999996841]" +BranchTee_mvgd_0_lvgd_1006_216,"[0.9447768951860515, 0.9999999999996841]" +BranchTee_mvgd_0_lvgd_1006_217,"[0.9446081373899786, 0.9999999999996828]" +BranchTee_mvgd_0_lvgd_1006_218,"[0.9445676679867935, 0.9999999999996828]" +BranchTee_mvgd_0_lvgd_1006_219,"[0.9443772721705144, 0.9999999999996817]" +BranchTee_mvgd_0_lvgd_1006_220,"[0.9443007160932729, 0.9999999999996817]" +BranchTee_mvgd_0_lvgd_1006_221,"[0.9441608207443278, 0.9999999999996808]" +BranchTee_mvgd_0_lvgd_1006_222,"[0.9441203321662436, 0.9999999999996808]" +BranchTee_mvgd_0_lvgd_1006_223,"[0.9439587855948681, 0.9999999999996799]" +BranchTee_mvgd_0_lvgd_1006_224,"[0.9438821955723533, 0.9999999999996799]" +BranchTee_mvgd_0_lvgd_1006_225,"[0.9437711700495643, 0.9999999999996789]" +BranchTee_mvgd_0_lvgd_1006_226,"[0.9437306647537043, 0.9999999999996789]" +BranchTee_mvgd_0_lvgd_1006_227,"[0.943597976192709, 0.9999999999996781]" +BranchTee_mvgd_0_lvgd_1006_228,"[0.9435213568791916, 0.9999999999996781]" +BranchTee_mvgd_0_lvgd_1006_229,"[0.9434392069533885, 0.9999999999996773]" +BranchTee_mvgd_0_lvgd_1006_230,"[0.9433986874039156, 0.9999999999996773]" +BranchTee_mvgd_0_lvgd_1006_231,"[0.94329486401591, 0.9999999999996766]" +BranchTee_mvgd_0_lvgd_1006_232,"[0.9432182200780066, 0.9999999999996766]" +BranchTee_mvgd_0_lvgd_1006_233,"[0.9431649499100699, 0.9999999999996758]" +BranchTee_mvgd_0_lvgd_1006_234,"[0.9431244185771589, 0.9999999999996758]" +BranchTee_mvgd_0_lvgd_1006_235,"[0.9430494659195036, 0.9999999999996751]" +BranchTee_mvgd_0_lvgd_1006_236,"[0.9429728020342224, 0.9999999999996751]" +BranchTee_mvgd_0_lvgd_1006_237,"[0.9429484141739101, 0.9999999999996747]" +BranchTee_mvgd_0_lvgd_1006_238,"[0.9429078735327108, 0.9999999999996747]" +BranchTee_mvgd_0_lvgd_1006_239,"[0.9428617955557084, 0.9999999999996743]" +BranchTee_mvgd_0_lvgd_1006_240,"[0.9427851164084855, 0.9999999999996743]" +BranchTee_mvgd_0_lvgd_1006_241,"[0.9427896117938339, 0.9999999999996739]" +BranchTee_mvgd_0_lvgd_1006_242,"[0.9427490643234298, 0.9999999999996739]" +BranchTee_mvgd_0_lvgd_1006_243,"[0.9427318633690869, 0.9999999999996737]" +BranchTee_mvgd_0_lvgd_1006_244,"[0.9426551736518111, 0.9999999999996737]" +BranchTee_mvgd_0_lvgd_1006_245,"[0.9426885516091156, 0.9999999999996735]" +BranchTee_mvgd_0_lvgd_1006_246,"[0.9426479997914785, 0.9999999999996735]" +BranchTee_mvgd_0_lvgd_1006_247,"[0.9426596765928404, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_248,"[0.942582981001872, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_249,"[0.9426452392462421, 0.9999999999996736]" +BranchTee_mvgd_0_lvgd_1006_250,"[0.9426046855651825, 0.9999999999996736]" +BusBar_mvgd_0_lvgd_1007_LV,"[0.9736116045917065, 1.0000000000000004]" +BranchTee_mvgd_0_lvgd_1007_1,"[0.9429960557479601, 1.0000000000000004]" +BranchTee_mvgd_0_lvgd_1007_2,"[0.9334189636991912, 1.0000000000000004]" +BranchTee_mvgd_0_lvgd_1007_3,"[0.9735139700985229, 1.0000000000000002]" +BranchTee_mvgd_0_lvgd_1007_4,"[0.9734736393380687, 1.0000000000000002]" +BranchTee_mvgd_0_lvgd_1007_5,"[0.9727178808120025, 0.9999999999999984]" +BranchTee_mvgd_0_lvgd_1007_6,"[0.9726775170414098, 0.9999999999999984]" +BranchTee_mvgd_0_lvgd_1007_7,"[0.9718385621971725, 0.9999999999999968]" +BranchTee_mvgd_0_lvgd_1007_8,"[0.9717621556227, 0.9999999999999968]" +BranchTee_mvgd_0_lvgd_1007_9,"[0.9709736611860499, 0.9999999999999951]" +BranchTee_mvgd_0_lvgd_1007_10,"[0.9709332249014976, 0.9999999999999951]" +BranchTee_mvgd_0_lvgd_1007_11,"[0.9701231890302617, 0.9999999999999937]" +BranchTee_mvgd_0_lvgd_1007_12,"[0.9700466473320498, 0.9999999999999937]" +BranchTee_mvgd_0_lvgd_1007_13,"[0.9692871578138854, 0.9999999999999923]" +BranchTee_mvgd_0_lvgd_1007_14,"[0.969246651166666, 0.9999999999999923]" +BranchTee_mvgd_0_lvgd_1007_15,"[0.9684655784264541, 0.9999999999999907]" +BranchTee_mvgd_0_lvgd_1007_16,"[0.9683889056997161, 0.9999999999999907]" +BranchTee_mvgd_0_lvgd_1007_17,"[0.967658462593291, 0.9999999999999888]" +BranchTee_mvgd_0_lvgd_1007_18,"[0.9676178877623918, 0.9999999999999888]" +BranchTee_mvgd_0_lvgd_1007_19,"[0.9668658208380336, 0.999999999999987]" +BranchTee_mvgd_0_lvgd_1007_20,"[0.9667890212297257, 0.999999999999987]" +BranchTee_mvgd_0_lvgd_1007_21,"[0.966087664523356, 0.9999999999999851]" +BranchTee_mvgd_0_lvgd_1007_22,"[0.9660470237147718, 0.9999999999999851]" +BranchTee_mvgd_0_lvgd_1007_23,"[0.9653240038033069, 0.9999999999999835]" +BranchTee_mvgd_0_lvgd_1007_24,"[0.9652470815108015, 0.9999999999999835]" +BranchTee_mvgd_0_lvgd_1007_25,"[0.964574849674123, 0.9999999999999817]" +BranchTee_mvgd_0_lvgd_1007_26,"[0.9645341451201419, 0.9999999999999817]" +BranchTee_mvgd_0_lvgd_1007_27,"[0.9638402119166828, 0.99999999999998]" +BranchTee_mvgd_0_lvgd_1007_28,"[0.963763171186394, 0.99999999999998]" +BranchTee_mvgd_0_lvgd_1007_29,"[0.9631201011571072, 0.9999999999999785]" +BranchTee_mvgd_0_lvgd_1007_30,"[0.9630793351155701, 0.9999999999999785]" +BranchTee_mvgd_0_lvgd_1007_31,"[0.9624145267996363, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1007_32,"[0.9623373719255951, 0.999999999999977]" +BranchTee_mvgd_0_lvgd_1007_33,"[0.961723499096708, 0.9999999999999754]" +BranchTee_mvgd_0_lvgd_1007_34,"[0.9616826738502436, 0.9999999999999754]" +BranchTee_mvgd_0_lvgd_1007_35,"[0.9610470270725749, 0.9999999999999738]" +BranchTee_mvgd_0_lvgd_1007_36,"[0.9609697623949575, 0.9999999999999738]" +BranchTee_mvgd_0_lvgd_1007_37,"[0.9603851206025392, 0.9999999999999722]" +BranchTee_mvgd_0_lvgd_1007_38,"[0.9603442384577734, 0.9999999999999722]" +BranchTee_mvgd_0_lvgd_1007_39,"[0.9597377883276356, 0.9999999999999709]" +BranchTee_mvgd_0_lvgd_1007_40,"[0.9596604182312466, 0.9999999999999709]" +BranchTee_mvgd_0_lvgd_1007_41,"[0.9591050397426965, 0.9999999999999698]" +BranchTee_mvgd_0_lvgd_1007_42,"[0.9590641030294372, 0.9999999999999698]" +BranchTee_mvgd_0_lvgd_1007_43,"[0.9584868831024298, 0.9999999999999687]" +BranchTee_mvgd_0_lvgd_1007_44,"[0.958409412015138, 0.9999999999999687]" +BranchTee_mvgd_0_lvgd_1007_45,"[0.9578833275179847, 0.9999999999999677]" +BranchTee_mvgd_0_lvgd_1007_46,"[0.9578423385883856, 0.9999999999999677]" +BranchTee_mvgd_0_lvgd_1007_47,"[0.9572943808547587, 0.9999999999999668]" +BranchTee_mvgd_0_lvgd_1007_48,"[0.9572168132458899, 0.9999999999999668]" +BranchTee_mvgd_0_lvgd_1007_49,"[0.9567200518371254, 0.9999999999999657]" +BranchTee_mvgd_0_lvgd_1007_50,"[0.9566790130648228, 0.9999999999999657]" +BranchTee_mvgd_0_lvgd_1007_51,"[0.9561603479383161, 0.9999999999999648]" +BranchTee_mvgd_0_lvgd_1007_52,"[0.9560826883170037, 0.9999999999999648]" +BranchTee_mvgd_0_lvgd_1007_53,"[0.9556152774929634, 0.9999999999999639]" +BranchTee_mvgd_0_lvgd_1007_54,"[0.9555741912721945, 0.9999999999999639]" +BranchTee_mvgd_0_lvgd_1007_55,"[0.9550848475794055, 0.999999999999963]" +BranchTee_mvgd_0_lvgd_1007_56,"[0.9550071004928994, 0.999999999999963]" +BranchTee_mvgd_0_lvgd_1007_57,"[0.9545690661396954, 0.9999999999999619]" +BranchTee_mvgd_0_lvgd_1007_58,"[0.9545279348843925, 0.9999999999999619]" +BranchTee_mvgd_0_lvgd_1007_59,"[0.9540679398546832, 0.9999999999999608]" +BranchTee_mvgd_0_lvgd_1007_60,"[0.9539901098866186, 0.9999999999999608]" +BranchTee_mvgd_0_lvgd_1007_61,"[0.9535814762711344, 0.9999999999999596]" +BranchTee_mvgd_0_lvgd_1007_62,"[0.9535403024140005, 0.9999999999999596]" +BranchTee_mvgd_0_lvgd_1007_63,"[0.9531096816699491, 0.9999999999999584]" +BranchTee_mvgd_0_lvgd_1007_64,"[0.9530317734385779, 0.9999999999999584]" +BranchTee_mvgd_0_lvgd_1007_65,"[0.9526525632000291, 0.9999999999999573]" +BranchTee_mvgd_0_lvgd_1007_66,"[0.9526113491915923, 0.9999999999999573]" +BranchTee_mvgd_0_lvgd_1007_67,"[0.952210126739999, 0.9999999999999561]" +BranchTee_mvgd_0_lvgd_1007_68,"[0.9521321448963835, 0.9999999999999561]" +BranchTee_mvgd_0_lvgd_1007_69,"[0.9517823790384552, 0.9999999999999548]" +BranchTee_mvgd_0_lvgd_1007_70,"[0.9517411273461056, 0.9999999999999548]" +BranchTee_mvgd_0_lvgd_1007_71,"[0.9513693255695579, 0.9999999999999538]" +BranchTee_mvgd_0_lvgd_1007_72,"[0.9512912747957313, 0.9999999999999538]" +BranchTee_mvgd_0_lvgd_1007_73,"[0.9509709726792926, 0.9999999999999527]" +BranchTee_mvgd_0_lvgd_1007_74,"[0.9509296857862997, 0.9999999999999527]" +BranchTee_mvgd_0_lvgd_1007_75,"[0.9505873254353076, 0.9999999999999514]" +BranchTee_mvgd_0_lvgd_1007_76,"[0.9505092104423998, 0.9999999999999514]" +BranchTee_mvgd_0_lvgd_1007_77,"[0.9502183897788093, 0.99999999999995]" +BranchTee_mvgd_0_lvgd_1007_78,"[0.9501770701833234, 0.99999999999995]" +BranchTee_mvgd_0_lvgd_1007_79,"[0.9498641703690264, 0.999999999999949]" +BranchTee_mvgd_0_lvgd_1007_80,"[0.9497859958953597, 0.999999999999949]" +BranchTee_mvgd_0_lvgd_1007_81,"[0.9495246727403582, 0.999999999999948]" +BranchTee_mvgd_0_lvgd_1007_82,"[0.949483322954396, 0.999999999999948]" +BranchTee_mvgd_0_lvgd_1007_83,"[0.9491999011418498, 0.9999999999999475]" +BranchTee_mvgd_0_lvgd_1007_84,"[0.9491216719510048, 0.9999999999999475]" +BranchTee_mvgd_0_lvgd_1007_85,"[0.9488898606992071, 0.9999999999999466]" +BranchTee_mvgd_0_lvgd_1007_86,"[0.948848483247621, 0.9999999999999466]" +BranchTee_mvgd_0_lvgd_1007_87,"[0.9485945552496701, 0.9999999999999456]" +BranchTee_mvgd_0_lvgd_1007_88,"[0.9485162761285245, 0.9999999999999456]" +BranchTee_mvgd_0_lvgd_1007_89,"[0.9483139895085084, 0.9999999999999448]" +BranchTee_mvgd_0_lvgd_1007_90,"[0.9482725869279445, 0.9999999999999448]" +BranchTee_mvgd_0_lvgd_1007_91,"[0.9480481668996824, 0.9999999999999439]" +BranchTee_mvgd_0_lvgd_1007_92,"[0.9479698426564243, 0.9999999999999439]" +BranchTee_mvgd_0_lvgd_1007_93,"[0.9477970917264262, 0.9999999999999427]" +BranchTee_mvgd_0_lvgd_1007_94,"[0.9477556665642659, 0.9999999999999427]" +BranchTee_mvgd_0_lvgd_1007_95,"[0.9475607669980919, 0.9999999999999418]" +BranchTee_mvgd_0_lvgd_1007_96,"[0.9474824024602103, 0.9999999999999418]" +BranchTee_mvgd_0_lvgd_1007_97,"[0.9473391966044248, 0.9999999999999409]" +BranchTee_mvgd_0_lvgd_1007_98,"[0.9472977514177175, 0.9999999999999409]" +BranchTee_mvgd_0_lvgd_1007_99,"[0.9471323831389883, 0.9999999999999398]" +BranchTee_mvgd_0_lvgd_1007_100,"[0.9470539831512417, 0.9999999999999398]" +BranchTee_mvgd_0_lvgd_1007_101,"[0.9469403300767326, 0.999999999999939]" +BranchTee_mvgd_0_lvgd_1007_102,"[0.946898867431117, 0.999999999999939]" +BranchTee_mvgd_0_lvgd_1007_103,"[0.9467630395944008, 0.9999999999999383]" +BranchTee_mvgd_0_lvgd_1007_104,"[0.9466846090167674, 0.9999999999999383]" +BranchTee_mvgd_0_lvgd_1007_105,"[0.9466005147509899, 0.9999999999999374]" +BranchTee_mvgd_0_lvgd_1007_106,"[0.9465590372196057, 0.9999999999999374]" +BranchTee_mvgd_0_lvgd_1007_107,"[0.9464527573055399, 0.9999999999999365]" +BranchTee_mvgd_0_lvgd_1007_108,"[0.9463743010111519, 0.9999999999999365]" +BranchTee_mvgd_0_lvgd_1007_109,"[0.9463197699000853, 0.9999999999999356]" +BranchTee_mvgd_0_lvgd_1007_110,"[0.9462782800624764, 0.9999999999999356]" +BranchTee_mvgd_0_lvgd_1007_111,"[0.9462015538752316, 0.9999999999999347]" +BranchTee_mvgd_0_lvgd_1007_112,"[0.9461230767482931, 0.9999999999999347]" +BranchTee_mvgd_0_lvgd_1007_113,"[0.9460981114551913, 0.9999999999999337]" +BranchTee_mvgd_0_lvgd_1007_114,"[0.9460566118962025, 0.9999999999999337]" +BranchTee_mvgd_0_lvgd_1007_115,"[0.9460094435615547, 0.9999999999999329]" +BranchTee_mvgd_0_lvgd_1007_116,"[0.9459309504952488, 0.9999999999999329]" +BranchTee_mvgd_0_lvgd_1007_117,"[0.9459355520000026, 0.9999999999999324]" +BranchTee_mvgd_0_lvgd_1007_118,"[0.94589404530867, 0.9999999999999324]" +BranchTee_mvgd_0_lvgd_1007_119,"[0.9458764372726807, 0.999999999999932]" +BranchTee_mvgd_0_lvgd_1007_120,"[0.9457979331670664, 0.999999999999932]" +BranchTee_mvgd_0_lvgd_1007_121,"[0.9458321007661799, 0.9999999999999319]" +BranchTee_mvgd_0_lvgd_1007_122,"[0.9457905895346176, 0.9999999999999319]" +BranchTee_mvgd_0_lvgd_1007_123,"[0.9458025425629241, 0.9999999999999318]" +BranchTee_mvgd_0_lvgd_1007_124,"[0.9457240323228259, 0.9999999999999318]" +BranchTee_mvgd_0_lvgd_1007_125,"[0.9457877636300082, 0.9999999999999317]" +BranchTee_mvgd_0_lvgd_1007_126,"[0.94574625045229, 0.9999999999999317]" +BranchTee_mvgd_0_lvgd_1007_127,"[0.9730080048169919, 0.999999999999996]" +BranchTee_mvgd_0_lvgd_1007_128,"[0.9729676530827553, 0.999999999999996]" +BranchTee_mvgd_0_lvgd_1007_129,"[0.9724130406481253, 0.9999999999999917]" +BranchTee_mvgd_0_lvgd_1007_130,"[0.9723366792200031, 0.9999999999999917]" +BranchTee_mvgd_0_lvgd_1007_131,"[0.9718267172169794, 0.9999999999999872]" +BranchTee_mvgd_0_lvgd_1007_132,"[0.9717863164297923, 0.9999999999999872]" +BranchTee_mvgd_0_lvgd_1007_133,"[0.9712490389857409, 0.9999999999999831]" +BranchTee_mvgd_0_lvgd_1007_134,"[0.9711725860270622, 0.9999999999999831]" +BranchTee_mvgd_0_lvgd_1007_135,"[0.9706800109563888, 0.9999999999999791]" +BranchTee_mvgd_0_lvgd_1007_136,"[0.9706395624380263, 0.9999999999999791]" +BranchTee_mvgd_0_lvgd_1007_137,"[0.9701196374585579, 0.9999999999999755]" +BranchTee_mvgd_0_lvgd_1007_138,"[0.9700430954800836, 0.9999999999999755]" +BranchTee_mvgd_0_lvgd_1007_139,"[0.9695679233633486, 0.9999999999999715]" +BranchTee_mvgd_0_lvgd_1007_140,"[0.9695274284469433, 0.9999999999999715]" +BranchTee_mvgd_0_lvgd_1007_141,"[0.969024872866926, 0.9999999999999674]" +BranchTee_mvgd_0_lvgd_1007_142,"[0.9689482444006459, 0.9999999999999674]" +BranchTee_mvgd_0_lvgd_1007_143,"[0.96849049070855, 0.9999999999999631]" +BranchTee_mvgd_0_lvgd_1007_144,"[0.9684499507383217, 0.9999999999999631]" +BranchTee_mvgd_0_lvgd_1007_145,"[0.967964780950022, 0.999999999999959]" +BranchTee_mvgd_0_lvgd_1007_146,"[0.9678880685486376, 0.999999999999959]" +BranchTee_mvgd_0_lvgd_1007_147,"[0.967447748197824, 0.9999999999999546]" +BranchTee_mvgd_0_lvgd_1007_148,"[0.9674071645288039, 0.9999999999999546]" +BranchTee_mvgd_0_lvgd_1007_149,"[0.9669393963785254, 0.9999999999999503]" +BranchTee_mvgd_0_lvgd_1007_150,"[0.9668626026149232, 0.9999999999999503]" +BranchTee_mvgd_0_lvgd_1007_151,"[0.966439729964917, 0.9999999999999459]" +BranchTee_mvgd_0_lvgd_1007_152,"[0.9663991039626635, 0.9999999999999459]" +BranchTee_mvgd_0_lvgd_1007_153,"[0.9659487527474935, 0.9999999999999418]" +BranchTee_mvgd_0_lvgd_1007_154,"[0.9658718802142009, 0.9999999999999418]" +BranchTee_mvgd_0_lvgd_1007_155,"[0.9654664690644672, 0.9999999999999378]" +BranchTee_mvgd_0_lvgd_1007_156,"[0.9654258021047778, 0.9999999999999378]" +BranchTee_mvgd_0_lvgd_1007_157,"[0.9649928825694405, 0.9999999999999338]" +BranchTee_mvgd_0_lvgd_1007_158,"[0.9649159338780735, 0.9999999999999338]" +BranchTee_mvgd_0_lvgd_1007_159,"[0.9645279974651843, 0.9999999999999301]" +BranchTee_mvgd_0_lvgd_1007_160,"[0.9644872909337988, 0.9999999999999301]" +BranchTee_mvgd_0_lvgd_1007_161,"[0.9640718172676184, 0.9999999999999262]" +BranchTee_mvgd_0_lvgd_1007_162,"[0.9639947950483168, 0.9999999999999262]" +BranchTee_mvgd_0_lvgd_1007_163,"[0.9636243460432349, 0.9999999999999224]" +BranchTee_mvgd_0_lvgd_1007_164,"[0.9635836013355348, 0.9999999999999224]" +BranchTee_mvgd_0_lvgd_1007_165,"[0.9631855871695068, 0.999999999999919]" +BranchTee_mvgd_0_lvgd_1007_166,"[0.9631084940703586, 0.999999999999919]" +BranchTee_mvgd_0_lvgd_1007_167,"[0.9627555445758367, 0.9999999999999154]" +BranchTee_mvgd_0_lvgd_1007_168,"[0.962714763096537, 0.9999999999999154]" +BranchTee_mvgd_0_lvgd_1007_169,"[0.9623342215005144, 0.9999999999999118]" +BranchTee_mvgd_0_lvgd_1007_170,"[0.9622570601869679, 0.9999999999999118]" +BranchTee_mvgd_0_lvgd_1007_171,"[0.9619216217350681, 0.9999999999999083]" +BranchTee_mvgd_0_lvgd_1007_172,"[0.9618808048979047, 0.9999999999999083]" +BranchTee_mvgd_0_lvgd_1007_173,"[0.9615177483778953, 0.9999999999999044]" +BranchTee_mvgd_0_lvgd_1007_174,"[0.961440521532161, 0.9999999999999044]" +BranchTee_mvgd_0_lvgd_1007_175,"[0.9611226050818924, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1007_176,"[0.9610817543093026, 0.9999999999999007]" +BranchTee_mvgd_0_lvgd_1007_177,"[0.9607361948048826, 0.9999999999998971]" +BranchTee_mvgd_0_lvgd_1007_178,"[0.9606589051253265, 0.9999999999998971]" +BranchTee_mvgd_0_lvgd_1007_179,"[0.9603585210604012, 0.9999999999998935]" +BranchTee_mvgd_0_lvgd_1007_180,"[0.9603176377832003, 0.9999999999998935]" +BranchTee_mvgd_0_lvgd_1007_181,"[0.9599895866650431, 0.9999999999998903]" +BranchTee_mvgd_0_lvgd_1007_182,"[0.9599122368655667, 0.9999999999998903]" +BranchTee_mvgd_0_lvgd_1007_183,"[0.9596293949922783, 0.9999999999998866]" +BranchTee_mvgd_0_lvgd_1007_184,"[0.9595884806493289, 0.9999999999998866]" +BranchTee_mvgd_0_lvgd_1007_185,"[0.9592779487168489, 0.999999999999883]" +BranchTee_mvgd_0_lvgd_1007_186,"[0.9592005415262627, 0.999999999999883]" +BranchTee_mvgd_0_lvgd_1007_187,"[0.958935251071486, 0.9999999999998797]" +BranchTee_mvgd_0_lvgd_1007_188,"[0.958894307109365, 0.9999999999998797]" +BranchTee_mvgd_0_lvgd_1007_189,"[0.9586013045884826, 0.9999999999998763]" +BranchTee_mvgd_0_lvgd_1007_190,"[0.9585238427498673, 0.9999999999998763]" +BranchTee_mvgd_0_lvgd_1007_191,"[0.9582761123591836, 0.9999999999998731]" +BranchTee_mvgd_0_lvgd_1007_192,"[0.9582351402318415, 0.9999999999998731]" +BranchTee_mvgd_0_lvgd_1007_193,"[0.9579596767728652, 0.9999999999998702]" +BranchTee_mvgd_0_lvgd_1007_194,"[0.9578821630429268, 0.9999999999998702]" +BranchTee_mvgd_0_lvgd_1007_195,"[0.9576520007788686, 0.9999999999998672]" +BranchTee_mvgd_0_lvgd_1007_196,"[0.9576110019472868, 0.9999999999998672]" +BranchTee_mvgd_0_lvgd_1007_197,"[0.9573530866229155, 0.9999999999998642]" +BranchTee_mvgd_0_lvgd_1007_198,"[0.9572755237713293, 0.9999999999998642]" +BranchTee_mvgd_0_lvgd_1007_199,"[0.9570629371117529, 0.9999999999998616]" +BranchTee_mvgd_0_lvgd_1007_200,"[0.957021913043594, 0.9999999999998616]" +BranchTee_mvgd_0_lvgd_1007_201,"[0.95678155434704, 0.999999999999859]" +BranchTee_mvgd_0_lvgd_1007_202,"[0.9567039451557876, 0.999999999999859]" +BranchTee_mvgd_0_lvgd_1007_203,"[0.9565089409923697, 0.9999999999998563]" +BranchTee_mvgd_0_lvgd_1007_204,"[0.9564678931616256, 0.9999999999998563]" +BranchTee_mvgd_0_lvgd_1007_205,"[0.9562450990048597, 0.9999999999998538]" +BranchTee_mvgd_0_lvgd_1007_206,"[0.9561674462675585, 0.9999999999998538]" +BranchTee_mvgd_0_lvgd_1007_207,"[0.9559900309044187, 0.9999999999998512]" +BranchTee_mvgd_0_lvgd_1007_208,"[0.9559489607910534, 0.9999999999998512]" +BranchTee_mvgd_0_lvgd_1007_209,"[0.9557437385031741, 0.9999999999998488]" +BranchTee_mvgd_0_lvgd_1007_210,"[0.9556660450243981, 0.9999999999998488]" +BranchTee_mvgd_0_lvgd_1007_211,"[0.9555062241768495, 0.9999999999998461]" +BranchTee_mvgd_0_lvgd_1007_212,"[0.955465133266439, 0.9999999999998461]" +BranchTee_mvgd_0_lvgd_1007_213,"[0.9552774895921636, 0.9999999999998436]" +BranchTee_mvgd_0_lvgd_1007_214,"[0.9551997581867585, 0.9999999999998436]" +BranchTee_mvgd_0_lvgd_1007_215,"[0.9550575369801838, 0.9999999999998415]" +BranchTee_mvgd_0_lvgd_1007_216,"[0.9550164267635515, 0.9999999999998415]" +BranchTee_mvgd_0_lvgd_1007_217,"[0.9548463678618321, 0.9999999999998396]" +BranchTee_mvgd_0_lvgd_1007_218,"[0.9547686013542227, 0.9999999999998396]" +BranchTee_mvgd_0_lvgd_1007_219,"[0.9546439843230776, 0.9999999999998376]" +BranchTee_mvgd_0_lvgd_1007_220,"[0.9546028562959269, 0.9999999999998376]" +BranchTee_mvgd_0_lvgd_1007_221,"[0.9544503877386885, 0.9999999999998357]" +BranchTee_mvgd_0_lvgd_1007_222,"[0.954372588962181, 0.9999999999998357]" +BranchTee_mvgd_0_lvgd_1007_223,"[0.9542655800491258, 0.9999999999998339]" +BranchTee_mvgd_0_lvgd_1007_224,"[0.9542244357116695, 0.9999999999998339]" +BranchTee_mvgd_0_lvgd_1007_225,"[0.9540895624826773, 0.9999999999998319]" +BranchTee_mvgd_0_lvgd_1007_226,"[0.9540117342787543, 0.9999999999998319]" +BranchTee_mvgd_0_lvgd_1007_227,"[0.9539223368339154, 0.9999999999998298]" +BranchTee_mvgd_0_lvgd_1007_228,"[0.9538811776905016, 0.9999999999998298]" +BranchTee_mvgd_0_lvgd_1007_229,"[0.953763904184352, 0.9999999999998279]" +BranchTee_mvgd_0_lvgd_1007_230,"[0.953686049401964, 0.9999999999998279]" +BranchTee_mvgd_0_lvgd_1007_231,"[0.9536142661823209, 0.9999999999998264]" +BranchTee_mvgd_0_lvgd_1007_232,"[0.9535730937410576, 0.9999999999998264]" +BranchTee_mvgd_0_lvgd_1007_233,"[0.9534734237622944, 0.9999999999998251]" +BranchTee_mvgd_0_lvgd_1007_234,"[0.9533955452571454, 0.9999999999998251]" +BranchTee_mvgd_0_lvgd_1007_235,"[0.953341378426049, 0.9999999999998238]" +BranchTee_mvgd_0_lvgd_1007_236,"[0.9533001941984244, 0.9999999999998238]" +BranchTee_mvgd_0_lvgd_1007_237,"[0.9532181309607844, 0.9999999999998228]" +BranchTee_mvgd_0_lvgd_1007_238,"[0.9531402315946134, 0.9999999999998228]" +BranchTee_mvgd_0_lvgd_1007_239,"[0.9531036827214321, 0.999999999999822]" +BranchTee_mvgd_0_lvgd_1007_240,"[0.9530624882219344, 0.999999999999822]" +BranchTee_mvgd_0_lvgd_1007_241,"[0.952998034347717, 0.9999999999998215]" +BranchTee_mvgd_0_lvgd_1007_242,"[0.9529201169875748, 0.9999999999998215]" +BranchTee_mvgd_0_lvgd_1007_243,"[0.9529011870474696, 0.999999999999821]" +BranchTee_mvgd_0_lvgd_1007_244,"[0.9528599837932034, 0.999999999999821]" +BranchTee_mvgd_0_lvgd_1007_245,"[0.9528131413127701, 0.9999999999998203]" +BranchTee_mvgd_0_lvgd_1007_246,"[0.9527352088302945, 0.9999999999998203]" +BranchTee_mvgd_0_lvgd_1007_247,"[0.9527338982041221, 0.9999999999998197]" +BranchTee_mvgd_0_lvgd_1007_248,"[0.952692687714424, 0.9999999999998197]" +BranchTee_mvgd_0_lvgd_1007_249,"[0.9526634580658221, 0.9999999999998193]" +BranchTee_mvgd_0_lvgd_1007_250,"[0.9525855133365082, 0.9999999999998193]" +BranchTee_mvgd_0_lvgd_1007_251,"[0.952601821810854, 0.999999999999819]" +BranchTee_mvgd_0_lvgd_1007_252,"[0.952560605606907, 0.999999999999819]" +BranchTee_mvgd_0_lvgd_1007_253,"[0.9525489896356233, 0.9999999999998187]" +BranchTee_mvgd_0_lvgd_1007_254,"[0.9524710355380918, 0.9999999999998187]" +BranchTee_mvgd_0_lvgd_1007_255,"[0.9525049623054307, 0.9999999999998183]" +BranchTee_mvgd_0_lvgd_1007_256,"[0.9524637419098766, 0.9999999999998183]" +BranchTee_mvgd_0_lvgd_1007_257,"[0.9524697398687167, 0.9999999999998177]" +BranchTee_mvgd_0_lvgd_1007_258,"[0.9523917792839809, 0.9999999999998177]" +BranchTee_mvgd_0_lvgd_1007_259,"[0.9524433229429686, 0.9999999999998177]" +BranchTee_mvgd_0_lvgd_1007_260,"[0.9524020998795193, 0.9999999999998177]" +BranchTee_mvgd_0_lvgd_1007_261,"[0.9524257114286169, 0.9999999999998175]" +BranchTee_mvgd_0_lvgd_1007_262,"[0.9523477472393473, 0.9999999999998175]" +BranchTee_mvgd_0_lvgd_1007_263,"[0.9524169057952367, 0.9999999999998177]" +BranchTee_mvgd_0_lvgd_1007_264,"[0.9523756815882861, 0.9999999999998177]" +BusBar_mvgd_0_lvgd_1008_LV,"[0.9647089384921401, 1.0000000000000135]" +BranchTee_mvgd_0_lvgd_1008_1,"[0.9495335407805121, 1.0000000000000138]" +BranchTee_mvgd_0_lvgd_1008_2,"[0.9408174334276286, 1.0000000000000138]" +BranchTee_mvgd_0_lvgd_1008_3,"[0.9419303822458244, 1.0000000000000135]" +BranchTee_mvgd_0_lvgd_1008_4,"[0.9331425849850946, 1.0000000000000135]" +BranchTee_mvgd_0_lvgd_1008_5,"[0.9643258510305842, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_6,"[0.9643001505677411, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_7,"[0.963966661567473, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_8,"[0.963913525970894, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_9,"[0.9636313793964845, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_10,"[0.9636056604107969, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_11,"[0.9633200118930142, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_12,"[0.9632668406240619, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_13,"[0.9630325672143933, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_14,"[0.9630068322358254, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_15,"[0.9627690515944155, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_16,"[0.9627158498939723, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_17,"[0.9625294720489808, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_18,"[0.962503723618528, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_19,"[0.96231383366596, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_20,"[0.962260606795923, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_21,"[0.962122142315474, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_22,"[0.9620963829834295, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_23,"[0.9619544019358943, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_24,"[0.9619011551755742, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_25,"[0.9618106172479566, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_26,"[0.9617848495721621, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_27,"[0.9616907910377039, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_28,"[0.9616375296801954, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_29,"[0.9615949268736329, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_30,"[0.9615691534177149, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_31,"[0.9615230263873846, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_32,"[0.9614697557359083, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_33,"[0.9614750919931138, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_34,"[0.9614493153247109, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_35,"[0.961451124166744, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_36,"[0.9613978495309748, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_37,"[0.9643258510305842, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_38,"[0.9643001505677411, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_39,"[0.963966661567473, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_40,"[0.963913525970894, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_41,"[0.9636313793964845, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_42,"[0.9636056604107969, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_43,"[0.9633200118930142, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_44,"[0.9632668406240619, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_45,"[0.9630325672143933, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_46,"[0.9630068322358254, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_47,"[0.9627690515944155, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_48,"[0.9627158498939723, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_49,"[0.9625294720489808, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_50,"[0.962503723618528, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_51,"[0.96231383366596, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_52,"[0.962260606795923, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_53,"[0.962122142315474, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_54,"[0.9620963829834295, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_55,"[0.9619544019358943, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_56,"[0.9619011551755742, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_57,"[0.9618106172479566, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_58,"[0.9617848495721621, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_59,"[0.9616907910377039, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_60,"[0.9616375296801954, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_61,"[0.9615949268736329, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_62,"[0.9615691534177149, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_63,"[0.9615230263873846, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_64,"[0.9614697557359083, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_65,"[0.9614750919931138, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_66,"[0.9614493153247109, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_67,"[0.961451124166744, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_68,"[0.9613978495309748, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_69,"[0.9643258510305842, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_70,"[0.9643001505677411, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_71,"[0.963966661567473, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_72,"[0.963913525970894, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_73,"[0.9636313793964845, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_74,"[0.9636056604107969, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_75,"[0.9633200118930142, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_76,"[0.9632668406240619, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_77,"[0.9630325672143933, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_78,"[0.9630068322358254, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_79,"[0.9627690515944155, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_80,"[0.9627158498939723, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_81,"[0.9625294720489808, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_82,"[0.962503723618528, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_83,"[0.96231383366596, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_84,"[0.962260606795923, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_85,"[0.962122142315474, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_86,"[0.9620963829834295, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_87,"[0.9619544019358943, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_88,"[0.9619011551755742, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_89,"[0.9618106172479566, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_90,"[0.9617848495721621, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_91,"[0.9616907910377039, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_92,"[0.9616375296801954, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_93,"[0.9615949268736329, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_94,"[0.9615691534177149, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_95,"[0.9615230263873846, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_96,"[0.9614697557359083, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_97,"[0.9614750919931138, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_98,"[0.9614493153247109, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_99,"[0.961451124166744, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_100,"[0.9613978495309748, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_101,"[0.9643258510305832, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_102,"[0.9643001505677403, 1.0000000000000155]" +BranchTee_mvgd_0_lvgd_1008_103,"[0.9639666615674708, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_104,"[0.9639135259708917, 1.000000000000017]" +BranchTee_mvgd_0_lvgd_1008_105,"[0.963631379396481, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_106,"[0.9636056604107932, 1.0000000000000189]" +BranchTee_mvgd_0_lvgd_1008_107,"[0.9633200118930096, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_108,"[0.9632668406240571, 1.0000000000000207]" +BranchTee_mvgd_0_lvgd_1008_109,"[0.9630325672143878, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_110,"[0.9630068322358195, 1.0000000000000226]" +BranchTee_mvgd_0_lvgd_1008_111,"[0.9627690515944088, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_112,"[0.9627158498939657, 1.0000000000000246]" +BranchTee_mvgd_0_lvgd_1008_113,"[0.9625294720489734, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_114,"[0.9625037236185205, 1.0000000000000266]" +BranchTee_mvgd_0_lvgd_1008_115,"[0.9623138336659527, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_116,"[0.9622606067959156, 1.000000000000028]" +BranchTee_mvgd_0_lvgd_1008_117,"[0.9621221423154666, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_118,"[0.9620963829834223, 1.000000000000029]" +BranchTee_mvgd_0_lvgd_1008_119,"[0.9619544019358865, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_120,"[0.9619011551755665, 1.00000000000003]" +BranchTee_mvgd_0_lvgd_1008_121,"[0.9618106172479485, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_122,"[0.9617848495721543, 1.0000000000000309]" +BranchTee_mvgd_0_lvgd_1008_123,"[0.9616907910376956, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_124,"[0.9616375296801868, 1.0000000000000318]" +BranchTee_mvgd_0_lvgd_1008_125,"[0.9615949268736241, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_126,"[0.9615691534177062, 1.0000000000000326]" +BranchTee_mvgd_0_lvgd_1008_127,"[0.9615230263873756, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_128,"[0.9614697557358993, 1.0000000000000333]" +BranchTee_mvgd_0_lvgd_1008_129,"[0.9614750919931048, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_130,"[0.9614493153247016, 1.0000000000000335]" +BranchTee_mvgd_0_lvgd_1008_131,"[0.9614511241667348, 1.000000000000034]" +BranchTee_mvgd_0_lvgd_1008_132,"[0.9613978495309657, 1.000000000000034]" +BusBar_mvgd_0_lvgd_1009_LV,"[0.9609172841564462, 1.0000000000000484]" +BranchTee_mvgd_0_lvgd_1009_1,"[0.9603467231920046, 1.000000000000049]" +BranchTee_mvgd_0_lvgd_1009_2,"[0.9602355225050788, 1.000000000000049]" +BranchTee_mvgd_0_lvgd_1009_3,"[0.9600613841823421, 1.000000000000049]" +BranchTee_mvgd_0_lvgd_1009_4,"[0.9598314726373889, 1.000000000000049]" +BranchTee_mvgd_0_lvgd_1009_5,"[0.9584933010925933, 1.0000000000000528]" +BranchTee_mvgd_0_lvgd_1009_6,"[0.9583818853288127, 1.0000000000000528]" +BranchTee_mvgd_0_lvgd_1009_7,"[0.9561408518021712, 1.0000000000000573]" +BranchTee_mvgd_0_lvgd_1009_8,"[0.9559099970794726, 1.0000000000000573]" +BranchTee_mvgd_0_lvgd_1009_9,"[0.953860116068796, 1.0000000000000615]" +BranchTee_mvgd_0_lvgd_1009_10,"[0.9537481589983469, 1.0000000000000615]" +BranchTee_mvgd_0_lvgd_1009_11,"[0.9516512515035312, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1009_12,"[0.9514193071481581, 1.000000000000066]" +BranchTee_mvgd_0_lvgd_1009_13,"[0.9495144290376892, 1.0000000000000702]" +BranchTee_mvgd_0_lvgd_1009_14,"[0.9494019594468949, 1.0000000000000702]" +BranchTee_mvgd_0_lvgd_1009_15,"[0.9474497970231295, 1.000000000000074]" +BranchTee_mvgd_0_lvgd_1009_16,"[0.9472168236078684, 1.000000000000074]" +BranchTee_mvgd_0_lvgd_1009_17,"[0.9454575172264993, 1.0000000000000777]" +BranchTee_mvgd_0_lvgd_1009_18,"[0.9453445649190937, 1.0000000000000777]" +BranchTee_mvgd_0_lvgd_1009_19,"[0.943537728446256, 1.0000000000000815]" +BranchTee_mvgd_0_lvgd_1009_20,"[0.9433037886047373, 1.0000000000000815]" +BranchTee_mvgd_0_lvgd_1009_21,"[0.9416905829845991, 1.000000000000085]" +BranchTee_mvgd_0_lvgd_1009_22,"[0.9415771787387139, 1.000000000000085]" +BranchTee_mvgd_0_lvgd_1009_23,"[0.9399162098065011, 1.0000000000000877]" +BranchTee_mvgd_0_lvgd_1009_24,"[0.9396813681392753, 1.0000000000000877]" +BranchTee_mvgd_0_lvgd_1009_25,"[0.9382147514638834, 1.0000000000000908]" +BranchTee_mvgd_0_lvgd_1009_26,"[0.9381009269842356, 1.0000000000000908]" +BranchTee_mvgd_0_lvgd_1009_27,"[0.9365863268235936, 1.000000000000094]" +BranchTee_mvgd_0_lvgd_1009_28,"[0.9363506497943987, 1.000000000000094]" +BranchTee_mvgd_0_lvgd_1009_29,"[0.9350310684167283, 1.000000000000097]" +BranchTee_mvgd_0_lvgd_1009_30,"[0.9349168562821341, 1.000000000000097]" +BranchTee_mvgd_0_lvgd_1009_31,"[0.9335490847640969, 1.0000000000001001]" +BranchTee_mvgd_0_lvgd_1009_32,"[0.9333126405866152, 1.0000000000001001]" +BranchTee_mvgd_0_lvgd_1009_33,"[0.9321404981220065, 1.0000000000001033]" +BranchTee_mvgd_0_lvgd_1009_34,"[0.9320259317283827, 1.0000000000001033]" +BranchTee_mvgd_0_lvgd_1009_35,"[0.9308054064352619, 1.000000000000106]" +BranchTee_mvgd_0_lvgd_1009_36,"[0.9305682649507518, 1.000000000000106]" +BranchTee_mvgd_0_lvgd_1009_37,"[0.9295439214492274, 1.0000000000001086]" +BranchTee_mvgd_0_lvgd_1009_38,"[0.9294290349482971, 1.0000000000001086]" +BranchTee_mvgd_0_lvgd_1009_39,"[0.9283561303218419, 1.000000000000111]" +BranchTee_mvgd_0_lvgd_1009_40,"[0.9281183628681202, 1.000000000000111]" +BranchTee_mvgd_0_lvgd_1009_41,"[0.927242134070353, 1.0000000000001132]" +BranchTee_mvgd_0_lvgd_1009_42,"[0.9271269623042964, 1.0000000000001132]" +BranchTee_mvgd_0_lvgd_1009_43,"[0.9262020088751536, 1.0000000000001155]" +BranchTee_mvgd_0_lvgd_1009_44,"[0.9259636881474835, 1.0000000000001155]" +BranchTee_mvgd_0_lvgd_1009_45,"[0.9252358448282665, 1.0000000000001172]" +BranchTee_mvgd_0_lvgd_1009_46,"[0.925120423260609, 1.0000000000001172]" +BranchTee_mvgd_0_lvgd_1009_47,"[0.9243437069630297, 1.000000000000119]" +BranchTee_mvgd_0_lvgd_1009_48,"[0.9241049068675546, 1.000000000000119]" +BranchTee_mvgd_0_lvgd_1009_49,"[0.9235256742702003, 1.0000000000001208]" +BranchTee_mvgd_0_lvgd_1009_50,"[0.9234100389132681, 1.0000000000001208]" +BranchTee_mvgd_0_lvgd_1009_51,"[0.9227818004886129, 1.0000000000001221]" +BranchTee_mvgd_0_lvgd_1009_52,"[0.922542595989048, 1.0000000000001221]" +BranchTee_mvgd_0_lvgd_1009_53,"[0.9221121533536892, 1.000000000000124]" +BranchTee_mvgd_0_lvgd_1009_54,"[0.9219963406929892, 1.000000000000124]" +BranchTee_mvgd_0_lvgd_1009_55,"[0.9215167751851552, 1.0000000000001252]" +BranchTee_mvgd_0_lvgd_1009_56,"[0.9212772421435211, 1.0000000000001252]" +BranchTee_mvgd_0_lvgd_1009_57,"[0.9209957223317955, 1.0000000000001266]" +BranchTee_mvgd_0_lvgd_1009_58,"[0.9208797692477181, 1.0000000000001266]" +BranchTee_mvgd_0_lvgd_1009_59,"[0.9205490255931392, 1.0000000000001275]" +BranchTee_mvgd_0_lvgd_1009_60,"[0.9203092406053831, 1.0000000000001275]" +BranchTee_mvgd_0_lvgd_1009_61,"[0.9201767298234821, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_62,"[0.9200606735107468, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_63,"[0.9198788542251325, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_64,"[0.9196388944525391, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_65,"[0.9196554320740601, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_66,"[0.9195393099593537, 1.000000000000128]" +BranchTee_mvgd_0_lvgd_1009_67,"[0.919506470922821, 1.0000000000001277]" +BranchTee_mvgd_0_lvgd_1009_68,"[0.9192664139201585, 1.0000000000001277]" +BranchTee_mvgd_0_lvgd_1009_69,"[0.9194319924096734, 1.0000000000001277]" +BranchTee_mvgd_0_lvgd_1009_70,"[0.9193158420679435, 1.0000000000001277]" diff --git a/tests/core/testdata/line_data.csv b/tests/core/testdata/line_data.csv new file mode 100644 index 00000000..f2e7c67e --- /dev/null +++ b/tests/core/testdata/line_data.csv @@ -0,0 +1,35 @@ +line_id,p0,p1,q0,q1 +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_biogas_from_grid_1,"[0.0, -0.19999996446811524]","[0.0, 0.19999999985647376]","[-0.0, 3.56097718543294e-08]","[-0.0, -1.537036305523931e-10]" +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_wind_onshore_2,"[0.0, -0.9999991152996985]","[0.0, 1.0000000000074105]","[-0.0, 8.866860867207116e-07]","[-0.0, -2.856345472646016e-10]" +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_wind_onshore_3,"[0.0, -0.9999991152996985]","[0.0, 1.0000000000074105]","[-0.0, 8.866860867207116e-07]","[-0.0, -2.856345472646016e-10]" +Branch_Generator_mvgd_0_biogas_from_grid_0_LVStation_mvgd_0_lvgd_1000,"[1.698507892116956e-10, 2.3999981948887443]","[-1.6985078921145187e-10, -2.3718998508867926]","[1.3644905994273775e-10, -1.8083838217303194e-06]","[-1.3644905994249353e-10, 0.02815391386803586]" +Branch_LVStation_mvgd_0_lvgd_1000_LVStation_mvgd_0_lvgd_1003,"[0.327494173663407, 0.2308254519296996]","[-0.326232025542527, -0.2302611122239071]","[0.09307343146296759, -0.0027398458142456838]","[-0.09180886843273174, 0.0033052652896887343]" +Branch_LVStation_mvgd_0_lvgd_1000_MVStation_mvgd_0,"[0.5065011688108285, -2.118178824350565]","[-0.5050873472735034, 2.141074398923496]","[0.14372685586918976, 0.048353449411337124]","[-0.14231032922079132, -0.025414067985368587]" +Branch_LVStation_mvgd_0_lvgd_1009_LVStation_mvgd_0_lvgd_1010,"[0.09128480945110205, 0.0]","[-0.09123742780879024, 0.0]","[0.025838780105481796, 0.0]","[-0.0257913078063212, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1011_LVStation_mvgd_0_lvgd_1015,"[-0.09012363576177691, 0.0]","[0.09015617887866655, 0.0]","[-0.025436187023857356, 0.0]","[0.025468792406558853, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1012_MVCableDist_mvgd_0_5,"[-0.07947693215989401, -2.8421709430404115e-14]","[0.0794947889047275, 2.8421709430404115e-14]","[-0.02212598550707561, -7.438728623602201e-29]","[0.022143876417804097, 7.645525658751369e-29]" +Branch_LVStation_mvgd_0_lvgd_1013_MVCableDist_mvgd_0_5,"[0.30543631692971374, -1.705302565824246e-13]","[-0.3051739792913481, 1.705302565824247e-13]","[0.08554616780791724, -3.9577052878696623e-28]","[-0.08528332823035221, 4.587315395250821e-28]" +Branch_LVStation_mvgd_0_lvgd_1013_MVStation_mvgd_0,"[0.46266610330376423, -1.3855583347321954e-13]","[-0.4580444232726916, 1.3855583347321991e-13]","[0.13383054675902528, -2.842170943040401e-14]","[-0.12920002391611296, 2.8421709430404424e-14]" +Branch_LVStation_mvgd_0_lvgd_1014_LVStation_mvgd_0_lvgd_1015,"[-0.03391282676433143, -1.42108547152021e-14]","[0.03391928633254089, 1.4210854715202105e-14]","[-0.008898572195145144, 1.4210854715202026e-14]","[0.008905044122658117, -1.4210854715202023e-14]" +Branch_LVStation_mvgd_0_lvgd_1015_MVCableDist_mvgd_0_4,"[-0.008560548270378653, 0.0]","[0.00856075117703442, 0.0]","[-0.0017583263395575424, 0.0]","[0.0017585296344412632, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1015_MVCableDist_mvgd_0_5,"[-0.2255345858132904, 1.1368683772161636e-13]","[0.22567919038748768, -1.136868377216163e-13]","[-0.06299457056130986, 5.684341886080858e-14]","[0.06313945181217712, -5.684341886080853e-14]" +Branch_LVStation_mvgd_0_lvgd_1016_MVCableDist_mvgd_0_1,"[-0.08992012062195852, 0.0]","[0.08992012870074646, 0.0]","[-0.024951652387313065, 0.0]","[0.02495166048155843, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1016_MVStation_mvgd_0,"[0.09003798023332621, 0.0]","[-0.08992664670157564, 0.0]","[0.025065009872484723, 0.0]","[-0.024953463322639858, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1017_MVCableDist_mvgd_0_2,"[-0.3132549194682254, 0.0]","[0.31325502139489825, 0.0]","[-0.09405793919063632, 0.0]","[0.0940580413123288, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1017_MVStation_mvgd_0,"[0.31717105928810163, 0.0]","[-0.3132630899866765, 0.0]","[0.09797583916031094, 0.0]","[-0.09406039261317102, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1018_MVCableDist_mvgd_0_3,"[-0.06974536876302449, 0.0]","[0.06974537365770202, 0.0]","[-0.019697338790250152, -0.0]","[0.019697343694292806, -0.0]" +Branch_LVStation_mvgd_0_lvgd_1018_MVStation_mvgd_0,"[0.06996512143867406, 5.820943727030681e-11]","[-0.06974693325004128, -5.820943727002741e-11]","[0.01991638640207327, -5.820588455662801e-11]","[-0.01969778074682991, 5.8205884556907937e-11]" +Branch_LVStation_mvgd_0_lvgd_1001_LVStation_mvgd_0_lvgd_1002,"[0.1582400652475934, -0.22913306212446044]","[-0.1579444843561895, 0.2296964576542547]","[0.043881399196428174, 0.004435473722280621]","[-0.04358525276041961, -0.0038710002293587476]" +Branch_LVStation_mvgd_0_lvgd_1001_MVStation_mvgd_0,"[0.39048846161694684, -0.22835712044489753]","[-0.38803435296020167, 0.22913306212434595]","[0.1119486068427662, 0.0052129000362484135]","[-0.10948980265951566, -0.004435473722159824]" +Branch_LVStation_mvgd_0_lvgd_1002_LVStation_mvgd_0_lvgd_1003,"[-0.12752164705090985, -0.22969645765453578]","[0.1277153054270076, 0.2302611122232774]","[-0.035889167795339724, 0.003871000229757266]","[0.03608319670435393, -0.0033052652889275416]" +Branch_LVStation_mvgd_0_lvgd_1004_LVStation_mvgd_0_lvgd_1008,"[0.4143503830760491, -1.3855583347321964e-13]","[-0.4111427968120603, 1.3855583347322e-13]","[0.1193387032276022, -3.197442310920461e-14]","[-0.11612497978371313, 3.197442310920497e-14]" +Branch_LVStation_mvgd_0_lvgd_1004_MVStation_mvgd_0,"[0.5829443304890987, -1.4210854715202004e-13]","[-0.5810675302278622, 1.4210854715202014e-13]","[0.1671696527772042, -2.842170943040401e-14]","[-0.16528926157253165, 2.842170943040411e-14]" +Branch_LVStation_mvgd_0_lvgd_1005_LVStation_mvgd_0_lvgd_1006,"[0.0019080315921456458, -7.501759009107435e-31]","[-0.0019079911641872072, 1.2992473040210198e-30]","[-8.273238334893871e-05, 1.4210854715202004e-14]","[8.277288865951533e-05, -1.4210854715202002e-14]" +Branch_LVStation_mvgd_0_lvgd_1005_MVStation_mvgd_0,"[0.5612654316427523, 0.0]","[-0.5561822013016385, 0.0]","[0.16336097464885313, 0.0]","[-0.15826801839656815, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1006_LVStation_mvgd_0_lvgd_1007,"[-0.14817227953400447, 1.2992473040210198e-30]","[0.1484354638834586, -7.522160072765276e-31]","[-0.04291217756210388, -1.4210854715202002e-14]","[0.04317586547079746, 1.4210854715202004e-14]" +Branch_LVStation_mvgd_0_lvgd_1007_MVStation_mvgd_0,"[0.45371372104568053, 0.0]","[-0.450394642865474, 0.0]","[0.13104186709602317, 0.0]","[-0.12771643841477986, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1008_MVCableDist_mvgd_0_4,"[0.18624652263050234, -1.421085471520205e-13]","[-0.18614969824404143, 1.4210854715202057e-13]","[0.051997561438837804, -2.842170943040446e-14]","[-0.05190055179510565, 2.842170943040452e-14]" +Branch_LVStation_mvgd_0_lvgd_1009_MVCableDist_mvgd_0_4,"[-0.1774994459481164, -2.242548421872296e-28]","[0.17758894706751097, 2.335569597443723e-28]","[-0.05005234979575747, 8.52651282912124e-14]","[0.05014202216057643, -8.526512829121238e-14]" +Branch_MVCableDist_mvgd_0_1_MVStation_mvgd_0,"[0.09003144625805959, 0.0]","[-0.08992012888447129, 0.0]","[0.025063190927262724, 0.0]","[-0.02495166056649606, 0.0]" +Branch_MVCableDist_mvgd_0_2_MVStation_mvgd_0,"[0.317162786696505, 0.0]","[-0.313255021251084, 0.0]","[0.09797328371245762, 0.0]","[-0.09405804141136623, 0.0]" +Branch_MVCableDist_mvgd_0_3_MVStation_mvgd_0,"[0.06996355185605552, 5.820943727030681e-11]","[-0.06974537345688754, -5.820943727002741e-11]","[0.019915939602107358, -5.820588455662801e-11]","[-0.019697343755059306, 5.8205884556907937e-11]" diff --git a/tests/core/testdata/line_data_lv.csv b/tests/core/testdata/line_data_lv.csv new file mode 100644 index 00000000..d65c93d2 --- /dev/null +++ b/tests/core/testdata/line_data_lv.csv @@ -0,0 +1,2681 @@ +line_id,p0,p1,q0,q1 +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_biogas_from_grid_1,"[0.0, -0.19999996470145384]","[0.0, 0.2000000000898124]","[-0.0, 3.536700422281103e-08]","[-0.0, 8.906408423270396e-11]" +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_wind_onshore_2,"[0.0, -0.9999991153007839]","[0.0, 1.0000000000084959]","[-0.0, 8.865704649793638e-07]","[-0.0, -1.7001281979456273e-10]" +Branch_Generator_mvgd_0_biogas_from_grid_0_Generator_mvgd_0_wind_onshore_3,"[0.0, -0.9999991153007839]","[0.0, 1.0000000000084959]","[-0.0, 8.865704649793638e-07]","[-0.0, -1.7001281979456273e-10]" +Branch_Generator_mvgd_0_biogas_from_grid_0_LVStation_mvgd_0_lvgd_1000,"[-4.415103476325447e-10, 2.399998194919955]","[4.4151034763355075e-10, -2.371899850917486]","[3.164952103212364e-11, -1.8080051667063168e-06]","[-3.1649521031115565e-11, 0.02815391348989899]" +Branch_LVStation_mvgd_0_lvgd_1000_LVStation_mvgd_0_lvgd_1003,"[0.332297371930367, 0.23082545193290124]","[-0.33099517824149577, -0.23026111222709725]","[0.09568879591948318, -0.0027398457773622708]","[-0.09438411070075878, 0.003305265252816751]" +Branch_LVStation_mvgd_0_lvgd_1000_MVStation_mvgd_0,"[0.5146557828035441, -2.118178824377935]","[-0.513193423263852, 2.1410743989512895]","[0.14780686430466972, 0.04835344907046135]","[-0.14634170678455405, -0.025414067644068748]" +Branch_LVStation_mvgd_0_lvgd_1009_LVStation_mvgd_0_lvgd_1010,"[0.09263844043376658, -2.842170943040419e-14]","[-0.09258956794386942, 2.8421709430404197e-14]","[0.02638076651495052, -1.421085471520228e-14]","[-0.026331800515717065, 1.4210854715202288e-14]" +Branch_LVStation_mvgd_0_lvgd_1011_LVStation_mvgd_0_lvgd_1015,"[-0.09113891535470904, 1.1368683772161664e-13]","[0.09117224290574823, -1.1368683772161656e-13]","[-0.025862661329865776, 1.1368683772161754e-13]","[0.025896052647600393, -1.1368683772161742e-13]" +Branch_LVStation_mvgd_0_lvgd_1012_MVCableDist_mvgd_0_5,"[-0.08031234098621538, -1.13686837721617e-13]","[0.08033059554913498, 1.1368683772161704e-13]","[-0.02244460891071253, 2.842170943040388e-14]","[0.0224628984006855, -2.8421709430403856e-14]" +Branch_LVStation_mvgd_0_lvgd_1013_MVCableDist_mvgd_0_5,"[0.31085127807603985, -2.8421709430404134e-14]","[-0.31057882808380183, 2.842170943040414e-14]","[0.08834752762850238, -2.842170943040432e-14]","[-0.08807455634876701, 2.842170943040433e-14]" +Branch_LVStation_mvgd_0_lvgd_1013_MVStation_mvgd_0,"[0.4711112819706855, -2.8066438062523957e-13]","[-0.46630882451607875, 2.806643806252414e-13]","[0.13819640565393243, -1.1013412404281553e-13]","[-0.1333847595001182, 1.1013412404281733e-13]" +Branch_LVStation_mvgd_0_lvgd_1014_LVStation_mvgd_0_lvgd_1015,"[-0.03406729980532421, -1.2789769243681902e-13]","[0.03407382295067932, 1.2789769243681912e-13]","[-0.008946359704840026, -4.0058515733534207e-28]","[0.008952895331142885, 4.886624540113855e-28]" +Branch_LVStation_mvgd_0_lvgd_1015_MVCableDist_mvgd_0_4,"[-0.007412970157687441, -2.2737367544323443e-13]","[0.007413117352869932, 2.273736754432346e-13]","[-0.0006476752255941834, 1.1368683772161613e-13]","[0.0006478227024100408, -1.1368683772161593e-13]" +Branch_LVStation_mvgd_0_lvgd_1015_MVCableDist_mvgd_0_5,"[-0.23009722013657213, 1.7053025658242548e-13]","[0.23024823253305735, -1.705302565824254e-13]","[-0.06546035661699783, 6.515499386818473e-28]","[0.06561165795044938, -5.658431516112402e-28]" +Branch_LVStation_mvgd_0_lvgd_1016_MVCableDist_mvgd_0_1,"[-0.09208436084719722, 0.0]","[0.09208436933467336, 0.0]","[-0.025855243483735336, -0.0]","[0.02585525198745084, -0.0]" +Branch_LVStation_mvgd_0_lvgd_1016_MVStation_mvgd_0,"[0.09220800948485675, 5.329070518200751e-13]","[-0.09209104383418103, -5.329070518151752e-13]","[0.025974309368294257, -1.9603874079621164e-11]","[-0.025857119923406554, 1.9603874079626076e-11]" +Branch_LVStation_mvgd_0_lvgd_1017_MVCableDist_mvgd_0_2,"[-0.3294939808867959, -1.164153218270651e-10]","[0.32949409480730685, 1.1641532182706512e-10]","[-0.10376125160715294, -1.1641532182690272e-10]","[0.10376136574563177, 1.1641532182690275e-10]" +Branch_LVStation_mvgd_0_lvgd_1017_MVStation_mvgd_0,"[0.33387039899360005, 3.89910326248355e-12]","[-0.32950257410525324, -3.8991032624742044e-12]","[0.10814014117005044, -1.5758061522319622e-11]","[-0.10376395917922654, 1.5758061522328986e-11]" +Branch_LVStation_mvgd_0_lvgd_1018_MVCableDist_mvgd_0_3,"[-0.07130560391986573, 0.0]","[0.0713056090467649, 0.0]","[-0.020397726522864087, 0.0]","[0.020397731659572708, 0.0]" +Branch_LVStation_mvgd_0_lvgd_1018_MVStation_mvgd_0,"[0.07153574335840851, -4.4302339574642247e-11]","[-0.07130720351314866, 4.430233957475448e-11]","[0.020627161270082794, -2.7554847292776685e-11]","[-0.020398184152048564, 2.755484729288913e-11]" +Branch_LVStation_mvgd_0_lvgd_1001_LVStation_mvgd_0_lvgd_1002,"[0.16198873489868587, -0.2291330621269108]","[-0.1616778788856414, 0.22969645765671298]","[0.045949102616418123, 0.004435473685567899]","[-0.045637651832378244, -0.0038710001926380846]" +Branch_LVStation_mvgd_0_lvgd_1001_MVStation_mvgd_0,"[0.39604577747981295, -0.22835712044801681]","[-0.39351618399016947, 0.22913306212748077]","[0.11505240119956284, 0.005212899999563092]","[-0.11251796775580974, -0.004435473685458985]" +Branch_LVStation_mvgd_0_lvgd_1002_LVStation_mvgd_0_lvgd_1003,"[-0.13022404515810881, -0.22969645765757235]","[0.13042689444459982, 0.23026111222632467]","[-0.03764657226523431, 0.0038710001929402466]","[0.03784980966991182, -0.0033052652520997516]" +Branch_LVStation_mvgd_0_lvgd_1004_LVStation_mvgd_0_lvgd_1008,"[0.42242323915039104, -2.984279490192411e-13]","[-0.4190802955040957, 2.9842794901924334e-13]","[0.12370197451904165, -1.9895196601282894e-13]","[-0.12035263470913145, 1.9895196601283116e-13]" +Branch_LVStation_mvgd_0_lvgd_1004_MVStation_mvgd_0,"[0.5929968720157461, -2.7000623958883807e-13]","[-0.5910506334473241, 2.700062395888393e-13]","[0.17242775285069456, 4.121147867408581e-13]","[-0.1704777904802482, -4.1211478674085685e-13]" +Branch_LVStation_mvgd_0_lvgd_1005_LVStation_mvgd_0_lvgd_1006,"[-0.003231120822496753, 4.2632564145605774e-13]","[0.0032312588695427545, -4.263256414560552e-13]","[-0.0014145744315851097, 2.344791028008169e-13]","[0.0014147127427610478, -2.3447910280081433e-13]" +Branch_LVStation_mvgd_0_lvgd_1005_MVStation_mvgd_0,"[0.5860260496244436, 1.5774048733874224e-12]","[-0.580463060600066, -1.5774048733873846e-12]","[0.17472714169508663, -2.2026824808563106e-13]","[-0.16915350882152924, 2.202682480856689e-13]" +Branch_LVStation_mvgd_0_lvgd_1006_LVStation_mvgd_0_lvgd_1007,"[-0.1553729921498664, -3.907985046680529e-13]","[0.15566304795901534, 3.907985046680554e-13]","[-0.04539478307765433, -2.913225216616218e-13]","[0.04568539386008697, 2.913225216616244e-13]" +Branch_LVStation_mvgd_0_lvgd_1007_MVStation_mvgd_0,"[0.46935242739423444, 1.5987211554602254e-12]","[-0.46578443814139847, -1.5987211554601864e-12]","[0.13950694965357258, -2.6290081223123707e-13]","[-0.13593213364998863, 2.629008122312763e-13]" +Branch_LVStation_mvgd_0_lvgd_1008_MVCableDist_mvgd_0_4,"[0.18890489961722348, -5.684341886080696e-14]","[-0.18880528871111282, 5.684341886080715e-14]","[0.05253340455579953, -2.842170943040426e-13]","[-0.052433603060878325, 2.842170943040428e-13]" +Branch_LVStation_mvgd_0_lvgd_1009_MVCableDist_mvgd_0_4,"[-0.18129858434442508, 1.9895196601282987e-13]","[0.18139217135543784, -1.9895196601282977e-13]","[-0.05169201428768979, 1.0321352625084412e-27]","[0.051785780361797214, -9.482346027350395e-28]" +Branch_MVCableDist_mvgd_0_1_MVStation_mvgd_0,"[0.09220131803250808, 5.258016244624741e-13]","[-0.09208436935740061, -5.258016244575727e-13]","[0.025972424436019992, -1.9603874079621164e-11]","[-0.025855251999180442, 1.9603874079626076e-11]" +Branch_MVCableDist_mvgd_0_2_MVStation_mvgd_0,"[0.33386169084263884, 3.895550548804749e-12]","[-0.3294940937982849, -3.8955505487954015e-12]","[0.108137320612542, -1.5761614235998422e-11]","[-0.1037613669016524, 1.576161423600779e-11]" +Branch_MVCableDist_mvgd_0_3_MVStation_mvgd_0,"[0.07153413854079105, -4.4300563217802846e-11]","[-0.07130560894944452, 4.430056321791507e-11]","[0.020626698524745635, -2.7556623649616085e-11]","[-0.020397731680243874, 2.7556623649728534e-11]" +Branch_LVCableDist_mvgd_0_lvgd_1000_100_LVCableDist_mvgd_0_lvgd_1000_99,"[0.002182008672512323, 0.0]","[-0.0021817737611223675, 0.0]","[0.0005468484249650824, 0.0]","[-0.0005468040465926613, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_101_LVCableDist_mvgd_0_lvgd_1000_102,"[0.0021822604207276195, 0.0]","[-0.002181773760947132, 0.0]","[0.0005468959839935107, 0.0]","[-0.0005468040464804555, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_101_LVCableDist_mvgd_0_lvgd_1000_103,"[0.032912943016359525, -3.560719025309912e-14]","[-0.03288016419478488, 3.560719025309917e-14]","[0.00827373049415074, -2.7319942499918847e-14]","[-0.008260933264785022, 2.7319942499918872e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_101_LVCableDist_mvgd_0_lvgd_1000_99,"[0.03513247225030681, -2.846608660855623e-14]","[-0.035095203436860185, 2.846608660855627e-14]","[0.008835176652567507, -2.3651062708032292e-14]","[-0.00882062647867616, 2.3651062708032302e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_103_LVCableDist_mvgd_0_lvgd_1000_104,"[0.002182009673129614, 0.0]","[-0.0021817737608201093, 0.0]","[0.0005468486138442592, 0.0]","[-0.0005468040463827501, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_103_LVCableDist_mvgd_0_lvgd_1000_105,"[0.03069815452205271, -1.4085551349855478e-14]","[-0.030669581310177444, 1.4085551349855499e-14]","[0.007714084650035923, -2.5288846664745363e-14]","[-0.007702929339121216, 2.528884666474537e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_105_LVCableDist_mvgd_0_lvgd_1000_106,"[0.0021822623630495174, 0.0]","[-0.0021817737606438714, 0.0]","[0.0005468963507783286, 0.0]","[-0.0005468040462735204, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_105_LVCableDist_mvgd_0_lvgd_1000_107,"[0.028487318947618828, -2.1285651776167433e-14]","[-0.02846266677778773, 2.1285651776167455e-14]","[0.007156032987043688, -2.3572400332340234e-14]","[-0.00714640849609081, 2.3572400332340244e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_107_LVCableDist_mvgd_0_lvgd_1000_108,"[0.002182010550380553, 0.0]","[-0.0021817737605144146, 0.0]","[0.0005468487794279881, 0.0]","[-0.0005468040461825418, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_107_LVCableDist_mvgd_0_lvgd_1000_109,"[0.02628065622803537, -1.4144548131624585e-14]","[-0.026259638572290377, 1.4144548131624601e-14]","[0.006599559714976937, -1.9903520540453696e-14]","[-0.0065913541801719145, 1.99035205404537e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_109_LVCableDist_mvgd_0_lvgd_1000_110,"[0.002182264047807531, 0.0]","[-0.0021817737603597454, 0.0]","[0.0005468966689136112, 0.0]","[-0.000546804046078442, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_109_LVCableDist_mvgd_0_lvgd_1000_111,"[0.024077374525227548, 7.357425177696112e-15]","[-0.024059704692922516, -7.357425177696104e-15]","[0.006044457509176377, -1.607731599718298e-14]","[-0.006037559003189937, 1.6077315997182984e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_10_LVCableDist_mvgd_0_lvgd_1000_9,"[0.0021822331023655293, 0.0]","[-0.002181773763090711, 0.0]","[0.0005468908241898134, 0.0]","[-0.0005468040479402267, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_111_LVCableDist_mvgd_0_lvgd_1000_112,"[0.0021820113019514016, 0.0]","[-0.0021817737602501117, 0.0]","[0.0005468489212770508, 0.0]","[-0.0005468040459983875, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_111_LVCableDist_mvgd_0_lvgd_1000_113,"[0.021877693391822804, -6.983778893158712e-15]","[-0.021863083011267055, 6.983778893158721e-15]","[0.0054907100794600846, -1.8029749456664378e-14]","[-0.005485006018663802, 1.8029749456664385e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_113_LVCableDist_mvgd_0_lvgd_1000_114,"[0.002182265470457252, 0.0]","[-0.0021817737600982384, 0.0]","[0.0005468969375472211, 0.0]","[-0.0005468040459022493, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_113_LVCableDist_mvgd_0_lvgd_1000_115,"[0.019680817541790192, 9.832796961510029e-17]","[-0.01966897810261602, -9.832796961509784e-17]","[0.004938109078292995, -8.975543540486152e-15]","[-0.004933486824917342, 8.975543540486152e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_115_LVCableDist_mvgd_0_lvgd_1000_116,"[0.0021820119257789606, 0.0]","[-0.002181773760000026, 0.0]","[0.0005468490390101871, 0.0]","[-0.000546804045833664, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_115_LVCableDist_mvgd_0_lvgd_1000_117,"[0.017486966177906533, 7.318093989850058e-15]","[-0.017477607773253117, -7.318093989850053e-15]","[0.004386637782740366, -1.2487098580988533e-14]","[-0.004382984153808824, 1.2487098580988537e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_117_LVCableDist_mvgd_0_lvgd_1000_118,"[0.0021822666271490852, 0.0]","[-0.002181773759876983, 0.0]","[0.000546897155954226, 0.0]","[-0.0005468040457505886, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_117_LVCableDist_mvgd_0_lvgd_1000_119,"[0.01529534114728808, 1.4518194416161994e-14]","[-0.015288173756668962, -1.4518194416161984e-14]","[0.0038360869943557347, -1.4203544913393692e-14]","[-0.0038332887625310294, 1.4203544913393695e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_119_LVCableDist_mvgd_0_lvgd_1000_120,"[0.0021820124202050505, 0.0]","[-0.0021817737598067866, 0.0]","[0.0005468491323153686, 0.0]","[-0.0005468040456976515, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_119_LVCableDist_mvgd_0_lvgd_1000_121,"[0.013106161337737201, 2.883973289309379e-14]","[-0.013100893833150811, -2.8839732893093763e-14]","[0.0032864396264343206, -1.045600274581509e-14]","[-0.0032843831319925216, 1.04560027458151e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_11_LVCableDist_mvgd_0_lvgd_1000_12,"[0.0021819964910289517, -9.832796961509423e-18]","[-0.0021817737630559692, 9.832796961509425e-18]","[0.0005468461246557863, 8.975543540485732e-16]","[-0.0005468040479181043, -8.975543540485732e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_11_LVCableDist_mvgd_0_lvgd_1000_13,"[0.059952061266273164, -1.290315054498413e-13]","[-0.059843937989772576, 1.290315054498418e-13]","[0.015169414123424447, -2.1162118551525966e-14]","[-0.015127201551322071, 2.1162118551526153e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_11_LVStation_mvgd_0_lvgd_1000,"[0.06225019003034275, -1.4337270952069493e-13]","[-0.062134057757635815, 1.4337270952069546e-13]","[0.015761599623634874, -2.3114552011007045e-14]","[-0.015716260247196093, 2.3114552011007263e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_121_LVCableDist_mvgd_0_lvgd_1000_122,"[0.0021822675147219876, 0.0]","[-0.002181773759697363, 0.0]","[0.0005468973235438578, 0.0]","[-0.0005468040456301231, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_121_LVCableDist_mvgd_0_lvgd_1000_123,"[0.010918626319759978, 2.8820067299170744e-14]","[-0.01091496748548512, -2.882006729917073e-14]","[0.0027374858044009465, -8.660894037717872e-15]","[-0.002736057353371374, 8.66089403771788e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_123_LVCableDist_mvgd_0_lvgd_1000_124,"[0.0021820127838556367, 0.0]","[-0.0021817737596513116, 0.0]","[0.0005468492009388245, 0.0]","[-0.0005468040455925503, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_123_LVCableDist_mvgd_0_lvgd_1000_125,"[0.008732954703033872, 2.880040170524771e-14]","[-0.008730612508341907, -2.8800401705247693e-14]","[0.0021892081481774553, -6.865785329620652e-15]","[-0.002188293728401138, 6.8657853296206604e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_125_LVCableDist_mvgd_0_lvgd_1000_126,"[0.0021822681307499306, 0.0]","[-0.002181773759571061, 0.0]","[0.0005468974398580992, 0.0]","[-0.0005468040455433565, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_125_LVCableDist_mvgd_0_lvgd_1000_127,"[0.006548344379051558, 1.4360869664777814e-14]","[-0.006547026732061291, -1.4360869664777808e-14]","[0.001641396284091053, 1.5732475138412353e-16]","[-0.0016408818595343585, -1.5732475138412037e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_127_LVCableDist_mvgd_0_lvgd_1000_128,"[0.0021820130157476796, 0.0]","[-0.0021817737595510875, 0.0]","[0.0005468492446974513, 0.0]","[-0.0005468040455242718, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_127_LVCableDist_mvgd_0_lvgd_1000_129,"[0.00436501371782401, 7.219766020234935e-15]","[-0.004364428006762751, -7.219766020234932e-15]","[0.0010940326102575621, -3.511555040502392e-15]","[-0.001093803941915233, 3.5115550405023923e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_129_LVCableDist_mvgd_0_lvgd_1000_130,"[0.002182268473536051, 0.0]","[-0.0021817737594987813, 0.0]","[0.0005468975045800294, 0.0]","[-0.0005468040454940648, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_129_LVCableDist_mvgd_0_lvgd_1000_131,"[0.002182159534738472, 7.160769238465888e-15]","[-0.0021820131137096424, -7.160769238465886e-15]","[0.0005469064326512008, 1.8737710837892846e-15]","[-0.0005468492681956195, -1.873771083789284e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_131_LVCableDist_mvgd_0_lvgd_1000_132,"[0.002182013115251925, 0.0]","[-0.002181773759516616, 0.0]","[0.0005468492634744816, 0.0]","[-0.0005468040454969083, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_13_LVCableDist_mvgd_0_lvgd_1000_14,"[0.002182235886739067, 0.0]","[-0.00218177376301612, 0.0]","[0.0005468913501626036, 0.0]","[-0.0005468040478879652, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_13_LVCableDist_mvgd_0_lvgd_1000_15,"[0.05766170210272037, -1.2907083663768782e-13]","[-0.05756131666606087, 1.2907083663768827e-13]","[0.014580310202065778, -1.7571901135331846e-14]","[-0.01454111857173265, 1.7571901135332016e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_15_LVCableDist_mvgd_0_lvgd_1000_16,"[0.002181998129226293, 0.0]","[-0.0021817737629690357, 0.0]","[0.0005468464340891607, 0.0]","[-0.0005468040478543971, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_15_LVCableDist_mvgd_0_lvgd_1000_17,"[0.05537931853652038, -1.2189040180529965e-13]","[-0.05528639606274481, 1.2189040180530006e-13]","[0.01399427213854483, -1.7493238759639926e-14]","[-0.01395799413485188, 1.7493238759640087e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_17_LVCableDist_mvgd_0_lvgd_1000_18,"[0.0021822391656268255, 0.0]","[-0.002181773762909498, 0.0]","[0.0005468919695433518, 0.0]","[-0.000546804047816273, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_17_LVCableDist_mvgd_0_lvgd_1000_19,"[0.05310415689680911, -1.1476896375468045e-13]","[-0.05301842213051602, 1.147689637546808e-13]","[0.013411102166186639, -1.2029250259656498e-14]","[-0.013377630326255783, 1.2029250259656634e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_19_LVCableDist_mvgd_0_lvgd_1000_20,"[0.002181999661654335, 0.0]","[-0.0021817737628532785, 0.0]","[0.0005468467235337014, 0.0]","[-0.0005468040477778571, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_19_LVCableDist_mvgd_0_lvgd_1000_21,"[0.05083642246856437, -1.0747053535875397e-13]","[-0.05075759666694623, 1.0747053535875428e-13]","[0.012830783603556207, -2.2721240132547562e-14]","[-0.012800009102985878, 2.272124013254769e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_1_LVCableDist_mvgd_0_lvgd_1000_2,"[0.03421129678287775, 0.0]","[-0.03399999999494422, 0.0]","[0.008541928117339379, 0.0]","[-0.008521203222599116, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_1_LVStation_mvgd_0_lvgd_1000,"[0.03424736040104024, -3.5508862283482443e-15]","[-0.034211296774504275, 3.550886228348245e-15]","[0.008573538056005138, -3.629548604040313e-15]","[-0.00854192813045691, 3.629548604040314e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_21_LVCableDist_mvgd_0_lvgd_1000_22,"[0.002182242221730437, 0.0]","[-0.002181773762797833, 0.0]","[0.0005468925468287353, 0.0]","[-0.0005468040477356134, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_21_LVCableDist_mvgd_0_lvgd_1000_23,"[0.04857535444496414, -1.0034909730813466e-13]","[-0.0485031585061841, 1.0034909730813494e-13]","[0.012253116556937454, -1.7257251632564055e-14]","[-0.012224930431156899, 1.7257251632564156e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_23_LVCableDist_mvgd_0_lvgd_1000_24,"[0.002182001084359886, 0.0]","[-0.002181773762728095, 0.0]","[0.0005468469922422272, 0.0]","[-0.0005468040476917866, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_23_LVCableDist_mvgd_0_lvgd_1000_25,"[0.046321157421603476, -1.0752953214052367e-13]","[-0.04625530900010311, 1.0752953214052399e-13]","[0.0116780834396134, -1.7335914008256265e-14]","[-0.011652375457665624, 1.733591400825639e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_25_LVCableDist_mvgd_0_lvgd_1000_26,"[0.0021822450470477452, 0.0]","[-0.0021817737626626463, 0.0]","[0.000546893080509853, 0.0]","[-0.0005468040476453242, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_25_LVCableDist_mvgd_0_lvgd_1000_27,"[0.04407306395284952, -1.147492981607588e-13]","[-0.044013280365782406, 1.1474929816075913e-13]","[0.011105482377758625, -1.3824358967754131e-14]","[-0.011082142177005505, 1.3824358967754268e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_27_LVCableDist_mvgd_0_lvgd_1000_28,"[0.002182002393598404, 0.0]","[-0.002181773762591622, 0.0]","[0.0005468472395111643, 0.0]","[-0.0005468040475996615, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_27_LVCableDist_mvgd_0_lvgd_1000_29,"[0.041831277972043925, -1.0760819451621642e-13]","[-0.041777273546444234, 1.0760819451621675e-13]","[0.010535294937985563, -1.0155479175867763e-14]","[-0.01051421098841193, 1.0155479175867889e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_29_LVCableDist_mvgd_0_lvgd_1000_30,"[0.002182247634112803, 0.0]","[-0.0021817737625232096, 0.0]","[0.00054689356917635, 0.0]","[-0.0005468040475491238, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_29_LVCableDist_mvgd_0_lvgd_1000_31,"[0.03959502591223585, -1.0764752570406281e-13]","[-0.03954651466179593, 1.0764752570406311e-13]","[0.009967317419598538, -6.565261759673492e-15]","[-0.009948378068856976, 6.565261759673608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_31_LVCableDist_mvgd_0_lvgd_1000_32,"[0.0021820035858930087, 0.0]","[-0.002181773762457719, 0.0]","[0.000546847464680455, 0.0]","[-0.0005468040475008779, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_31_LVCableDist_mvgd_0_lvgd_1000_33,"[0.03736451107585786, -1.0042775968382823e-13]","[-0.03732120428702618, 1.0042775968382851e-13]","[0.009401530604389138, -1.0076816800175883e-14]","[-0.009384623135384813, 1.0076816800175997e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_33_LVCableDist_mvgd_0_lvgd_1000_34,"[0.00218224997598176, 0.0]","[-0.0021817737623779573, 0.0]","[0.00054689401152012, 0.0]","[-0.0005468040474504104, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_33_LVCableDist_mvgd_0_lvgd_1000_35,"[0.03513895431104618, -9.328665603928575e-14]","[-0.03510056298294085, 9.328665603928596e-14]","[0.008837729123924451, -6.407937008289439e-15]","[-0.008822740707385448, 6.407937008289524e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_35_LVCableDist_mvgd_0_lvgd_1000_36,"[0.0021820046580101975, 0.0]","[-0.0021817737623107494, 0.0]","[0.0005468476671494375, 0.0]","[-0.0005468040474026791, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_35_LVCableDist_mvgd_0_lvgd_1000_37,"[0.032918558324995746, -7.176501713604245e-14]","[-0.03288479100093364, 7.176501713604259e-14]","[0.0082758930401291, -4.376841173115876e-15]","[-0.008262709888010433, 4.376841173115929e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_37_LVCableDist_mvgd_0_lvgd_1000_38,"[0.0021822520662983748, -2.4581992403796742e-18]","[-0.002181773762227958, 2.4581992403796777e-18]","[0.0005468944063403191, 2.2438858851215207e-16]","[-0.0005468040473493331, -2.2438858851215207e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_37_LVCableDist_mvgd_0_lvgd_1000_39,"[0.03070253893473574, -7.894545196843145e-14]","[-0.03067310389862295, 7.894545196843162e-14]","[0.007715815481380656, -4.4555035488080786e-15]","[-0.007704323704360373, 4.455503548808145e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_39_LVCableDist_mvgd_0_lvgd_1000_40,"[0.002182005607038995, 0.0]","[-0.0021817737621650747, 0.0]","[0.0005468478463640097, 0.0]","[-0.0005468040473036037, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_39_LVCableDist_mvgd_0_lvgd_1000_41,"[0.028491098291764237, -7.896511756235466e-14]","[-0.028465701650952212, 7.896511756235482e-14]","[0.0071574758575327375, -2.6603948407109247e-15]","[-0.0071475607165368965, 2.6603948407109863e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_3_LVCableDist_mvgd_0_lvgd_1000_4,"[0.002181995862045482, 0.0]","[-0.002181773763093387, 0.0]","[0.0005468460058492126, 0.0]","[-0.0005468040479432452, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_3_LVCableDist_mvgd_0_lvgd_1000_5,"[0.00218277695682207, -1.8000251065778956e-15]","[-0.0021822331022887777, 1.800025106577896e-15]","[0.0005471031515090854, 4.291115831012677e-16]","[-0.0005468908244372207, -4.291115831012676e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_3_LVStation_mvgd_0_lvgd_1000,"[0.004366947444111131, -1.0750986654659818e-14]","[-0.004364772818790382, 1.075098665465983e-14]","[0.001094798156355783, -1.9131022716352422e-15]","[-0.001093949157591421, 1.913102271635247e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_41_LVCableDist_mvgd_0_lvgd_1000_42,"[0.002182253899341, 0.0]","[-0.00218177376208475, 0.0]","[0.0005468947525615962, 0.0]","[-0.0005468040472536281, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_41_LVCableDist_mvgd_0_lvgd_1000_43,"[0.026283447751853567, -6.466324467934614e-14]","[-0.02626179538393656, 6.466324467934627e-14]","[0.006600665963320024, 2.882256034965006e-15]","[-0.006592212629574828, -2.882256034964964e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_43_LVCableDist_mvgd_0_lvgd_1000_44,"[0.0021820064303750665, 0.0]","[-0.0021817737620310313, 0.0]","[0.0005468480018380986, 0.0]","[-0.0005468040472115302, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_43_LVCableDist_mvgd_0_lvgd_1000_45,"[0.024079788953886842, -5.026304382672236e-14]","[-0.024061584846138632, 5.026304382672243e-14]","[0.006045364626911554, -5.506366298451594e-16]","[-0.006038257533640321, 5.506366298451881e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_45_LVCableDist_mvgd_0_lvgd_1000_46,"[0.0021822554700465834, 0.0]","[-0.002181773761958541, 0.0]","[0.0005468950492255986, 0.0]","[-0.0005468040471633595, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_45_LVCableDist_mvgd_0_lvgd_1000_47,"[0.021879329376431483, -5.748280984695744e-14]","[-0.021864277317567172, 5.748280984695752e-14]","[0.005491362483393478, 2.9609184106571013e-15]","[-0.005485485986299944, -2.960918410657067e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_47_LVCableDist_mvgd_0_lvgd_1000_48,"[0.0021820071257270643, 0.0]","[-0.0021817737619048423, 0.0]","[0.0005468481331397789, 0.0]","[-0.0005468040471266904, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_47_LVCableDist_mvgd_0_lvgd_1000_49,"[0.01968227019227601, -4.316127137002575e-14]","[-0.01967007237304688, 4.3161271370025804e-14]","[0.0049386378519728266, 6.7084605782358814e-15]","[-0.0049338756828972465, -6.7084605782358625e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_49_LVCableDist_mvgd_0_lvgd_1000_50,"[0.00218225677402498, 0.0]","[-0.0021817737618404164, 0.0]","[0.0005468952955087572, 0.0]","[-0.0005468040470826399, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_49_LVCableDist_mvgd_0_lvgd_1000_51,"[0.01748781559947413, -4.3161271370025804e-14]","[-0.01747817404461312, 4.3161271370025855e-14]","[0.004386980386026172, 6.7084605782358625e-15]","[-0.0043832162119933306, -6.708460578235842e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_51_LVCableDist_mvgd_0_lvgd_1000_52,"[0.002182007691165106, 0.0]","[-0.0021817737618025366, 0.0]","[0.0005468482399037198, 0.0]","[-0.0005468040470513669, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_51_LVCableDist_mvgd_0_lvgd_1000_53,"[0.01529616635398196, -2.878073611132492e-14]","[-0.015288781787829936, 2.878073611132494e-14]","[0.003836367970583502, 5.070676621522974e-15]","[-0.0038334849509301413, -5.070676621522964e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_53_LVCableDist_mvgd_0_lvgd_1000_54,"[0.002182257807624427, 0.0]","[-0.0021817737617397773, 0.0]","[0.0005468954907241305, 0.0]","[-0.0005468040470161776, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_53_LVCableDist_mvgd_0_lvgd_1000_55,"[0.013106523980742775, -2.8800401705247984e-14]","[-0.01310109699528932, 2.880040170524801e-14]","[0.003286589458544143, 6.865785329620201e-15]","[-0.003284470700935541, -6.8657853296201926e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_55_LVCableDist_mvgd_0_lvgd_1000_56,"[0.0021820081250871594, 0.0]","[-0.0021817737617138367, 0.0]","[0.000546848321837865, 0.0]","[-0.0005468040469942093, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_55_LVCableDist_mvgd_0_lvgd_1000_57,"[0.010919088870804856, -2.158063568501296e-14]","[-0.010915319059489517, 2.158063568501297e-14]","[0.0027376223773154505, 3.3542302891179056e-15]","[-0.002736150599571459, -3.354230289117901e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_57_LVCableDist_mvgd_0_lvgd_1000_58,"[0.0021822585679431208, 0.0]","[-0.002181773761672284, 0.0]","[0.0005468956343220834, 0.0]","[-0.0005468040469654921, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_57_LVCableDist_mvgd_0_lvgd_1000_59,"[0.008733060492165904, -1.4459197634393157e-14]","[-0.00873064735064537, 1.4459197634393166e-14]","[0.002189254963363072, 8.818218789101813e-15]","[-0.0021883128451279823, -8.81821878910181e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_59_LVCableDist_mvgd_0_lvgd_1000_60,"[0.0021820084262752087, 0.0]","[-0.0021817737616480026, 0.0]","[0.0005468483787071377, 0.0]","[-0.000546804046951993, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_59_LVCableDist_mvgd_0_lvgd_1000_61,"[0.006548638925016984, -7.20010042631201e-15]","[-0.006547281255535305, 7.20010042631201e-15]","[0.0016414644644402374, 1.7164463324050448e-15]","[-0.001640934414642068, -1.7164463324050442e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_5_LVCableDist_mvgd_0_lvgd_1000_6,"[0.002182233102367266, 0.0]","[-0.002181773763092448, 0.0]","[0.0005468908241897653, 0.0]","[-0.0005468040479401785, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_61_LVCableDist_mvgd_0_lvgd_1000_62,"[0.002182259052805713, 0.0]","[-0.0021817737616173956, 0.0]","[0.0005468957258970759, 0.0]","[-0.0005468040469321184, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_61_LVCableDist_mvgd_0_lvgd_1000_63,"[0.004365022203407952, -7.180434832388961e-15]","[-0.004364418745662434, 7.180434832388962e-15]","[0.0010940386866956785, -7.866237569219597e-17]","[-0.0010938030898434755, 7.866237569219661e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1000_63_LVCableDist_mvgd_0_lvgd_1000_64,"[0.002182008593888898, 0.0]","[-0.002181773761619475, 0.0]","[0.000546848410352728, 0.0]","[-0.0005468040469273916, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_63_LVCableDist_mvgd_0_lvgd_1000_65,"[0.002182410152457209, 0.0]","[-0.002182259260166494, 0.0]","[0.0005469546773988087, 0.0]","[-0.0005468957673111048, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_65_LVCableDist_mvgd_0_lvgd_1000_66,"[0.0021822592608542603, 0.0]","[-0.0021817737615951894, 0.0]","[0.0005468957651895627, 0.0]","[-0.0005468040469168416, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_67_LVCableDist_mvgd_0_lvgd_1000_68,"[0.0021819966025852307, 0.0]","[-0.0021817737630479075, 0.0]","[0.0005468461457242831, 0.0]","[-0.0005468040479103824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_67_LVCableDist_mvgd_0_lvgd_1000_69,"[0.07147952776724303, -1.4331371273892637e-13]","[-0.07133301633753625, 1.4331371273892688e-13]","[0.018144581172735243, -2.849987813529865e-14]","[-0.01808738142361104, 2.849987813529885e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_67_LVStation_mvgd_0_lvgd_1000,"[0.0738171101039991, -1.2179207383568322e-13]","[-0.07366152437043413, 1.2179207383568365e-13]","[0.018752169778696818, -2.6468782300125118e-14]","[-0.01869142731686274, 2.6468782300125285e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_69_LVCableDist_mvgd_0_lvgd_1000_70,"[0.002182236353765333, 0.0]","[-0.002181773762984946, 0.0]","[0.0005468914383740015, 0.0]","[-0.0005468040478650337, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_69_LVCableDist_mvgd_0_lvgd_1000_71,"[0.06915077998318125, -1.3617260909438434e-13]","[-0.06901308954685219, 1.3617260909438481e-13]","[0.01754048998697843, -2.4830998343412467e-14]","[-0.017486734055235854, 2.4830998343412657e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_71_LVCableDist_mvgd_0_lvgd_1000_72,"[0.002181998472145437, 0.0]","[-0.0021817737629180197, 0.0]","[0.0005468464988443874, 0.0]","[-0.0005468040478172889, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_71_LVCableDist_mvgd_0_lvgd_1000_73,"[0.06683109107406311, -1.3611361231261575e-13]","[-0.0667019642066221, 1.3611361231261623e-13]","[0.01693988755824345, -3.0216324467704134e-14]","[-0.016889474942397707, 3.0216324467704324e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_73_LVCableDist_mvgd_0_lvgd_1000_74,"[0.002182240122300154, 0.0]","[-0.00218177376282691, 0.0]","[0.0005468921502324459, 0.0]","[-0.0005468040477594681, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_73_LVCableDist_mvgd_0_lvgd_1000_75,"[0.06451972408363071, -1.3619227468830833e-13]","[-0.06439890305356372, 1.3619227468830879e-13]","[0.01634258279410014, -2.3035889635315662e-14]","[-0.01629541287280055, 2.303588963531584e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_75_LVCableDist_mvgd_0_lvgd_1000_76,"[0.002182000246728451, 0.0]","[-0.0021817737627424865, 0.0]","[0.0005468468340050582, 0.0]","[-0.0005468040476987899, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_75_LVCableDist_mvgd_0_lvgd_1000_77,"[0.062216902806181945, -1.1465097019114272e-13]","[-0.06210412596803699, 1.1465097019114308e-13]","[0.015748566040784794, -2.279990250823956e-14]","[-0.015704536664634266, 2.2799902508239693e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_77_LVCableDist_mvgd_0_lvgd_1000_78,"[0.0021822436900520745, 0.0]","[-0.002181773762634831, 0.0]","[0.0005468928241416347, 0.0]","[-0.0005468040476291918, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_77_LVCableDist_mvgd_0_lvgd_1000_79,"[0.059921882277284066, -1.0749020095267738e-13]","[-0.059816887686846336, 1.074902009526777e-13]","[0.01515764384250171, -2.0926131424450414e-14]","[-0.015116652745462686, 2.0926131424450546e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_79_LVCableDist_mvgd_0_lvgd_1000_80,"[0.002182001922042487, 0.0]","[-0.002181773762527618, 0.0]","[0.0005468471503962688, 0.0]","[-0.0005468040475568355, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_79_LVCableDist_mvgd_0_lvgd_1000_81,"[0.05763488576414738, -1.0743120417090862e-13]","[-0.05753740777428595, 1.0743120417090892e-13]","[0.014569805597062627, -2.6311457548742093e-14]","[-0.014531749067436482, 2.6311457548742207e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_7_LVCableDist_mvgd_0_lvgd_1000_8,"[0.0021819958620420046, 0.0]","[-0.0021817737630899104, 0.0]","[0.0005468460058493077, 0.0]","[-0.0005468040479433404, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_7_LVCableDist_mvgd_0_lvgd_1000_9,"[0.0021827769568203317, -1.8000251065778956e-15]","[-0.0021822331022870404, 1.800025106577896e-15]","[0.0005471031515091332, 4.291115831012677e-16]","[-0.0005468908244372689, -4.291115831012676e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1000_7_LVStation_mvgd_0_lvgd_1000,"[0.004366947444107616, -1.0750986654659818e-14]","[-0.004364772818786871, 1.075098665465983e-14]","[0.0010947981563545729, -1.9131022716352422e-15]","[-0.001093949157590212, 1.913102271635247e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1000_81_LVCableDist_mvgd_0_lvgd_1000_82,"[0.0021822470483022255, 0.0]","[-0.0021817737624089976, 0.0]","[0.000546893458455092, 0.0]","[-0.0005468040474749121, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_81_LVCableDist_mvgd_0_lvgd_1000_83,"[0.05535516072536158, -8.587023407981963e-14]","[-0.05526493340058765, 8.587023407981984e-14]","[0.013984855610921448, -2.787057912976308e-14]","[-0.013949629824431308, 2.7870579129763162e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_83_LVCableDist_mvgd_0_lvgd_1000_84,"[0.002182003493982291, 0.0]","[-0.002181773762296648, 0.0]","[0.0005468474472396711, 0.0]","[-0.0005468040473930129, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_83_LVCableDist_mvgd_0_lvgd_1000_85,"[0.05308292990601621, -7.154869560288836e-14]","[-0.05299968382949857, 7.154869560288851e-14]","[0.013402782379037368, -2.4123036962184565e-14]","[-0.013370282152250204, 2.412303696218463e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_85_LVCableDist_mvgd_0_lvgd_1000_86,"[0.002182250188711678, 0.0]","[-0.002181773762155728, 0.0]","[0.0005468940516005559, 0.0]","[-0.0005468040473009121, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_85_LVCableDist_mvgd_0_lvgd_1000_87,"[0.05081743364025011, -8.587023407982004e-14]","[-0.050740899119287204, 8.587023407982023e-14]","[0.012823388102369701, -2.7870579129763235e-14]","[-0.012793508144149507, 2.7870579129763314e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_87_LVCableDist_mvgd_0_lvgd_1000_88,"[0.002182004958581925, 0.0]","[-0.002181773762020171, 0.0]","[0.0005468477237945163, 0.0]","[-0.0005468040472102434, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_87_LVCableDist_mvgd_0_lvgd_1000_89,"[0.04855889416023289, -8.581123729805115e-14]","[-0.04848879825244471, 8.581123729805135e-14]","[0.012246660421904275, -3.3255905254054914e-14]","[-0.012219294172403194, 3.3255905254054996e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_89_LVCableDist_mvgd_0_lvgd_1000_90,"[0.0021822531033531614, 0.0]","[-0.0021817737618733037, 0.0]","[0.0005468946020828747, 0.0]","[-0.0005468040471092991, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_89_LVCableDist_mvgd_0_lvgd_1000_91,"[0.046306545148697406, -7.861113687173952e-14]","[-0.0462426146503259, 7.861113687173971e-14]","[0.01167239957166025, -3.4972351586460093e-14]","[-0.011647440368985388, 3.497235158646017e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_91_LVCableDist_mvgd_0_lvgd_1000_92,"[0.0021820063121623916, 0.0]","[-0.0021817737617418845, 0.0]","[0.0005468479793622996, 0.0]","[-0.0005468040470132982, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_91_LVCableDist_mvgd_0_lvgd_1000_93,"[0.04406060833787031, -7.143070203935086e-14]","[-0.04400256703671132, 7.143070203935102e-14]","[0.011100592390728971, -3.489368921076806e-14]","[-0.011077932398455465, 3.489368921076813e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_93_LVCableDist_mvgd_0_lvgd_1000_94,"[0.0021822557847762892, 0.0]","[-0.0021817737615727, 0.0]","[0.0005468951084965091, 0.0]","[-0.0005468040469040995, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_93_LVCableDist_mvgd_0_lvgd_1000_95,"[0.04182031125171013, -6.426993280088519e-14]","[-0.04176788269058401, 6.426993280088533e-14]","[0.010531037290775976, -3.30199181269788e-14]","[-0.010510568576837695, 3.3019918126978854e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_95_LVCableDist_mvgd_0_lvgd_1000_96,"[0.0021820075512018274, 0.0]","[-0.002181773761427704, 0.0]","[0.0005468482132860302, 0.0]","[-0.0005468040468040803, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_95_LVCableDist_mvgd_0_lvgd_1000_97,"[0.039585875139272746, -4.27089627097957e-14]","[-0.03953878010277272, 4.2708962709795774e-14]","[0.009963720364079174, -3.4579039707999746e-14]","[-0.009945333919566361, 3.4579039707999784e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1000_97_LVCableDist_mvgd_0_lvgd_1000_98,"[0.0021822582260347468, 0.0]","[-0.002181773761262005, 0.0]","[0.0005468955695348378, 0.0]","[-0.0005468040466924857, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1000_97_LVCableDist_mvgd_0_lvgd_1000_99,"[0.03735652187673521, -5.703050118672748e-14]","[-0.0373144809226817, 5.70305011867276e-14]","[0.009398438350217553, -3.8326581875578424e-14]","[-0.009382025077685744, 3.832658187557847e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_100_LVCableDist_mvgd_0_lvgd_1001_99,"[0.002338305895649815, 0.0]","[-0.0023379352962174076, 0.0]","[0.0005859781663972071, 0.0]","[-0.0005859418164162039, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_101_LVCableDist_mvgd_0_lvgd_1001_102,"[0.002338127255344535, 0.0]","[-0.0023379352961613495, 0.0]","[0.0005859780810334932, 0.0]","[-0.0005859418169931558, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_101_LVCableDist_mvgd_0_lvgd_1001_103,"[0.03284597212163661, -1.3541403339173177e-13]","[-0.032824579959951916, 1.3541403339173207e-13]","[0.00825808670402812, -1.1163345888075554e-14]","[-0.008247596095951163, 1.1163345888075705e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_101_LVCableDist_mvgd_0_lvgd_1001_99,"[0.035208644905315015, -1.211312919510271e-13]","[-0.0351840993765922, 1.2113129195102737e-13]","[0.00885610178912103, -1.8242896086845788e-14]","[-0.008844064785770541, 1.8242896086845936e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_103_LVCableDist_mvgd_0_lvgd_1001_104,"[0.0023383069536878232, 7.727565197729046e-19]","[-0.002337935296130401, -7.727565197729019e-19]","[0.0005859782700665774, -2.2278145675112037e-16]","[-0.0005859418163001366, 2.2278145675112037e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_103_LVCableDist_mvgd_0_lvgd_1001_105,"[0.03048627300671125, -1.2827266267137986e-13]","[-0.030467819647599502, 1.2827266267138014e-13]","[0.007661617824323894, -1.4703120987460898e-14]","[-0.007652568390190109, 1.4703120987461024e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_105_LVCableDist_mvgd_0_lvgd_1001_106,"[0.002338127765860351, 0.0]","[-0.0023379352960643603, 0.0]","[0.0005859781774381497, 0.0]","[-0.0005859418169352046, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_105_LVCableDist_mvgd_0_lvgd_1001_107,"[0.028129691882264298, -1.2822320625411466e-13]","[-0.02811396176284605, 1.2822320625411497e-13]","[0.0070665902116748384, -2.896113421953276e-14]","[-0.007058876240536586, 2.8961134219532904e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_107_LVCableDist_mvgd_0_lvgd_1001_108,"[0.002338307869799733, 0.0]","[-0.0023379352960539008, 0.0]","[0.0005859783598244065, 0.0]","[-0.0005859418161942791, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_107_LVCableDist_mvgd_0_lvgd_1001_109,"[0.025775653893672583, -8.549862297516513e-14]","[-0.0257624313117997, 8.549862297516527e-14]","[0.006472897878750222, -1.455475173566468e-14]","[-0.006466413591363166, 1.4554751735664753e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_109_LVCableDist_mvgd_0_lvgd_1001_110,"[0.0023381282025304456, 0.0]","[-0.0023379352959959293, 0.0]","[0.0005859782598929587, 0.0]","[-0.000585941816883393, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_109_LVCableDist_mvgd_0_lvgd_1001_111,"[0.023424303109913894, -1.0686091461464022e-13]","[-0.023413371508862652, 1.0686091461464043e-13]","[0.005880435330046737, -2.1757942977598892e-14]","[-0.005875074528086998, 2.1757942977598986e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_10_LVCableDist_mvgd_0_lvgd_1001_9,"[0.0023381264824370563, 0.0]","[-0.0023379352962818265, 0.0]","[0.0005859779350857548, 0.0]","[-0.0005859418170822806, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_111_LVCableDist_mvgd_0_lvgd_1001_112,"[0.0023383086422135214, 0.0]","[-0.00233793529598275, 0.0]","[0.0005859784354989216, 0.0]","[-0.0005859418161001599, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_111_LVCableDist_mvgd_0_lvgd_1001_113,"[0.021075062867401486, -6.409923902274134e-14]","[-0.02106620557255976, 6.40992390227414e-14]","[0.005289096090238059, -1.8045070417784532e-14]","[-0.005284752517569897, 1.8045070417784563e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_113_LVCableDist_mvgd_0_lvgd_1001_114,"[0.002338128564486418, 0.0]","[-0.0023379352959319163, 0.0]","[0.0005859783282392617, 0.0]","[-0.0005859418168385563, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_113_LVCableDist_mvgd_0_lvgd_1001_115,"[0.018728077008832302, -7.834488815049685e-14]","[-0.018721076636790717, 7.834488815049698e-14]","[0.004698774187610226, -2.1659030143068026e-14]","[-0.004695341240507279, 2.165903014306808e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_115_LVCableDist_mvgd_0_lvgd_1001_116,"[0.002338309269443461, 0.0]","[-0.002337935295928269, 0.0]","[0.0005859784969470838, 0.0]","[-0.000585941816021577, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_115_LVCableDist_mvgd_0_lvgd_1001_117,"[0.016382767368193964, -5.70073247196547e-14]","[-0.016377406439502265, 5.700732471965475e-14]","[0.004109362740890778, -7.32683228509796e-15]","[-0.004106733768528745, 7.32683228509799e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_117_LVCableDist_mvgd_0_lvgd_1001_118,"[0.0023381288510271143, 0.0]","[-0.002337935295874124, 0.0]","[0.0005859783823461433, 0.0]","[-0.0005859418168025778, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_117_LVCableDist_mvgd_0_lvgd_1001_119,"[0.014039277589349577, -5.701968882397113e-14]","[-0.014035338063154944, 5.70196888239712e-14]","[0.0035207553841970175, -3.7623289770800195e-15]","[-0.0035188234604426084, 3.762328977080048e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_119_LVCableDist_mvgd_0_lvgd_1001_120,"[0.0023383097502589953, 0.0]","[-0.002337935295880491, 0.0]","[0.0005859785440494371, 0.0]","[-0.0005859418159587954, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_119_LVCableDist_mvgd_0_lvgd_1001_121,"[0.011697028313816738, -4.9878318103618866e-14]","[-0.01169429207545481, 4.987831810361891e-14]","[0.002932844913453853, -7.302104076465262e-15]","[-0.0029315030759769663, 7.302104076465284e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_11_LVCableDist_mvgd_0_lvgd_1001_12,"[0.0023381259352385944, 0.0]","[-0.0023379352963522407, 0.0]","[0.0005859778317462816, 0.0]","[-0.0005859418171303102, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_11_LVCableDist_mvgd_0_lvgd_1001_13,"[0.009362380163274286, 1.603408283392219e-14]","[-0.00935730475409364, -1.6034082833922176e-14]","[0.0023485796032161697, 1.8378901234324667e-15]","[-0.0023460906481807147, -1.8378901234324608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_11_LVStation_mvgd_0_lvgd_1001,"[0.011708432903793798, 2.673377481013397e-14]","[-0.011700506098015028, -2.6733774810133936e-14]","[0.0029384447016634796, 9.273078237258083e-17]","[-0.0029345574361335646, -9.273078237256281e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_121_LVCableDist_mvgd_0_lvgd_1001_122,"[0.0023381290616056884, 0.0]","[-0.0023379352958342284, 0.0]","[0.0005859784221098235, 0.0]","[-0.0005859418167771914, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_121_LVCableDist_mvgd_0_lvgd_1001_123,"[0.009356163014794121, -2.850366235982743e-14]","[-0.009354411536877823, 2.850366235982744e-14]","[0.0023455246516924833, -3.663416142549022e-15]","[-0.002344665735765886, 3.6634161425490295e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_123_LVCableDist_mvgd_0_lvgd_1001_124,"[0.0023383100837304827, 0.0]","[-0.0023379352958484436, 0.0]","[0.0005859785767168258, 0.0]","[-0.0005859418159147278, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_123_LVCableDist_mvgd_0_lvgd_1001_125,"[0.007016101454138901, -1.2364104316381471e-17]","[-0.007015116157993028, 1.2364104316381706e-17]","[0.001758687155926066, 3.564503308017978e-15]","[-0.0017582039716710829, -3.564503308017978e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_125_LVCableDist_mvgd_0_lvgd_1001_126,"[0.00233812919580722, 0.0]","[-0.0023379352958089036, 0.0]","[0.0005859784474475373, 0.0]","[-0.0005859418167573891, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_125_LVCableDist_mvgd_0_lvgd_1001_127,"[0.004676986963151879, -7.129006616035956e-15]","[-0.004676549007005951, 7.129006616035957e-15]","[0.0011722255219008373, -2.472820863276341e-17]","[-0.001172010750418201, 2.4728208632763845e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_127_LVCableDist_mvgd_0_lvgd_1001_128,"[0.002338310269207684, 0.0]","[-0.002337935295834429, 0.0]","[0.0005859785948860687, 0.0]","[-0.000585941815890197, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_127_LVCableDist_mvgd_0_lvgd_1001_129,"[0.0023382387388488288, 7.129006616035957e-15]","[-0.0023381292523723994, -7.129006616035956e-15]","[0.0005860321523113782, 2.4728208632763845e-17]","[-0.0005859784606961562, -2.4728208632763442e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_129_LVCableDist_mvgd_0_lvgd_1001_130,"[0.00233812925336678, 0.0]","[-0.002337935295796028, 0.0]","[0.0005859784583162365, 0.0]","[-0.0005859418167497703, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_131_LVCableDist_mvgd_0_lvgd_1001_132,"[0.002338126158325139, 0.0]","[-0.002337935296308741, 0.0]","[0.0005859778738666677, 0.0]","[-0.0005859418170980012, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_131_LVCableDist_mvgd_0_lvgd_1001_133,"[0.07343996185479272, -3.350509468493641e-13]","[-0.0733522978365212, 3.350509468493657e-13]","[0.018633652781173356, -4.726729113754912e-15]","[-0.01859066278924579, 4.726729113755701e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_131_LVStation_mvgd_0_lvgd_1001,"[0.07587141858529625, -2.8517262874574537e-13]","[-0.0757780880140985, 2.8517262874574653e-13]","[0.019265399493188957, 2.5753749627103338e-15]","[-0.019219630652317896, -2.5753749627097622e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_133_LVCableDist_mvgd_0_lvgd_1001_134,"[0.0023383052534345808, 0.0]","[-0.002337935296234053, 0.0]","[0.0005859781034353281, 0.0]","[-0.0005859418164471806, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_133_LVCableDist_mvgd_0_lvgd_1001_135,"[0.07101399258214118, -3.421923175697179e-13]","[-0.07093182487616496, 3.421923175697195e-13]","[0.018004684687810506, -1.1869540143705256e-15]","[-0.0179643900596806, 1.186954014371347e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_135_LVCableDist_mvgd_0_lvgd_1001_136,"[0.002338127109189068, 0.0]","[-0.002337935296129993, 0.0]","[0.0005859780534149536, 0.0]","[-0.0005859418169797067, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_135_LVCableDist_mvgd_0_lvgd_1001_137,"[0.06859369776612995, -3.350756750580001e-13]","[-0.06851685447410992, 3.350756750580017e-13]","[0.01737841200871359, 2.402277502279301e-15]","[-0.017340728446303792, -2.402277502278514e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_137_LVCableDist_mvgd_0_lvgd_1001_138,"[0.0023383070392454164, 0.0]","[-0.0023379352960642046, 0.0]","[0.0005859782783780452, 0.0]","[-0.0005859418162132561, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_137_LVCableDist_mvgd_0_lvgd_1001_139,"[0.06617854743412571, -3.564132384888438e-13]","[-0.06610685658050794, 3.564132384888456e-13]","[0.016754750169490504, -1.1929920355691464e-14]","[-0.0167195933368575, 1.1929920355692354e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_139_LVCableDist_mvgd_0_lvgd_1001_140,"[0.0023381280047885095, 0.0]","[-0.002337935295950021, 0.0]","[0.0005859782225174308, 0.0]","[-0.0005859418168556836, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_139_LVCableDist_mvgd_0_lvgd_1001_141,"[0.06376872857506846, -3.350385827450543e-13]","[-0.06370201662087582, 3.350385827450559e-13]","[0.016133615116417817, -8.291232421776094e-15]","[-0.016100899910923464, 8.291232421776882e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_13_LVCableDist_mvgd_0_lvgd_1001_14,"[0.0023383043120597416, 0.0]","[-0.0023379352963440393, 0.0]","[0.0005859780112271291, 0.0]","[-0.0005859418165838493, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_13_LVCableDist_mvgd_0_lvgd_1001_15,"[0.007019000442609784, 8.892712113570127e-15]","[-0.007016144638113548, -8.89271211357012e-15]","[0.001760112635114575, 5.3776652228176334e-15]","[-0.001758712163009137, -5.37766522281763e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_141_LVCableDist_mvgd_0_lvgd_1001_142,"[0.0023383087168291398, 7.727565197745699e-19]","[-0.0023379352958798703, -7.727565197745671e-19]","[0.0005859784426940293, -2.227814567511228e-16]","[-0.0005859418159665569, 2.227814567511228e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_141_LVCableDist_mvgd_0_lvgd_1001_143,"[0.061363707903539365, -3.136515628969481e-13]","[-0.06130180123556433, 3.1365156289694943e-13]","[0.01551492146924514, -8.217047795878524e-15]","[-0.015484562751849068, 8.217047795879196e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_143_LVCableDist_mvgd_0_lvgd_1001_144,"[0.002338128843737191, 0.0]","[-0.0023379352957607928, 0.0]","[0.0005859783809148204, 0.0]","[-0.0005859418167270234, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_143_LVCableDist_mvgd_0_lvgd_1001_145,"[0.05896367239142677, -3.278848479203886e-13]","[-0.05890639593010903, 3.278848479203901e-13]","[0.014898584372524991, -1.5395510829180757e-14]","[-0.014870496285094839, 1.539551082918153e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_145_LVCableDist_mvgd_0_lvgd_1001_146,"[0.0023383102836032643, 0.0]","[-0.002337935295693436, 0.0]","[0.000585978596132217, 0.0]","[-0.000585941815710536, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_145_LVCableDist_mvgd_0_lvgd_1001_147,"[0.05656808564622896, -2.99393549664879e-13]","[-0.056515264241206196, 2.9939354966488025e-13]","[0.014284517689317027, -8.16759137861427e-15]","[-0.014258614338999472, 8.167591378614881e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_147_LVCableDist_mvgd_0_lvgd_1001_148,"[0.002338129624730783, 0.0]","[-0.002337935295561919, 0.0]","[0.0005859785283580293, 0.0]","[-0.0005859418165909679, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_147_LVCableDist_mvgd_0_lvgd_1001_149,"[0.054177134616292935, -3.065225562809163e-13]","[-0.05412859175056031, 3.0652255628091764e-13]","[0.013672635811650251, -8.19231958724771e-15]","[-0.013648830635397406, 8.192319587248368e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_149_LVCableDist_mvgd_0_lvgd_1001_150,"[0.002338311737116287, 0.0]","[-0.0023379352955001324, 0.0]","[0.000585978738457732, 0.0]","[-0.0005859418154503027, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_149_LVCableDist_mvgd_0_lvgd_1001_151,"[0.05179028001346447, -3.065101921766012e-13]","[-0.05174583910306535, 3.065101921766025e-13]","[0.013062851896548992, -1.1756822895266395e-14]","[-0.01304105829848012, 1.1756822895267052e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_151_LVCableDist_mvgd_0_lvgd_1001_152,"[0.002338130346555385, 0.0]","[-0.002337935295364586, 0.0]","[0.0005859786646241277, 0.0]","[-0.0005859418164560244, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_151_LVCableDist_mvgd_0_lvgd_1001_153,"[0.0494077087565891, -2.7090225140937134e-13]","[-0.04936719195311915, 2.7090225140937245e-13]","[0.012455079634218522, -9.396719280486277e-16]","[-0.012435210398374126, 9.396719280491665e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_153_LVCableDist_mvgd_0_lvgd_1001_154,"[0.0023383130750804343, 0.0]","[-0.0023379352953021887, 0.0]","[0.0005859788694499815, 0.0]","[-0.0005859418151898778, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_153_LVCableDist_mvgd_0_lvgd_1001_155,"[0.04702887887836028, -2.8519735695439395e-13]","[-0.046992108270711666, 2.8519735695439516e-13]","[0.011849231527716522, 9.704381578739264e-15]","[-0.011831199407387638, -9.70438157873871e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_155_LVCableDist_mvgd_0_lvgd_1001_156,"[0.0023381310080629472, 0.0]","[-0.002337935295162659, 0.0]","[0.0005859787894976503, 0.0]","[-0.0005859418163224532, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_155_LVCableDist_mvgd_0_lvgd_1001_157,"[0.044653977263012005, -2.994553701864674e-13]","[-0.044620773780142835, 2.994553701864687e-13]","[0.011245220617526593, 9.654925161472934e-15]","[-0.011228937797178432, -9.65492516147231e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_157_LVCableDist_mvgd_0_lvgd_1001_158,"[0.002338314295384741, 0.0]","[-0.00233793529511376, 0.0]","[0.0005859789889055733, 0.0]","[-0.0005859418149343101, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_157_LVCableDist_mvgd_0_lvgd_1001_159,"[0.042282459485389494, -2.923510917790654e-13]","[-0.04225264399817489, 2.923510917790667e-13]","[0.01064295880620859, 1.680865998614139e-14]","[-0.010628337441822778, -1.680865998614079e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_159_LVCableDist_mvgd_0_lvgd_1001_160,"[0.0023381316082244515, 0.0]","[-0.0023379352949817684, 0.0]","[0.0005859789027811241, 0.0]","[-0.0005859418161920207, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_159_LVCableDist_mvgd_0_lvgd_1001_161,"[0.03991451239064652, -2.923387276747502e-13]","[-0.039887904716685726, 2.923387276747514e-13]","[0.01004235853792948, 1.324415667812269e-14]","[-0.010029310268966455, -1.3244156678122107e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_15_LVCableDist_mvgd_0_lvgd_1001_16,"[0.002338126318009921, 0.0]","[-0.002337935296306789, 0.0]","[0.0005859779040319734, 0.0]","[-0.0005859418170960285, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_15_LVCableDist_mvgd_0_lvgd_1001_17,"[0.004678018320703757, 7.13827969427296e-15]","[-0.004676748740490122, -7.138279694272959e-15]","[0.0011727342575681512, -2.6486492723807083e-15]","[-0.0011721116618417437, 2.648649272380709e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_161_LVCableDist_mvgd_0_lvgd_1001_162,"[0.002338315396072698, -7.727565197792352e-19]","[-0.0023379352949309488, 7.727565197792354e-19]","[0.0005859790966372026, 2.2278145675113225e-16]","[-0.0005859418146878155, -2.2278145675113225e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_161_LVCableDist_mvgd_0_lvgd_1001_163,"[0.03754958932153178, -2.4247277367544717e-13]","[-0.03752600922530575, 2.4247277367544803e-13]","[0.00944333116939135, 2.4110764062607004e-14]","[-0.009431767609262622, -2.4110764062606582e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_163_LVCableDist_mvgd_0_lvgd_1001_164,"[0.002338132146051264, 0.0]","[-0.0023379352947968677, 0.0]","[0.0005859790042949046, 0.0]","[-0.0005859418160671186, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_163_LVCableDist_mvgd_0_lvgd_1001_165,"[0.03518787708025098, -2.4956468797853487e-13]","[-0.03516714338158467, 2.495646879785358e-13]","[0.008845788603094562, 1.3392525929919247e-14]","[-0.008835620901957105, -1.3392525929918802e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_165_LVCableDist_mvgd_0_lvgd_1001_166,"[0.00233831637538013, 0.0]","[-0.0023379352947625717, 0.0]","[0.0005859791924759786, 0.0]","[-0.0005859418144554053, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_165_LVCableDist_mvgd_0_lvgd_1001_167,"[0.032828827007416586, -2.353190388507797e-13]","[-0.03281075847829554, 2.3531903885078044e-13]","[0.008249641705676172, 1.700648565520287e-14]","[-0.008240780990226751, -1.7006485655202498e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_167_LVCableDist_mvgd_0_lvgd_1001_168,"[0.0023381326206950047, 0.0]","[-0.002337935294628561, 0.0]","[0.000585979093879255, 0.0]","[-0.0005859418159521751, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_167_LVCableDist_mvgd_0_lvgd_1001_169,"[0.030472625858870117, -2.1391965489835504e-13]","[-0.03045704043701495, 2.1391965489835572e-13]","[0.007654801893733751, 1.3516166973083278e-14]","[-0.007647158881549823, -1.3516166973082942e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_169_LVCableDist_mvgd_0_lvgd_1001_170,"[0.0023383172317157155, -7.727565197809462e-19]","[-0.0023379352946041815, 7.727565197809464e-19]","[0.0005859792762716613, 2.2278145675113516e-16]","[-0.0005859418142424873, -2.2278145675113516e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_169_LVCableDist_mvgd_0_lvgd_1001_171,"[0.028118723206783235, -2.281405758174789e-13]","[-0.02810543878763661, 2.281405758174796e-13]","[0.0070611796006443475, 2.7732006317624735e-15]","[-0.007054664988570476, -2.7732006317621244e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_171_LVCableDist_mvgd_0_lvgd_1001_172,"[0.0023381330313785443, 0.0]","[-0.002337935294470921, 0.0]","[0.0005859791713897771, 0.0]","[-0.0005859418158484832, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_171_LVCableDist_mvgd_0_lvgd_1001_173,"[0.025767305757792017, -1.7114561520213832e-13]","[-0.02575613951449606, 1.7114561520213877e-13]","[0.006468685813878642, 1.3664536224880658e-14]","[-0.0064632099445468515, -1.3664536224880448e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_173_LVCableDist_mvgd_0_lvgd_1001_174,"[0.0023383179636876908, 0.0]","[-0.002337935294458901, 0.0]","[0.0005859793478906665, 0.0]","[-0.0005859418140522937, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_173_LVCableDist_mvgd_0_lvgd_1001_175,"[0.02341782155252741, -1.6401660858610242e-13]","[-0.023408590621757354, 1.640166085861028e-13]","[0.005877230591256409, 1.368926443351346e-14]","[-0.0058727037894155485, -1.3689264433513266e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_175_LVCableDist_mvgd_0_lvgd_1001_176,"[0.002338133377450647, 0.0]","[-0.002337935294343249, 0.0]","[0.0005859792367016265, 0.0]","[-0.0005859418157578737, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_175_LVCableDist_mvgd_0_lvgd_1001_177,"[0.02107045724607981, -1.4261722463367714e-13]","[-0.021062978155543758, 1.4261722463367742e-13]","[0.005286724548779428, 1.019894575139414e-14]","[-0.005283056840543939, -1.0198945751393994e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_177_LVCableDist_mvgd_0_lvgd_1001_178,"[0.002338318570111722, -7.72756519782185e-19]","[-0.0023379352943400902, 7.727565197821852e-19]","[0.0005859794072201716, 2.2278145675113733e-16]","[-0.0005859418138894766, -2.2278145675113733e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_177_LVCableDist_mvgd_0_lvgd_1001_179,"[0.018724659587371396, -1.2835921140160464e-13]","[-0.018718748834336735, 1.283592114016049e-13]","[0.004697077427257556, 1.0248402168660055e-14]","[-0.00469417882381391, -1.0248402168659936e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_179_LVCableDist_mvgd_0_lvgd_1001_180,"[0.0023381336583349786, 0.0]","[-0.0023379352942365953, 0.0]","[0.0005859792897058179, 0.0]","[-0.000585941815678549, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_179_LVCableDist_mvgd_0_lvgd_1001_181,"[0.016380615177990134, -1.2123020478556848e-13]","[-0.01637608876524983, 1.2123020478556869e-13]","[0.0041081995296219295, 1.0273130377292973e-14]","[-0.004105979799668827, -1.0273130377292877e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_17_LVCableDist_mvgd_0_lvgd_1001_18,"[0.002338304841531571, 0.0]","[-0.00233793529630259, 0.0]","[0.000585978063117407, 0.0]","[-0.0005859418165371947, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_17_LVCableDist_mvgd_0_lvgd_1001_19,"[0.0023384438995951184, 3.564503308017852e-15]","[-0.0023381264818035487, -3.564503308017851e-15]","[0.0005861335966862312, 1.2364104316339634e-17]","[-0.00058597793660395, -1.2364104316339315e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_181_LVCableDist_mvgd_0_lvgd_1001_182,"[0.0023383190499877238, 0.0]","[-0.0023379352942436873, 0.0]","[0.0005859794541643417, 0.0]","[-0.0005859418137558958, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_181_LVCableDist_mvgd_0_lvgd_1001_183,"[0.014037769717389036, -7.131479436899722e-14]","[-0.014034443623500916, 7.131479436899731e-14]","[0.0035200003388783448, 6.8817245297059774e-15]","[-0.003518369239229711, -6.88172452970594e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_183_LVCableDist_mvgd_0_lvgd_1001_184,"[0.0023381338735554112, 0.0]","[-0.0023379352941369233, 0.0]","[0.0005859793303242042, 0.0]","[-0.0005859418156196575, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_183_LVCableDist_mvgd_0_lvgd_1001_185,"[0.011696309752049302, -5.703205292829141e-14]","[-0.011693999576534168, 5.703205292829145e-14]","[0.0029323899039841437, -1.978256690643883e-16]","[-0.0029312570055760505, 1.9782566906440904e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_185_LVCableDist_mvgd_0_lvgd_1001_186,"[0.0023383194025230654, 0.0]","[-0.0023379352941676522, 0.0]","[0.0005859794886505723, 0.0]","[-0.000585941813656491, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_185_LVCableDist_mvgd_0_lvgd_1001_187,"[0.009355680176249109, -2.85531187770953e-14]","[-0.009354201500741009, 2.855311877709532e-14]","[0.0023452775098840354, 1.0594597089522442e-14]","[-0.002344552374880984, -1.0594597089522434e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_187_LVCableDist_mvgd_0_lvgd_1001_188,"[0.0023381340227976995, 0.0]","[-0.0023379352940850287, 0.0]","[0.000585979358487673, 0.0]","[-0.0005859418155791603, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_187_LVCableDist_mvgd_0_lvgd_1001_189,"[0.0070160674801847366, -4.2774039696218604e-14]","[-0.007015235623444224, 4.2774039696218635e-14]","[0.001758573011156234, -1.4836925179832456e-16]","[-0.0017581650728108942, 1.4836925179833805e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_189_LVCableDist_mvgd_0_lvgd_1001_190,"[0.00233831962714618, -7.727565197830106e-19]","[-0.0023379352941225806, 7.727565197830108e-19]","[0.0005859795106223295, 2.227814567511387e-16]","[-0.0005859418135918294, -2.227814567511387e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_189_LVCableDist_mvgd_0_lvgd_1001_191,"[0.004676915998646556, -7.141370720352967e-15]","[-0.004676546268001209, 7.141370720352967e-15]","[0.0011721855548682775, 3.5397750993851628e-15]","[-0.0011720042408266413, -3.5397750993851624e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_191_LVCableDist_mvgd_0_lvgd_1001_192,"[0.002338134105782553, 0.0]","[-0.0023379352940482894, 0.0]","[0.0005859793741474143, 0.0]","[-0.0005859418155548465, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_191_LVCableDist_mvgd_0_lvgd_1001_193,"[0.0023384121645300127, -1.2364104316528392e-17]","[-0.002338319721102135, 1.2364104316528606e-17]","[0.0005860248612738704, 3.564503308018219e-15]","[-0.0005859795274836044, -3.564503308018219e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_193_LVCableDist_mvgd_0_lvgd_1001_194,"[0.0023383197234756042, 0.0]","[-0.0023379352940985413, 0.0]","[0.000585979520045333, 0.0]","[-0.0005859418135640721, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_19_LVCableDist_mvgd_0_lvgd_1001_20,"[0.0023381264824370563, 0.0]","[-0.0023379352962818265, 0.0]","[0.0005859779350857548, 0.0]","[-0.0005859418170822806, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_1_LVCableDist_mvgd_0_lvgd_1001_2,"[0.0023381259352385944, 0.0]","[-0.0023379352963522407, 0.0]","[0.0005859778317462816, 0.0]","[-0.0005859418171303102, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_1_LVCableDist_mvgd_0_lvgd_1001_3,"[0.009362380163274286, 1.603408283392219e-14]","[-0.00935730475409364, -1.6034082833922176e-14]","[0.0023485796032161697, 1.8378901234324667e-15]","[-0.0023460906481807147, -1.8378901234324608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_1_LVStation_mvgd_0_lvgd_1001,"[0.011708432903793798, 2.673377481013397e-14]","[-0.011700506098015028, -2.6733774810133936e-14]","[0.0029384447016634796, 9.273078237258083e-17]","[-0.0029345574361335646, -9.273078237256281e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_21_LVCableDist_mvgd_0_lvgd_1001_22,"[0.002338125975147703, 0.0]","[-0.002337935296340035, 0.0]","[0.0005859778392818524, 0.0]","[-0.0005859418171241312, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_21_LVCableDist_mvgd_0_lvgd_1001_23,"[0.02344596868855952, -5.704441703260222e-14]","[-0.023429410494026384, 5.70444170326023e-14]","[0.005891069933909406, 3.3666776389563036e-15]","[-0.005882949878915922, -3.36667763895626e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_21_LVStation_mvgd_0_lvgd_1001,"[0.025804119474382523, -4.9952502729515457e-14]","[-0.02578409466337293, 4.995250272951552e-14]","[0.006486867840147162, 1.4084915771642634e-14]","[-0.00647704777393725, -1.40849157716426e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_23_LVCableDist_mvgd_0_lvgd_1001_24,"[0.0023383045174588603, 0.0]","[-0.0023379352963224837, 0.0]","[0.0005859780313538781, 0.0]","[-0.000585941816562058, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_23_LVCableDist_mvgd_0_lvgd_1001_25,"[0.021091105976999345, -5.3486095776742604e-14]","[-0.02107768759412132, 5.3486095776742686e-14]","[0.005296971846116923, 5.161293397281547e-15]","[-0.005290391538905582, -5.16129339728151e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_25_LVCableDist_mvgd_0_lvgd_1001_26,"[0.002338126517007253, 0.0]","[-0.002337935296276263, 0.0]","[0.0005859779416109176, 0.0]","[-0.000585941817075551, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_25_LVCableDist_mvgd_0_lvgd_1001_27,"[0.01873956107758689, -4.989068220793392e-14]","[-0.018728954318318565, 4.989068220793399e-14]","[0.004704413596222476, -3.737600768446828e-15]","[-0.004699212095032894, 3.7376007684468596e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_27_LVCableDist_mvgd_0_lvgd_1001_28,"[0.002338305457109609, 0.0]","[-0.0023379352962587087, 0.0]","[0.000585978123436418, 0.0]","[-0.000585941816473369, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_27_LVCableDist_mvgd_0_lvgd_1001_29,"[0.01639064886177775, -4.278640380053094e-14]","[-0.016382525104882337, 4.278640380053098e-14]","[0.004113233969794313, 3.416134056221615e-15]","[-0.0041092501204312406, -3.416134056221592e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_29_LVCableDist_mvgd_0_lvgd_1001_30,"[0.0023381269465740017, 0.0]","[-0.0023379352962094938, 0.0]","[0.0005859780227331947, 0.0]","[-0.0005859418170334524, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_29_LVCableDist_mvgd_0_lvgd_1001_31,"[0.014044398158899957, -4.6332360952074334e-14]","[-0.014038427685598095, 4.633236095207439e-14]","[0.0035232720963326736, -1.9429850101215944e-15]","[-0.003520344206371529, 1.942985010121626e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_31_LVCableDist_mvgd_0_lvgd_1001_32,"[0.0023383061783285894, 0.0]","[-0.0023379352962041395, 0.0]","[0.0005859781941107236, 0.0]","[-0.0005859418164020729, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_31_LVCableDist_mvgd_0_lvgd_1001_33,"[0.011700121507931132, -4.2767857644056504e-14]","[-0.011695974266281743, 4.2767857644056554e-14]","[0.0029343660101670984, -1.9306209058052657e-15]","[-0.0029323322238024737, 1.9306209058052886e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_33_LVCableDist_mvgd_0_lvgd_1001_34,"[0.0023381272626093585, 0.0]","[-0.002337935296166207, 0.0]","[0.0005859780824130061, 0.0]","[-0.0005859418170011495, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_33_LVCableDist_mvgd_0_lvgd_1001_35,"[0.009357847004333815, -3.2061983615686506e-14]","[-0.009355192134416379, 3.206198361568654e-14]","[0.002346354139800788, -5.458031900874098e-15]","[-0.0023450522049982356, 5.458031900874111e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_35_LVCableDist_mvgd_0_lvgd_1001_36,"[0.002338306679000532, 0.0]","[-0.0023379352961724934, 0.0]","[0.0005859782431703029, 0.0]","[-0.0005859418163504979, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_35_LVCableDist_mvgd_0_lvgd_1001_37,"[0.007016885456154379, -2.4939159051808922e-14]","[-0.007015391866429338, 2.4939159051808934e-14]","[0.001759073959518735, -3.651052038232436e-15]","[-0.0017583415106590021, 3.651052038232445e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_37_LVCableDist_mvgd_0_lvgd_1001_38,"[0.0023381274641690883, 0.0]","[-0.0023379352961367863, 0.0]","[0.0005859781204781478, 0.0]","[-0.000585941816983002, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_37_LVCableDist_mvgd_0_lvgd_1001_39,"[0.004677264402994692, -1.425183117991342e-14]","[-0.004676600486376361, 1.4251831179913425e-14]","[0.001172363388449315, -1.8317080712744043e-15]","[-0.0011720378070919303, 1.8317080712744067e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_39_LVCableDist_mvgd_0_lvgd_1001_40,"[0.0023383069576248, 0.0]","[-0.0023379352961463247, 0.0]","[0.0005859782704726174, 0.0]","[-0.0005859418163215831, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_39_LVCableDist_mvgd_0_lvgd_1001_41,"[0.0023382935295310314, -6.1820521581820066e-18]","[-0.0023381275499130137, 6.1820521581821345e-18]","[0.0005860595341805638, 1.7822516540089507e-15]","[-0.0005859781386139515, -1.7822516540089507e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_3_LVCableDist_mvgd_0_lvgd_1001_4,"[0.0023383043120597416, 0.0]","[-0.0023379352963440393, 0.0]","[0.0005859780112271291, 0.0]","[-0.0005859418165838493, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_3_LVCableDist_mvgd_0_lvgd_1001_5,"[0.007019000442609784, 8.892712113570127e-15]","[-0.007016144638113548, -8.89271211357012e-15]","[0.001760112635114575, 5.3776652228176334e-15]","[-0.001758712163009137, -5.37766522281763e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_41_LVCableDist_mvgd_0_lvgd_1001_42,"[0.002338127550658116, 0.0]","[-0.002337935296123973, 0.0]","[0.0005859781368085216, 0.0]","[-0.0005859418169718485, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_43_LVCableDist_mvgd_0_lvgd_1001_44,"[0.002338125975147703, 0.0]","[-0.002337935296340035, 0.0]","[0.0005859778392818524, 0.0]","[-0.0005859418171241312, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_43_LVCableDist_mvgd_0_lvgd_1001_45,"[0.02344596868855952, -5.704441703260222e-14]","[-0.023429410494026384, 5.70444170326023e-14]","[0.005891069933909406, 3.3666776389563036e-15]","[-0.005882949878915922, -3.36667763895626e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_43_LVStation_mvgd_0_lvgd_1001,"[0.025804119474382523, -4.9952502729515457e-14]","[-0.02578409466337293, 4.995250272951552e-14]","[0.006486867840147162, 1.4084915771642634e-14]","[-0.00647704777393725, -1.40849157716426e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_45_LVCableDist_mvgd_0_lvgd_1001_46,"[0.0023383045174588603, 0.0]","[-0.0023379352963224837, 0.0]","[0.0005859780313538781, 0.0]","[-0.000585941816562058, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_45_LVCableDist_mvgd_0_lvgd_1001_47,"[0.021091105976999345, -5.3486095776742604e-14]","[-0.02107768759412132, 5.3486095776742686e-14]","[0.005296971846116923, 5.161293397281547e-15]","[-0.005290391538905582, -5.16129339728151e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_47_LVCableDist_mvgd_0_lvgd_1001_48,"[0.002338126517007253, 0.0]","[-0.002337935296276263, 0.0]","[0.0005859779416109176, 0.0]","[-0.000585941817075551, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_47_LVCableDist_mvgd_0_lvgd_1001_49,"[0.01873956107758689, -4.989068220793392e-14]","[-0.018728954318318565, 4.989068220793399e-14]","[0.004704413596222476, -3.737600768446828e-15]","[-0.004699212095032894, 3.7376007684468596e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_49_LVCableDist_mvgd_0_lvgd_1001_50,"[0.002338305457109609, 0.0]","[-0.0023379352962587087, 0.0]","[0.000585978123436418, 0.0]","[-0.000585941816473369, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_49_LVCableDist_mvgd_0_lvgd_1001_51,"[0.01639064886177775, -4.278640380053094e-14]","[-0.016382525104882337, 4.278640380053098e-14]","[0.004113233969794313, 3.416134056221615e-15]","[-0.0041092501204312406, -3.416134056221592e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_51_LVCableDist_mvgd_0_lvgd_1001_52,"[0.0023381269465740017, 0.0]","[-0.0023379352962094938, 0.0]","[0.0005859780227331947, 0.0]","[-0.0005859418170334524, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_51_LVCableDist_mvgd_0_lvgd_1001_53,"[0.014044398158899957, -4.6332360952074334e-14]","[-0.014038427685598095, 4.633236095207439e-14]","[0.0035232720963326736, -1.9429850101215944e-15]","[-0.003520344206371529, 1.942985010121626e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_53_LVCableDist_mvgd_0_lvgd_1001_54,"[0.0023383061783285894, 0.0]","[-0.0023379352962041395, 0.0]","[0.0005859781941107236, 0.0]","[-0.0005859418164020729, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_53_LVCableDist_mvgd_0_lvgd_1001_55,"[0.011700121507931132, -4.2767857644056504e-14]","[-0.011695974266281743, 4.2767857644056554e-14]","[0.0029343660101670984, -1.9306209058052657e-15]","[-0.0029323322238024737, 1.9306209058052886e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_55_LVCableDist_mvgd_0_lvgd_1001_56,"[0.0023381272626093585, 0.0]","[-0.002337935296166207, 0.0]","[0.0005859780824130061, 0.0]","[-0.0005859418170011495, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_55_LVCableDist_mvgd_0_lvgd_1001_57,"[0.009357847004333815, -3.2061983615686506e-14]","[-0.009355192134416379, 3.206198361568654e-14]","[0.002346354139800788, -5.458031900874098e-15]","[-0.0023450522049982356, 5.458031900874111e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_57_LVCableDist_mvgd_0_lvgd_1001_58,"[0.002338306679000532, 0.0]","[-0.0023379352961724934, 0.0]","[0.0005859782431703029, 0.0]","[-0.0005859418163504979, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_57_LVCableDist_mvgd_0_lvgd_1001_59,"[0.007016885456154379, -2.4939159051808922e-14]","[-0.007015391866429338, 2.4939159051808934e-14]","[0.001759073959518735, -3.651052038232436e-15]","[-0.0017583415106590021, 3.651052038232445e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_59_LVCableDist_mvgd_0_lvgd_1001_60,"[0.0023381274641690883, 0.0]","[-0.0023379352961367863, 0.0]","[0.0005859781204781478, 0.0]","[-0.000585941816983002, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_59_LVCableDist_mvgd_0_lvgd_1001_61,"[0.004677264402994692, -1.425183117991342e-14]","[-0.004676600486376361, 1.4251831179913425e-14]","[0.001172363388449315, -1.8317080712744043e-15]","[-0.0011720378070919303, 1.8317080712744067e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_5_LVCableDist_mvgd_0_lvgd_1001_6,"[0.002338126318009921, 0.0]","[-0.002337935296306789, 0.0]","[0.0005859779040319734, 0.0]","[-0.0005859418170960285, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_5_LVCableDist_mvgd_0_lvgd_1001_7,"[0.004678018320703757, 7.13827969427296e-15]","[-0.004676748740490122, -7.138279694272959e-15]","[0.0011727342575681512, -2.6486492723807083e-15]","[-0.0011721116618417437, 2.648649272380709e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_61_LVCableDist_mvgd_0_lvgd_1001_62,"[0.0023383069576248, 0.0]","[-0.0023379352961463247, 0.0]","[0.0005859782704726174, 0.0]","[-0.0005859418163215831, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_61_LVCableDist_mvgd_0_lvgd_1001_63,"[0.0023382935295310314, -6.1820521581820066e-18]","[-0.0023381275499130137, 6.1820521581821345e-18]","[0.0005860595341805638, 1.7822516540089507e-15]","[-0.0005859781386139515, -1.7822516540089507e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_63_LVCableDist_mvgd_0_lvgd_1001_64,"[0.002338127550658116, 0.0]","[-0.002337935296123973, 0.0]","[0.0005859781368085216, 0.0]","[-0.0005859418169718485, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_65_LVCableDist_mvgd_0_lvgd_1001_66,"[0.0023381259842217283, 0.0]","[-0.0023379352963399606, 0.0]","[0.0005859778409956778, 0.0]","[-0.0005859418171237196, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_65_LVCableDist_mvgd_0_lvgd_1001_67,"[0.030506787971698722, -9.266472190414826e-14]","[-0.030484142603181136, 9.266472190414845e-14]","[0.007671599058684843, -3.885970020242907e-15]","[-0.0076604938843047145, 3.885970020243005e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_65_LVStation_mvgd_0_lvgd_1001,"[0.032871162801054045, -9.267708600846444e-14]","[-0.03284491395565305, 9.267708600846461e-14]","[0.008270449201434328, -3.214667122249469e-16]","[-0.008257576900185241, 3.2146671222503733e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_67_LVCableDist_mvgd_0_lvgd_1001_68,"[0.002338304563207426, 0.0]","[-0.0023379352963234065, 0.0]","[0.0005859780358350598, 0.0]","[-0.0005859418165561149, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_67_LVCableDist_mvgd_0_lvgd_1001_69,"[0.028145838040348464, -9.266472190414845e-14]","[-0.028126532958606374, 9.266472190414864e-14]","[0.007074515847250257, -3.885970020243005e-15]","[-0.0070650487326390735, 3.885970020243088e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_69_LVCableDist_mvgd_0_lvgd_1001_70,"[0.0023381265607747433, 0.0]","[-0.0023379352962608854, 0.0]","[0.0005859779498755057, 0.0]","[-0.0005859418170688822, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_69_LVCableDist_mvgd_0_lvgd_1001_71,"[0.025788406398243775, -7.839434456776073e-14]","[-0.025772177133317194, 7.839434456776088e-14]","[0.006479070781911519, -7.401016910995555e-15]","[-0.006471112032336262, 7.401016910995622e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_71_LVCableDist_mvgd_0_lvgd_1001_72,"[0.002338305591441765, 0.0]","[-0.0023379352962454554, 0.0]","[0.0005859781365964453, 0.0]","[-0.0005859418164562226, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_71_LVCableDist_mvgd_0_lvgd_1001_73,"[0.02343387154237249, -6.413633133568931e-14]","[-0.023420453327317577, 6.413633133568941e-14]","[0.005885133894138911, -7.351560493730195e-15]","[-0.0058785536692271744, 7.351560493730239e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_73_LVCableDist_mvgd_0_lvgd_1001_74,"[0.0023381270473087994, 0.0]","[-0.0023379352961943687, 0.0]","[0.000585978041754773, 0.0]","[-0.0005859418170218217, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_73_LVCableDist_mvgd_0_lvgd_1001_75,"[0.021082326280549166, -4.9878318103617824e-14]","[-0.021071453267458472, 4.987831810361788e-14]","[0.005292575626304412, -7.302104076464806e-15]","[-0.005287243555584709, 7.302104076464833e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_75_LVCableDist_mvgd_0_lvgd_1001_76,"[0.0023383064444227344, 0.0]","[-0.002337935296177859, 0.0]","[0.0005859782201798118, 0.0]","[-0.0005859418163689291, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_75_LVCableDist_mvgd_0_lvgd_1001_77,"[0.018733146823661367, -4.986595399930152e-14]","[-0.01872455291754454, 4.986595399930157e-14]","[0.004701265333460582, -1.0866607384482733e-14]","[-0.0046970509252932035, 1.0866607384482763e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_77_LVCableDist_mvgd_0_lvgd_1001_78,"[0.0023381274426576516, 0.0]","[-0.0023379352961287064, 0.0]","[0.0005859781164127179, 0.0]","[-0.0005859418169798867, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_77_LVCableDist_mvgd_0_lvgd_1001_79,"[0.016386425475521934, -4.276167559189849e-14]","[-0.016379843702359904, 4.2761675591898525e-14]","[0.004111072807423996, -3.712872559814234e-15]","[-0.004107845139097998, 3.712872559814249e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_79_LVCableDist_mvgd_0_lvgd_1001_80,"[0.002338307120132373, 0.0]","[-0.002337935296132301, 0.0]","[0.0005859782863891165, 0.0]","[-0.0005859418162972673, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_79_LVCableDist_mvgd_0_lvgd_1001_81,"[0.014041536582940732, -3.5620304871546345e-14]","[-0.01403669977252403, 3.5620304871546377e-14]","[0.003521866850476147, -7.252647659199433e-15]","[-0.003519494903069799, 7.252647659199449e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_7_LVCableDist_mvgd_0_lvgd_1001_8,"[0.002338304841531571, 0.0]","[-0.00233793529630259, 0.0]","[0.000585978063117407, 0.0]","[-0.0005859418165371947, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_7_LVCableDist_mvgd_0_lvgd_1001_9,"[0.0023384438995951184, 3.564503308017852e-15]","[-0.0023381264818035487, -3.564503308017851e-15]","[0.0005861335966862312, 1.2364104316339634e-17]","[-0.00058597793660395, -1.2364104316339315e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_81_LVCableDist_mvgd_0_lvgd_1001_82,"[0.0023381277458996187, 0.0]","[-0.002337935296085071, 0.0]","[0.0005859781736764603, 0.0]","[-0.0005859418169483169, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_81_LVCableDist_mvgd_0_lvgd_1001_83,"[0.011698572027342546, -3.563266897586274e-14]","[-0.011695212334858056, 3.563266897586277e-14]","[0.0029335167277064473, -3.6881443511815385e-15]","[-0.0029318691514757978, 3.688144351181549e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_83_LVCableDist_mvgd_0_lvgd_1001_84,"[0.0023383076169363054, 0.0]","[-0.0023379352960893884, 0.0]","[0.0005859783350668276, 0.0]","[-0.0005859418162421099, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_83_LVCableDist_mvgd_0_lvgd_1001_85,"[0.009356904718722778, -3.56203048715464e-14]","[-0.009354754154850185, 3.562030487154643e-14]","[0.002345890813937912, -7.252647659199463e-15]","[-0.002344836188273411, 7.252647659199477e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_85_LVCableDist_mvgd_0_lvgd_1001_86,"[0.0023381279562933155, 0.0]","[-0.0023379352960481007, 0.0]","[0.0005859782134065227, 0.0]","[-0.0005859418169247918, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_85_LVCableDist_mvgd_0_lvgd_1001_87,"[0.007016626199326283, -2.8503662359826964e-14]","[-0.00701541630648565, 2.850366235982698e-14]","[0.0017588579730124768, -3.663416142548832e-15]","[-0.0017582646476724164, 3.663416142548841e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1001_87_LVCableDist_mvgd_0_lvgd_1001_88,"[0.002338307933658027, 0.0]","[-0.0023379352960640636, 0.0]","[0.0005859783660988917, 0.0]","[-0.0005859418162062659, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_87_LVCableDist_mvgd_0_lvgd_1001_89,"[0.004677108373660096, -1.4258013232071675e-14]","[-0.004676570602031772, 1.4258013232071678e-14]","[0.0011722862789543102, -4.945641726546102e-17]","[-0.0011720225584630948, 4.945641726546278e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1001_89_LVCableDist_mvgd_0_lvgd_1001_90,"[0.002338128073351561, 0.0]","[-0.0023379352960358007, 0.0]","[0.000585978235508784, 0.0]","[-0.0005859418169106277, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_89_LVCableDist_mvgd_0_lvgd_1001_91,"[0.002338442529486915, 0.0]","[-0.002338308068671621, 0.0]","[0.000586044321008949, 0.0]","[-0.0005859783821040476, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_91_LVCableDist_mvgd_0_lvgd_1001_92,"[0.0023383080695335927, 0.0]","[-0.0023379352960537386, 0.0]","[0.0005859783794116962, 0.0]","[-0.0005859418161907998, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_93_LVCableDist_mvgd_0_lvgd_1001_94,"[0.0023381260167246354, 0.0]","[-0.00233793529632937, 0.0]","[0.000585977847134402, 0.0]","[-0.0005859418171201444, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_93_LVCableDist_mvgd_0_lvgd_1001_95,"[0.04231807826166055, -1.9953800062310288e-13]","[-0.042282789805926806, 1.9953800062310357e-13]","[0.010660474462845201, -2.207940968982277e-14]","[-0.010643169182331694, 2.2079409689823102e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_93_LVStation_mvgd_0_lvgd_1001,"[0.0446954986589242, -1.7817570898362778e-13]","[-0.04465620427831585, 1.7817570898362833e-13]","[0.011265722075814574, -1.4876218447888658e-14]","[-0.011246452309969254, 1.4876218447888932e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_95_LVCableDist_mvgd_0_lvgd_1001_96,"[0.0023383046977107844, 0.0]","[-0.0023379352963111104, 0.0]","[0.0005859780490109095, 0.0]","[-0.0005859418165380925, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1001_95_LVCableDist_mvgd_0_lvgd_1001_97,"[0.039944485108375456, -1.710096100546441e-13]","[-0.03991299077247803, 1.710096100546446e-13]","[0.010057191132610404, -2.5545000163310164e-14]","[-0.01004174646930737, 2.5545000163310417e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1001_97_LVCableDist_mvgd_0_lvgd_1001_98,"[0.002338126671911833, 3.091026079089214e-18]","[-0.0023379352962339156, -3.0910260790891906e-18]","[0.0005859779708624372, -8.911258270044746e-16]","[-0.0005859418170552142, 8.911258270044746e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1001_97_LVCableDist_mvgd_0_lvgd_1001_99,"[0.037574864100777, -1.5676396092688937e-13]","[-0.03754695080065023, 1.567639609268898e-13]","[0.00945576849810144, -2.193104043802709e-14]","[-0.009442079956658987, 2.1931040438027295e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_10_LVCableDist_mvgd_0_lvgd_1010_9,"[0.0009256068615000182, 0.0]","[-0.0009255206186154918, 0.0]","[0.0002319736235893617, 0.0]","[-0.00023195733098282218, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_11_LVCableDist_mvgd_0_lvgd_1010_12,"[0.0009255623048787244, 0.0]","[-0.0009255206186562558, 0.0]","[0.0002319652061830314, 0.0]","[-0.00023195733101484181, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_11_LVCableDist_mvgd_0_lvgd_1010_13,"[0.0055585077686958195, -5.329070518200874e-15]","[-0.005556530247306867, 5.329070518200875e-15]","[0.0013937685803212937, 2.664535259100385e-15]","[-0.0013929965332014058, -2.6645352591003844e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_11_LVStation_mvgd_0_lvgd_1010,"[0.006486760966418899, -7.10542735760114e-15]","[-0.00648407007285137, 7.105427357601144e-15]","[0.001626784344561062, 8.881784197000882e-16]","[-0.001625733788728725, -8.881784197000869e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1010_13_LVCableDist_mvgd_0_lvgd_1010_14,"[0.0009256068416836503, 0.0]","[-0.0009255206186268148, 0.0]","[0.0002319736198503014, 0.0]","[-0.00023195733098951756, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_13_LVCableDist_mvgd_0_lvgd_1010_15,"[0.004630923406389387, -5.329070518200875e-15]","[-0.004629549831969897, 5.329070518200878e-15]","[0.0011610229110158982, 2.6645352591003844e-15]","[-0.001160486651746874, -2.6645352591003836e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_15_LVCableDist_mvgd_0_lvgd_1010_16,"[0.0009255623610658385, 0.0]","[-0.0009255206186088816, 0.0]","[0.00023196521676399504, 0.0]","[-0.00023195733097224633, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_15_LVCableDist_mvgd_0_lvgd_1010_17,"[0.0037039874716972366, -8.881784197001448e-15]","[-0.0037031082140107224, 8.881784197001453e-15]","[0.0009285214325629758, 2.664535259100354e-15]","[-0.0009281781602381832, -2.6645352591003524e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_17_LVCableDist_mvgd_0_lvgd_1010_18,"[0.0009256069368332073, 0.0]","[-0.0009255206185740967, 0.0]","[0.00023197363780128456, 0.0]","[-0.00023195733095532746, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_17_LVCableDist_mvgd_0_lvgd_1010_19,"[0.0027775012779844436, -1.5987211554602595e-14]","[-0.0027770066325716073, 1.5987211554602614e-14]","[0.0006962045199403837, 2.6645352591002913e-15]","[-0.0006960114046757499, -2.6645352591002858e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_19_LVCableDist_mvgd_0_lvgd_1010_20,"[0.000925562396870109, 0.0]","[-0.000925520618561961, 0.0]","[0.00023196522350989445, 0.0]","[-0.00023195733094530456, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_19_LVCableDist_mvgd_0_lvgd_1010_21,"[0.0018514442365332984, -5.3290705182008784e-15]","[-0.0018512243681721384, 5.32907051820088e-15]","[0.0004640461786143172, 1.776356839400239e-15]","[-0.0004639603394745051, -1.7763568394002384e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_1_LVCableDist_mvgd_0_lvgd_1010_2,"[0.06070572737500839, 0.0]","[-0.059999999616255364, 0.0]","[0.015106637880602548, 0.0]","[-0.01503741707673478, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_1_LVStation_mvgd_0_lvgd_1010,"[0.0612477606855524, -2.6645352591004254e-15]","[-0.06070572707889859, 2.664535259100426e-15]","[0.015452657415622533, -2.0116544187649222e-29]","[-0.015106638540140736, 2.0683078909820505e-29]" +Branch_LVCableDist_mvgd_0_lvgd_1010_21_LVCableDist_mvgd_0_lvgd_1010_22,"[0.0009256069897689432, 0.0]","[-0.0009255206185443035, 0.0]","[0.00023197364778629835, 0.0]","[-0.00023195733093433883, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_21_LVCableDist_mvgd_0_lvgd_1010_23,"[0.000925617379233178, -8.262200484844722e-30]","[-0.0009255624113797379, 8.305873796710036e-30]","[0.00023198668909404699, 8.88178419700144e-16]","[-0.0002319652290111513, -8.88178419700144e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1010_23_LVCableDist_mvgd_0_lvgd_1010_24,"[0.0009255624122312984, 0.0]","[-0.0009255206185427604, 0.0]","[0.0002319652264048082, 0.0]","[-0.0002319573309346262, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_25_LVCableDist_mvgd_0_lvgd_1010_26,"[0.0009255623119108101, 0.0]","[-0.000925520618656076, 0.0]","[0.00023196520750459686, 0.0]","[-0.0002319573310079043, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_25_LVCableDist_mvgd_0_lvgd_1010_27,"[0.007415118872587626, 2.1316282072803413e-14]","[-0.0074118445584271985, -2.1316282072803387e-14]","[0.0018598318567988896, -5.329070518200702e-15]","[-0.0018585535268494434, 5.329070518200713e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_25_LVStation_mvgd_0_lvgd_1010,"[0.0083448238764323, 2.4868995751604024e-14]","[-0.008340681183817969, -2.486899575160399e-14]","[0.0020934144212930764, -7.105427357600947e-15]","[-0.0020917970663965157, 7.10542735760096e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_27_LVCableDist_mvgd_0_lvgd_1010_28,"[0.0009256068715115316, 0.0]","[-0.0009255206186108165, 0.0]","[0.0002319736254772143, 0.0]","[-0.00023195733097846285, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_27_LVCableDist_mvgd_0_lvgd_1010_29,"[0.006486237687634828, 1.776356839400281e-14]","[-0.006483730092286762, -1.7763568394002798e-14]","[0.0016265798991474132, -2.664535259100314e-15]","[-0.0016256009050504916, 2.664535259100321e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_29_LVCableDist_mvgd_0_lvgd_1010_30,"[0.0009255623832486481, 0.0]","[-0.0009255206185777812, 0.0]","[0.00023196522094199104, 0.0]","[-0.0002319573309536933, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_29_LVCableDist_mvgd_0_lvgd_1010_31,"[0.005558167709806612, 1.4210854715202253e-14]","[-0.005556324926463785, -1.421085471520224e-14]","[0.0013936356817625401, -5.329070518200757e-15]","[-0.0013929162379272648, 5.329070518200762e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_31_LVCableDist_mvgd_0_lvgd_1010_32,"[0.000925606999548572, 0.0]","[-0.0009255206185394806, 0.0]","[0.00023197364963042355, 0.0]","[-0.00023195733093003064, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_31_LVCableDist_mvgd_0_lvgd_1010_33,"[0.004630717927701461, 1.7763568394002792e-14]","[-0.00462943796113498, -1.7763568394002776e-14]","[0.0011609425858488019, -4.4408920985006064e-15]","[-0.001160442872163415, 4.440892098500613e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_33_LVCableDist_mvgd_0_lvgd_1010_34,"[0.0009255624356835278, 0.0]","[-0.0009255206185115932, 0.0]","[0.0002319652308195013, 0.0]","[-0.00023195733091294475, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_33_LVCableDist_mvgd_0_lvgd_1010_35,"[0.003703875526269818, 1.4210854715202225e-14]","[-0.0037030561994542857, -1.4210854715202212e-14]","[0.000928477638811886, -4.4408920985006285e-15]","[-0.0009281577641891828, 4.440892098500632e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_35_LVCableDist_mvgd_0_lvgd_1010_36,"[0.0009256070883756323, 0.0]","[-0.0009255206184908973, 0.0]","[0.00023197366638614213, 0.0]","[-0.00023195733089577408, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_35_LVCableDist_mvgd_0_lvgd_1010_37,"[0.0027774491119209343, 1.42108547152022e-14]","[-0.002776988186423423, -1.421085471520219e-14]","[0.00069618409519363, -8.881784197000832e-16]","[-0.0006960041445721981, 8.88178419700087e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1010_37_LVCableDist_mvgd_0_lvgd_1010_38,"[0.0009255624691153946, 0.0]","[-0.0009255206184766154, 0.0]","[0.0002319652371157935, 0.0]","[-0.00023195733088683554, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_37_LVCableDist_mvgd_0_lvgd_1010_39,"[0.0018514257181636506, 3.552713678800556e-15]","[-0.001851220839623203, -3.5527136788005546e-15]","[0.0004640389048022366, -2.6645352591003978e-15]","[-0.0004639589178610266, 2.6645352591003978e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_39_LVCableDist_mvgd_0_lvgd_1010_40,"[0.0009256071377825977, 0.0]","[-0.0009255206184569441, 0.0]","[0.00023197367570730604, 0.0]","[-0.00023195733087678837, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_39_LVCableDist_mvgd_0_lvgd_1010_41,"[0.0009256137027095986, 2.9183577723355625e-30]","[-0.0009255624825817727, -2.8371050990978016e-30]","[0.000231985239453813, -8.881784197001365e-16]","[-0.00023196524252614944, 8.881784197001365e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1010_3_LVCableDist_mvgd_0_lvgd_1010_4,"[0.0009255622995359495, 0.0]","[-0.0009255206186732301, 0.0]","[0.00023196520517459256, 0.0]","[-0.00023195733101894205, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_3_LVCableDist_mvgd_0_lvgd_1010_5,"[0.0027779194067363198, 8.881784197001396e-15]","[-0.0027771844096019294, -8.881784197001388e-15]","[0.0006963588529249423, 1.7763568394003475e-15]","[-0.0006960719015807481, -1.776356839400344e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_3_LVStation_mvgd_0_lvgd_1010,"[0.0037047880686730474, 1.2434497875801965e-14]","[-0.003703481705511408, -1.243449787580195e-14]","[0.0009288340796726027, 2.6645352591005193e-15]","[-0.0009283240604525298, -2.664535259100514e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_41_LVCableDist_mvgd_0_lvgd_1010_42,"[0.0009255624834519794, 0.0]","[-0.0009255206184567074, 0.0]","[0.000231965239815709, 0.0]","[-0.00023195733087458896, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_43_LVCableDist_mvgd_0_lvgd_1010_44,"[0.0009255623147947845, 0.0]","[-0.000925520618656416, 0.0]","[0.00023196520804861674, 0.0]","[-0.0002319573310071613, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_43_LVCableDist_mvgd_0_lvgd_1010_45,"[0.010202207071156277, -4.97379915032079e-14]","[-0.010197247886168987, 4.973799150320801e-14]","[0.002559770004975724, -1.7763568394003252e-14]","[-0.0025578338820554753, 1.7763568394003294e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_43_LVStation_mvgd_0_lvgd_1010,"[0.011133669133187848, -4.2632564145606686e-14]","[-0.011127769385306187, 4.2632564145606775e-14]","[0.0027940385444401796, -1.5987211554602873e-14]","[-0.0027917352149361115, 1.5987211554602914e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_45_LVCableDist_mvgd_0_lvgd_1010_46,"[0.0009256068854063965, 0.0]","[-0.0009255206186020139, 0.0]","[0.00023197362809781905, 0.0]","[-0.0002319573309724511, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_45_LVCableDist_mvgd_0_lvgd_1010_47,"[0.009271641001431637, -3.907985046680631e-14]","[-0.009267541207506584, 3.907985046680638e-14]","[0.002325860251891681, -1.2434497875802339e-14]","[-0.00232425964513736, 1.243449787580237e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_47_LVCableDist_mvgd_0_lvgd_1010_48,"[0.0009255623947676437, 0.0]","[-0.0009255206185661118, 0.0]","[0.0002319652231120722, 0.0]","[-0.00023195733094545453, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_47_LVCableDist_mvgd_0_lvgd_1010_49,"[0.008341978813474125, -3.907985046680638e-14]","[-0.00833865700095283, 3.907985046680645e-14]","[0.0020922944198333232, -1.243449787580237e-14]","[-0.002090997545976888, 1.2434497875802394e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_49_LVCableDist_mvgd_0_lvgd_1010_50,"[0.000925607035280363, 0.0]","[-0.0009255206185146622, 0.0]","[0.0002319736563706298, 0.0]","[-0.00023195733091526378, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_49_LVCableDist_mvgd_0_lvgd_1010_51,"[0.007413049966414118, -3.5527136788005855e-14]","[-0.0074104246577199415, 3.552713678800591e-14]","[0.0018590238872863867, -1.2434497875802365e-14]","[-0.0018579989365437653, 1.2434497875802387e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_51_LVCableDist_mvgd_0_lvgd_1010_52,"[0.0009255624596867466, 0.0]","[-0.0009255206184849015, 0.0]","[0.00023196523533949956, 0.0]","[-0.00023195733089332362, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_51_LVCableDist_mvgd_0_lvgd_1010_53,"[0.006484862198843196, -3.90798504668065e-14]","[-0.00648285172320743, 3.907985046680657e-14]","[0.00162603369877193, -1.4210854715202717e-14]","[-0.0016252487859346435, 1.4210854715202745e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1010_53_LVCableDist_mvgd_0_lvgd_1010_54,"[0.0009256071539069842, 0.0]","[-0.000925520618444527, 0.0]","[0.00023197367874795846, 0.0]","[-0.00023195733086895054, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_53_LVCableDist_mvgd_0_lvgd_1010_55,"[0.005557244570116405, -2.1316282072803586e-14]","[-0.00555576720292675, 2.131628207280361e-14]","[0.0013932751046557737, -7.105427357601387e-15]","[-0.0013926983234941828, 7.105427357601395e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_55_LVCableDist_mvgd_0_lvgd_1010_56,"[0.0009255625094530068, 0.0]","[-0.0009255206184315602, 0.0]","[0.0002319652447107918, 0.0]","[-0.0002319573308529274, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_55_LVCableDist_mvgd_0_lvgd_1010_57,"[0.004630204694333517, -2.1316282072803596e-14]","[-0.004629178562838869, 2.1316282072803615e-14]","[0.0011607330761642725, -8.8817841970017e-15]","[-0.0011603324626136451, 8.881784197001707e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_57_LVCableDist_mvgd_0_lvgd_1010_58,"[0.0009256072410758128, 0.0]","[-0.0009255206183967587, 0.0]","[0.00023197369519001044, 0.0]","[-0.00023195733083444686, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_57_LVCableDist_mvgd_0_lvgd_1010_59,"[0.0037035713226451386, -1.776356839400303e-14]","[-0.0037029145144829474, 1.7763568394003044e-14]","[0.0009283587647306805, -5.3290705182010646e-15]","[-0.0009281023392615194, 5.32907051820107e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_59_LVCableDist_mvgd_0_lvgd_1010_60,"[0.0009255625439523079, 0.0]","[-0.0009255206183825807, 0.0]","[0.00023196525120759205, 0.0]","[-0.00023195733082302628, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_59_LVCableDist_mvgd_0_lvgd_1010_61,"[0.0027773519714221627, -1.7763568394003044e-14]","[-0.002776982471466617, 1.776356839400306e-14]","[0.0006961370853045523, -5.32907051820107e-15]","[-0.0006959928282673987, 5.329070518201077e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_5_LVCableDist_mvgd_0_lvgd_1010_6,"[0.0009256068143670631, 0.0]","[-0.0009255206186429926, 0.0]","[0.0002319736146966855, 0.0]","[-0.0002319573309994811, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_5_LVCableDist_mvgd_0_lvgd_1010_7,"[0.0018515775960264245, 3.552713678800554e-15]","[-0.0018512508861606152, -3.552713678800553e-15]","[0.00046409828445208675, 8.881784197001657e-16]","[-0.00046397073315866135, -8.881784197001657e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1010_61_LVCableDist_mvgd_0_lvgd_1010_62,"[0.0009256072966202529, 0.0]","[-0.0009255206183635936, 0.0]","[0.00023197370566654815, 0.0]","[-0.00023195733081152062, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_61_LVCableDist_mvgd_0_lvgd_1010_63,"[0.0018513751757492929, -3.552713678800621e-15]","[-0.0018512109436115462, 3.552713678800622e-15]","[0.0004640191198003998, -2.917640922919239e-29]","[-0.0004639550016828165, 2.926545412099919e-29]" +Branch_LVCableDist_mvgd_0_lvgd_1010_63_LVCableDist_mvgd_0_lvgd_1010_64,"[0.0009255625631444072, 0.0]","[-0.0009255206183606911, 0.0]","[0.000231965254822049, 0.0]","[-0.0002319573308076654, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_63_LVCableDist_mvgd_0_lvgd_1010_65,"[0.000925648381399593, -7.105427357601229e-15]","[-0.0009256073195271445, 7.10542735760123e-15]","[0.0002319897440364583, -1.776356839400369e-15]","[-0.00023197371300865847, 1.7763568394003696e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1010_65_LVCableDist_mvgd_0_lvgd_1010_66,"[0.0009256073204449672, 0.0]","[-0.0009255206183510885, 0.0]","[0.00023197371015955742, 0.0]","[-0.00023195733080131283, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_7_LVCableDist_mvgd_0_lvgd_1010_8,"[0.0009255623374926381, 0.0]","[-0.0009255206186276417, 0.0]","[0.00023196521232510153, 0.0]","[-0.0002319573309902367, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1010_7_LVCableDist_mvgd_0_lvgd_1010_9,"[0.0009256885494724607, 1.7763568394002797e-15]","[-0.0009256068606881245, -1.7763568394002793e-15]","[0.00023200551834527035, 1.293642292562712e-29]","[-0.00023197362610328183, -1.2769910453615483e-29]" +Branch_LVCableDist_mvgd_0_lvgd_1011_10_LVCableDist_mvgd_0_lvgd_1011_9,"[0.001184164396301426, 0.0]","[-0.001184023588849562, 0.0]","[0.00029677088301049986, 0.0]","[-0.00029674428231847, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_11_LVCableDist_mvgd_0_lvgd_1011_12,"[0.0011840917598466673, 0.0]","[-0.0011840235888287082, 0.0]","[0.00029675716085234965, 0.0]","[-0.0002967442822991901, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_11_LVCableDist_mvgd_0_lvgd_1011_13,"[0.003553794303195024, -5.329070518200973e-15]","[-0.003552911524871166, 5.3290705182009754e-15]","[0.0008908351690131123, -3.552713678800937e-15]","[-0.0008904905221909629, 3.552713678800939e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_11_LVCableDist_mvgd_0_lvgd_1011_9,"[0.00473945510104461, -1.0658141036402074e-14]","[-0.004737886062270531, 1.065814103640208e-14]","[0.0011882049030345389, -3.552713678801135e-15]","[-0.001187592332230861, 3.5527136788011375e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_13_LVCableDist_mvgd_0_lvgd_1011_14,"[0.0011841645649743038, 0.0]","[-0.0011840235887931824, 0.0]","[0.0002967709148478393, 0.0]","[-0.00029674428228025927, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_13_LVCableDist_mvgd_0_lvgd_1011_15,"[0.00236874696068145, -1.0658141036402118e-14]","[-0.0023683545667150035, 1.0658141036402126e-14]","[0.0005937196048904175, -2.6645352591009535e-15]","[-0.0005935664097678015, 2.664535259100956e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_15_LVCableDist_mvgd_0_lvgd_1011_16,"[0.0011840918181462495, 0.0]","[-0.001184023588776014, 0.0]","[0.00029675717184865426, 0.0]","[-0.0002967442822718528, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_15_LVCableDist_mvgd_0_lvgd_1011_17,"[0.0011842627493786196, 6.662530369606605e-29]","[-0.0011841646365461532, -6.650302109943253e-29]","[0.0002968092354194281, -1.7763568394003708e-15]","[-0.00029677093103993923, 1.7763568394003708e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_17_LVCableDist_mvgd_0_lvgd_1011_18,"[0.0011841646373667329, 0.0]","[-0.0011840235887697996, 0.0]","[0.0002967709285110403, 0.0]","[-0.0002967442822630004, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_19_LVCableDist_mvgd_0_lvgd_1011_20,"[0.001184091750791024, 0.0]","[-0.0011840235888056062, 0.0]","[0.00029675715913375693, 0.0]","[-0.0002967442822869834, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_19_LVCableDist_mvgd_0_lvgd_1011_21,"[0.03838451047456502, -1.1368683772162123e-13]","[-0.03834065628092076, 1.1368683772162168e-13]","[0.009688673780826565, -6.927791673661878e-14]","[-0.009671552598680461, 6.927791673661894e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_19_LVStation_mvgd_0_lvgd_1011,"[0.03961520260939741, -1.2789769243682359e-13]","[-0.039568602225994474, 1.2789769243682417e-13]","[0.010003624264252126, -7.105427357601947e-14]","[-0.009985430938003971, 7.105427357601967e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_1_LVCableDist_mvgd_0_lvgd_1011_2,"[0.04030650623789781, 0.0]","[-0.03999999988840125, 0.0]","[0.010055008309229048, 0.0]","[-0.01002494485254964, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_1_LVStation_mvgd_0_lvgd_1011,"[0.04042421202750948, -1.7763568394002978e-15]","[-0.040306506056733256, 1.776356839400298e-15]","[0.01015817838425876, -1.7763568394004327e-15]","[-0.010055008588811042, 1.776356839400433e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_21_LVCableDist_mvgd_0_lvgd_1011_22,"[0.001184164806938429, 0.0]","[-0.001184023588655055, 0.0]","[0.00029677096049204155, 0.0]","[-0.00029674428218762455, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_21_LVCableDist_mvgd_0_lvgd_1011_23,"[0.03715649147340967, -9.947598300641892e-14]","[-0.03711530333249843, 9.947598300641926e-14]","[0.00937478163991951, -6.217248937901691e-14]","[-0.009358701315457926, 6.217248937901705e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_23_LVCableDist_mvgd_0_lvgd_1011_24,"[0.0011840920683737577, 0.0]","[-0.0011840235885157222, 0.0]","[0.00029675721899144984, 0.0]","[-0.0002967442820936527, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_23_LVCableDist_mvgd_0_lvgd_1011_25,"[0.035931211263657586, -9.237055564881773e-14]","[-0.035892608333205595, 9.237055564881805e-14]","[0.00906194409795262, -6.217248937901678e-14]","[-0.009046873069421046, 6.21724893790169e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_25_LVCableDist_mvgd_0_lvgd_1011_26,"[0.0011841654453137607, 0.0]","[-0.0011840235883664705, 0.0]","[0.000296771080949517, 0.0]","[-0.0002967442819916693, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_25_LVCableDist_mvgd_0_lvgd_1011_27,"[0.0347084428874937, -7.105427357601344e-14]","[-0.03467234426798889, 7.105427357601367e-14]","[0.008750101989697273, -6.039613253961575e-14]","[-0.008736008672994695, 6.039613253961586e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_27_LVCableDist_mvgd_0_lvgd_1011_28,"[0.0011840923680255186, 0.0]","[-0.0011840235882364608, 0.0]","[0.0002967572754558371, 0.0]","[-0.0002967442818964596, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_27_LVCableDist_mvgd_0_lvgd_1011_29,"[0.03348825189969119, -7.81597009336153e-14]","[-0.033454576025352484, 7.815970093361555e-14]","[0.008439251398492399, -5.861977570021571e-14]","[-0.00842610394939872, 5.86197757002158e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_29_LVCableDist_mvgd_0_lvgd_1011_30,"[0.0011841660461513939, 0.0]","[-0.0011840235880685587, 0.0]","[0.00029677119431156807, 0.0]","[-0.0002967442817899758, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_29_LVCableDist_mvgd_0_lvgd_1011_31,"[0.03227040997902234, -8.526512829121725e-14]","[-0.03223907522943739, 8.526512829121751e-14]","[0.008129332755726637, -5.506706202141524e-14]","[-0.00811709930869308, 5.506706202141534e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_31_LVCableDist_mvgd_0_lvgd_1011_32,"[0.0011840926492812424, 0.0]","[-0.0011840235879237878, 0.0]","[0.000296757328444548, 0.0]","[-0.00029674428169257225, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_31_LVCableDist_mvgd_0_lvgd_1011_33,"[0.03105498258009108, -5.684341886081112e-14]","[-0.03102590670864202, 5.684341886081128e-14]","[0.00782034198057973, -5.329070518201399e-14]","[-0.007808990425579672, 5.3290705182014065e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_33_LVCableDist_mvgd_0_lvgd_1011_34,"[0.0011841666086070998, 0.0]","[-0.0011840235877650983, 0.0]","[0.00029677130042338786, 0.0]","[-0.0002967442815879388, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_33_LVCableDist_mvgd_0_lvgd_1011_35,"[0.02984174010007579, -7.81597009336163e-14]","[-0.029814840808339377, 7.815970093361651e-14]","[0.007512219125162731, -4.973799150321395e-14]","[-0.007501717331944139, 4.9737991503214024e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_35_LVCableDist_mvgd_0_lvgd_1011_36,"[0.0011840929117879384, 0.0]","[-0.0011840235876236964, 0.0]","[0.00029675737788933764, 0.0]","[-0.0002967442814891202, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_35_LVCableDist_mvgd_0_lvgd_1011_37,"[0.028630747896707314, -5.684341886081157e-14]","[-0.028605942301147533, 5.684341886081171e-14]","[0.007204959953716428, -4.973799150321334e-14]","[-0.007195275563592494, 4.97379915032134e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_37_LVCableDist_mvgd_0_lvgd_1011_38,"[0.0011841671318896779, 0.0]","[-0.0011840235874660105, 0.0]","[0.0002967713991319003, 0.0]","[-0.00029674428138382644, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_37_LVCableDist_mvgd_0_lvgd_1011_39,"[0.02742177516952802, -7.105427357601514e-14]","[-0.02739898033783775, 7.105427357601533e-14]","[0.00689850416376703, -4.618527782441302e-14]","[-0.006889604799010156, 4.618527782441308e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_39_LVCableDist_mvgd_0_lvgd_1011_40,"[0.0011840931551636118, 0.0]","[-0.0011840235873298735, 0.0]","[0.00029675742372017053, 0.0]","[-0.0002967442812870396, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_39_LVCableDist_mvgd_0_lvgd_1011_41,"[0.026214887183088963, -6.39488462184137e-14]","[-0.026194019639911678, 6.394884621841388e-14]","[0.006592847374248196, -4.4408920985012446e-14]","[-0.006584700445118037, 4.4408920985012516e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_3_LVCableDist_mvgd_0_lvgd_1011_4,"[0.0011840916248914922, 0.0]","[-0.0011840235889180723, 0.0]","[0.0002967571354036117, 0.0]","[-0.0002967442823624413, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_3_LVCableDist_mvgd_0_lvgd_1011_5,"[0.0011843308007052297, -1.7763568394003333e-15]","[-0.0011841642536756123, 1.7763568394003337e-15]","[0.00029683588047973617, -8.88178419700252e-16]","[-0.00029677085860171237, 8.881784197002522e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1011_3_LVStation_mvgd_0_lvgd_1011,"[0.0023690884759398055, -1.4210854715202906e-14]","[-0.0023684224248448466, 1.4210854715202925e-14]","[0.0005938530522189719, -4.440892098506316e-16]","[-0.0005935930182024326, 4.44089209850638e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1011_41_LVCableDist_mvgd_0_lvgd_1011_42,"[0.0011841676152498071, 0.0]","[-0.0011840235871736326, 0.0]","[0.00029677149030244224, 0.0]","[-0.0002967442811849755, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_41_LVCableDist_mvgd_0_lvgd_1011_43,"[0.025009852025189634, -7.105427357601556e-14]","[-0.024990828249628873, 7.105427357601575e-14]","[0.006287928953399082, -4.440892098501273e-14]","[-0.006280501852375985, 4.4408920985012793e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_43_LVCableDist_mvgd_0_lvgd_1011_44,"[0.001184093379055957, 0.0]","[-0.0011840235870411678, 0.0]","[0.00029675746587689265, 0.0]","[-0.00029674428109251536, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_43_LVCableDist_mvgd_0_lvgd_1011_45,"[0.023806734871220613, -7.105427357601585e-14]","[-0.023789470842302606, 7.105427357601601e-14]","[0.005983744384720745, -4.0856207306211945e-14]","[-0.005977004309049113, 4.085620730621201e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_45_LVCableDist_mvgd_0_lvgd_1011_46,"[0.0011841680579829084, 0.0]","[-0.0011840235868831386, 0.0]","[0.0002967715738022607, 0.0]","[-0.00029674428099082706, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_45_LVCableDist_mvgd_0_lvgd_1011_47,"[0.022605302785062835, -8.526512829121947e-14]","[-0.02258971443968941, 8.526512829121971e-14]","[0.0056802327330895755, -4.085620730621243e-14]","[-0.005674146863567958, 4.0856207306212526e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_47_LVCableDist_mvgd_0_lvgd_1011_48,"[0.0011840935831401308, 0.0]","[-0.0011840235867582166, 0.0]","[0.0002967575042936335, 0.0]","[-0.000296744280901165, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_47_LVCableDist_mvgd_0_lvgd_1011_49,"[0.021405620857435196, -7.105427357601637e-14]","[-0.021391623676246214, 7.105427357601654e-14]","[0.005377389356748474, -3.5527136788010796e-14]","[-0.005371924696045497, 3.552713678801087e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_49_LVCableDist_mvgd_0_lvgd_1011_50,"[0.0011841684594625906, 0.0]","[-0.0011840235866136723, 0.0]","[0.00029677164951354194, 0.0]","[-0.00029674428080551886, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_49_LVCableDist_mvgd_0_lvgd_1011_51,"[0.020207455217781656, -9.947598300642362e-14]","[-0.02019496464287928, 9.947598300642391e-14]","[0.0050751530436336754, -3.375077994861126e-14]","[-0.0050702765793724045, 3.375077994861136e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_51_LVCableDist_mvgd_0_lvgd_1011_52,"[0.0011840937671247608, 0.0]","[-0.001184023586488377, 0.0]","[0.00029675753892291327, 0.0]","[-0.00029674428072194313, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_51_LVCableDist_mvgd_0_lvgd_1011_53,"[0.01901087087686804, -8.526512829122035e-14]","[-0.01899980193868284, 8.526512829122055e-14]","[0.004773519037183211, -3.3750779948610943e-14]","[-0.004769197596265382, 3.3750779948611026e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_53_LVCableDist_mvgd_0_lvgd_1011_54,"[0.00118416881908634, 0.0]","[-0.0011840235863519043, 0.0]","[0.00029677171732871475, 0.0]","[-0.00029674428063278545, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_53_LVCableDist_mvgd_0_lvgd_1011_55,"[0.01781563312079909, -9.237055564882245e-14]","[-0.017805900814967638, 9.23705556488227e-14]","[0.004472425875318038, -3.0198066269810335e-14]","[-0.004468626271061404, 3.019806626981043e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_55_LVCableDist_mvgd_0_lvgd_1011_56,"[0.0011840939307500595, 0.0]","[-0.001184023586242842, 0.0]","[0.0002967575697145206, 0.0]","[-0.0002967442805558311, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_55_LVCableDist_mvgd_0_lvgd_1011_57,"[0.016621806885549577, -7.815970093361917e-14]","[-0.016613325841330875, 7.815970093361935e-14]","[0.004171868697379592, -2.664535259100911e-14]","[-0.004168557600063896, 2.664535259100917e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_57_LVCableDist_mvgd_0_lvgd_1011_58,"[0.0011841691363481397, 0.0]","[-0.0011840235861226619, 0.0]","[0.00029677177714861514, 0.0]","[-0.0002967442804737479, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_57_LVCableDist_mvgd_0_lvgd_1011_59,"[0.01542915670642596, -6.39488462184158e-14]","[-0.015421841522170847, 6.394884621841592e-14]","[0.0038717858186095018, -2.3092638912207835e-14]","[-0.0038689298864475743, 2.309263891220789e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_59_LVCableDist_mvgd_0_lvgd_1011_60,"[0.0011840940737771004, 0.0]","[-0.001184023586025007, 0.0]","[0.0002967575966270066, 0.0]","[-0.00029674428040715826, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_59_LVCableDist_mvgd_0_lvgd_1011_61,"[0.014237747449932382, -6.394884621841602e-14]","[-0.014231512403538144, 6.394884621841614e-14]","[0.003572172285202265, -1.9539925233406968e-14]","[-0.0035697380512981804, 1.953992523340701e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_5_LVCableDist_mvgd_0_lvgd_1011_6,"[0.0011841642544408318, 0.0]","[-0.0011840235889004269, 0.0]","[0.0002967708562338006, 0.0]","[-0.0002967442823510269, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_61_LVCableDist_mvgd_0_lvgd_1011_62,"[0.0011841694107607812, 0.0]","[-0.0011840235859094585, 0.0]","[0.00029677182888704357, 0.0]","[-0.0002967442803311328, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_61_LVCableDist_mvgd_0_lvgd_1011_63,"[0.0130473429944178, -4.263256414561067e-14]","[-0.013042102336885906, 4.2632564145610725e-14]","[0.0032729662174738852, -1.5987211554605447e-14]","[-0.0032709202044312858, 1.5987211554605466e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_63_LVCableDist_mvgd_0_lvgd_1011_64,"[0.0011840941959873885, 0.0]","[-0.0011840235858292152, 0.0]","[0.0002967576196179756, 0.0]","[-0.00029674428027373726, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_63_LVCableDist_mvgd_0_lvgd_1011_65,"[0.011858008142632296, -2.842170943040704e-14]","[-0.011853675850988378, 2.842170943040707e-14]","[0.0029741625795977516, -1.421085471520458e-14]","[-0.002972471203056952, 1.421085471520459e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_65_LVCableDist_mvgd_0_lvgd_1011_66,"[0.001184169641926867, 0.0]","[-0.0011840235857238806, 0.0]","[0.00029677187246962084, 0.0]","[-0.0002967442802078247, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_65_LVCableDist_mvgd_0_lvgd_1011_67,"[0.01066950621086693, -2.1316282072805195e-14]","[-0.01066599623936353, 2.131628207280521e-14]","[0.0026756993250956194, -1.421085471520438e-14]","[-0.0026743289918060653, 1.4210854715204386e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_67_LVCableDist_mvgd_0_lvgd_1011_68,"[0.0011840942972038595, 0.0]","[-0.0011840235856610296, 0.0]","[0.0002967576386576652, 0.0]","[-0.00029674428016030684, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_67_LVCableDist_mvgd_0_lvgd_1011_69,"[0.009481901944041438, -1.421085471520339e-14]","[-0.009479128019908445, 1.4210854715203395e-14]","[0.002377571347413829, -1.2434497875803705e-14]","[-0.002376488375492701, 1.2434497875803708e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_69_LVCableDist_mvgd_0_lvgd_1011_70,"[0.0011841698295069238, 0.0]","[-0.0011840235855723065, 0.0]","[0.0002967719078325917, 0.0]","[-0.00029674428010540484, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_69_LVCableDist_mvgd_0_lvgd_1011_71,"[0.00829495819235872, -1.42108547152035e-14]","[-0.008292834024269238, 1.421085471520351e-14]","[0.002079716461700655, -8.881784197002767e-15]","[-0.0020788871620203556, 8.881784197002772e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_71_LVCableDist_mvgd_0_lvgd_1011_72,"[0.0011840943772821067, 0.0]","[-0.0011840235855278321, 0.0]","[0.00029675765371916135, 0.0]","[-0.00029674428006862816, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_71_LVCableDist_mvgd_0_lvgd_1011_73,"[0.007108739649004112, -1.4210854715203405e-14]","[-0.007107178765957227, 1.421085471520341e-14]","[0.0017821295021425002, -1.2434497875803713e-14]","[-0.001781520115428626, 1.2434497875803716e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1011_73_LVCableDist_mvgd_0_lvgd_1011_74,"[0.001184169973220835, 0.0]","[-0.0011840235854561447, 0.0]","[0.00029677193492418623, 0.0]","[-0.00029674428002528783, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_73_LVCableDist_mvgd_0_lvgd_1011_75,"[0.005923008794802487, 1.421085471520393e-14]","[-0.005921924711533195, -1.4210854715203925e-14]","[0.0014847481741706529, -5.329070518201002e-15]","[-0.0014843249355799342, 5.329070518201004e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_75_LVCableDist_mvgd_0_lvgd_1011_76,"[0.0011840944360992462, 0.0]","[-0.0011840235854271677, 0.0]","[0.00029675766478210445, 0.0]","[-0.00029674428000109234, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_75_LVCableDist_mvgd_0_lvgd_1011_77,"[0.004737830277560574, 7.105427357602141e-15]","[-0.0047371363767923546, -7.105427357602136e-15]","[0.0011875672643209521, -8.881784197002152e-15]","[-0.001187296357471304, 8.881784197002153e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_77_LVCableDist_mvgd_0_lvgd_1011_78,"[0.0011841700728502129, 0.0]","[-0.0011840235853732345, 0.0]","[0.00029677195370508684, 0.0]","[-0.0002967442799690045, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_77_LVCableDist_mvgd_0_lvgd_1011_79,"[0.0035529663060851775, 7.105427357602035e-15]","[-0.00355257596062889, -7.105427357602035e-15]","[0.0008905243971695926, -5.3290705182012105e-15]","[-0.0008903720018089298, 5.329070518201211e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_79_LVCableDist_mvgd_0_lvgd_1011_80,"[0.0011840944735633896, 0.0]","[-0.0011840235853557948, 0.0]","[0.0002967576718300257, 0.0]","[-0.00029674427995797774, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_79_LVCableDist_mvgd_0_lvgd_1011_81,"[0.0023684814892365566, 7.105427357601985e-15]","[-0.0023683079877852065, -7.105427357601982e-15]","[0.0005936143232986501, -3.552713678800741e-15]","[-0.000593546586334307, 3.5527136788007415e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_7_LVCableDist_mvgd_0_lvgd_1011_8,"[0.0011840916550907772, 0.0]","[-0.001184023588897931, 0.0]","[0.0002967571410982614, 0.0]","[-0.000296744282348177, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_7_LVCableDist_mvgd_0_lvgd_1011_9,"[0.005926070520393215, -3.5527136788004986e-15]","[-0.005923619496610175, 3.552713678800502e-15]","[0.0014859326962238784, -6.217248937901418e-15]","[-0.001484975788317322, 6.21724893790142e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_7_LVStation_mvgd_0_lvgd_1011,"[0.007113690500294879, -1.0658141036401853e-14]","[-0.007110162174787133, 1.0658141036401864e-14]","[0.0017840673383696308, -8.881784197002232e-15]","[-0.0017826898394654464, 8.881784197002237e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_81_LVCableDist_mvgd_0_lvgd_1011_82,"[0.0011841701282443897, 0.0]","[-0.001184023585323082, 0.0]","[0.0002967719641483088, 0.0]","[-0.0002967442799379404, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1011_81_LVCableDist_mvgd_0_lvgd_1011_83,"[0.0011841378617154308, 9.992460743366486e-29]","[-0.0011840944874417357, -9.970644902981017e-29]","[0.0002967746154345886, -3.552713678800941e-15]","[-0.00029675768161871674, 3.552713678800941e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1011_83_LVCableDist_mvgd_0_lvgd_1011_84,"[0.0011840944896323036, 0.0]","[-0.0011840235853280404, 0.0]","[0.000296757674851434, 0.0]","[-0.0002967442799384779, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_10_LVCableDist_mvgd_0_lvgd_1012_9,"[0.00206294331399441, 0.0]","[-0.002062696589836104, 0.0]","[0.0005170071043460357, -0.0]","[-0.0005169604943600971, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_11_LVCableDist_mvgd_0_lvgd_1012_12,"[0.0020631509526671072, 0.0]","[-0.002062696589520479, 0.0]","[0.000517046330331233, -0.0]","[-0.0005169604941487504, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_11_LVCableDist_mvgd_0_lvgd_1012_13,"[0.031283383461408576, 7.460698725480955e-14]","[-0.031222340548598005, -7.460698725480923e-14]","[0.00788722908024045, -1.1546319456103854e-14]","[-0.007863397224216912, 1.1546319456103977e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1012_11_LVCableDist_mvgd_0_lvgd_1012_9,"[0.033415891361384495, 7.815970093361029e-14]","[-0.033346534414608026, -7.815970093360993e-14]","[0.008431353159586995, -1.4210854715204184e-14]","[-0.008404275408973446, 1.4210854715204317e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1012_13_LVCableDist_mvgd_0_lvgd_1012_14,"[0.002062945376716168, 0.0]","[-0.002062696589226469, 0.0]","[0.0005170074937246317, -0.0]","[-0.0005169604939436773, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_13_LVCableDist_mvgd_0_lvgd_1012_15,"[0.029159395171566443, 7.460698725480927e-14]","[-0.02910615010900137, -7.460698725480897e-14]","[0.007346389731520034, -1.0658141036403863e-14]","[-0.007325602246018598, 1.065814103640398e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1012_15_LVCableDist_mvgd_0_lvgd_1012_16,"[0.002063154515987757, 0.0]","[-0.002062696588895079, 0.0]","[0.0005170470031895068, -0.0]","[-0.0005169604937228334, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_15_LVCableDist_mvgd_0_lvgd_1012_17,"[0.02704299559291602, 6.039613253960719e-14]","[-0.026997029638432906, -6.039613253960699e-14]","[0.006808555243200555, -1.0658141036403477e-14]","[-0.006790609605307661, 1.0658141036403554e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1012_17_LVCableDist_mvgd_0_lvgd_1012_18,"[0.0020629471966530618, 0.0]","[-0.0020626965885893953, 0.0]","[0.0005170078372308636, -0.0]","[-0.0005169604935155025, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_17_LVCableDist_mvgd_0_lvgd_1012_19,"[0.024934082441922918, 5.6843418860806576e-14]","[-0.02489487155499502, -5.68434188608064e-14]","[0.006273601767751885, -9.769962616703313e-15]","[-0.006258293386011965, 9.769962616703383e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_19_LVCableDist_mvgd_0_lvgd_1012_20,"[0.0020631576251746086, 0.0]","[-0.0020626965882588853, 0.0]","[0.0005170475902524841, -0.0]","[-0.000516960493292436, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_19_LVCableDist_mvgd_0_lvgd_1012_21,"[0.022831713930205607, 4.973799150320565e-14]","[-0.02279873182489477, -4.973799150320551e-14]","[0.005741245794668301, -7.105427357602788e-15]","[-0.0057283692009913205, 7.105427357602845e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_1_LVCableDist_mvgd_0_lvgd_1012_2,"[0.03725879471738136, 0.0]","[-0.036999999946454316, 0.0]","[0.009298457742884838, -0.0]","[-0.009273074042359865, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_1_LVStation_mvgd_0_lvgd_1012,"[0.037308486402720484, 3.552713678800547e-15]","[-0.03725879462656804, -3.552713678800547e-15]","[0.009342012942558792, 1.7763568394001568e-15]","[-0.00929845788458448, -1.7763568394001568e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_21_LVCableDist_mvgd_0_lvgd_1012_22,"[0.0020629487644291625, 0.0]","[-0.00206269658797211, 0.0]","[0.0005170081331018351, -0.0]","[-0.0005169604930928552, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_21_LVCableDist_mvgd_0_lvgd_1012_23,"[0.020735783061130924, 4.61852778244051e-14]","[-0.020708498875782834, -4.618527782440499e-14]","[0.005211361066036198, -7.1054273576027e-15]","[-0.00520070900591985, 7.105427357602744e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_23_LVCableDist_mvgd_0_lvgd_1012_24,"[0.002063160264041571, 0.0]","[-0.002062696587651503, 0.0]","[0.0005170480884792439, -0.0]","[-0.0005169604928819202, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_23_LVCableDist_mvgd_0_lvgd_1012_25,"[0.01864533861265373, 3.552713678800377e-14]","[-0.01862321957039704, -3.5527136788003697e-14]","[0.004683660914782146, -7.105427357602299e-15]","[-0.004675025386001336, 7.105427357602326e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_25_LVCableDist_mvgd_0_lvgd_1012_26,"[0.0020629500718230987, 0.0]","[-0.0020626965873935216, 0.0]","[0.0005170083798058418, -0.0]","[-0.0005169604927007473, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_25_LVCableDist_mvgd_0_lvgd_1012_27,"[0.016560269499735897, 3.907985046680417e-14]","[-0.016542778999826056, -3.907985046680409e-14]","[0.004158017002772229, -5.329070518202279e-15]","[-0.004151188510217745, 5.329070518202311e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_27_LVCableDist_mvgd_0_lvgd_1012_28,"[0.002063162418656721, 0.0]","[-0.002062696587103579, 0.0]","[0.000517048495253141, -0.0]","[-0.0005169604925123852, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_27_LVCableDist_mvgd_0_lvgd_1012_29,"[0.01447961658256854, 2.48689957516024e-14]","[-0.01446621645408979, -2.486899575160236e-14]","[0.003634140010782003, -7.993605777301979e-15]","[-0.003628908446331703, 7.993605777301995e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_29_LVCableDist_mvgd_0_lvgd_1012_30,"[0.00206295111191859, 0.0]","[-0.0020626965868962926, 0.0]","[0.0005170085760510069, -0.0]","[-0.0005169604923619521, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_29_LVCableDist_mvgd_0_lvgd_1012_31,"[0.012403265343785856, 2.8421709430402868e-14]","[-0.01239341436851823, -2.842170943040282e-14]","[0.0031118998654011097, -5.329070518201862e-15]","[-0.0031080539312302083, 5.3290705182018795e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_31_LVCableDist_mvgd_0_lvgd_1012_32,"[0.0020631640775253483, 0.0]","[-0.0020626965866514116, 0.0]","[0.000517048808417407, -0.0]","[-0.0005169604922054475, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_31_LVCableDist_mvgd_0_lvgd_1012_33,"[0.010330250292812582, 2.1316282072802053e-14]","[-0.010323406039732239, -2.131628207280203e-14]","[0.002591005117281327, -5.329070518201554e-15]","[-0.00258833304207244, 5.329070518201565e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_33_LVCableDist_mvgd_0_lvgd_1012_34,"[0.002062951879139093, 0.0]","[-0.0020626965864968655, 0.0]","[0.0005170087207987622, -0.0]","[-0.0005169604920945035, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_33_LVCableDist_mvgd_0_lvgd_1012_35,"[0.008260454162581225, 1.776356839400169e-14]","[-0.008256071949847163, -1.776356839400167e-14]","[0.0020713243151952755, -4.440892098501304e-15]","[-0.002069613448886081, 4.440892098501311e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_35_LVCableDist_mvgd_0_lvgd_1012_36,"[0.002063165231712368, 0.0]","[-0.0020626965863180385, 0.0]","[0.0005170490262997967, -0.0]","[-0.0005169604919811884, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_35_LVCableDist_mvgd_0_lvgd_1012_37,"[0.006192906720263512, 1.7763568394001795e-14]","[-0.006190441020204945, -1.7763568394001782e-14]","[0.0015525644160277836, -1.776356839401029e-15]","[-0.0015516017783342752, 1.7763568394010358e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_37_LVCableDist_mvgd_0_lvgd_1012_38,"[0.002062952369368801, 0.0]","[-0.0020626965862374567, 0.0]","[0.0005170088132800218, -0.0]","[-0.0005169604919148297, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_37_LVCableDist_mvgd_0_lvgd_1012_39,"[0.004127488653090385, 1.0658141036400993e-14]","[-0.004126392498540021, -1.0658141036400988e-14]","[0.0010345929581485102, -2.6645352591007895e-15]","[-0.0010341650067906697, 2.6645352591007914e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_39_LVCableDist_mvgd_0_lvgd_1012_40,"[0.0020631658749701684, 0.0]","[-0.00206269658612989, 0.0]","[0.0005170491477267755, -0.0]","[-0.0005169604918513372, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_39_LVCableDist_mvgd_0_lvgd_1012_41,"[0.002063226625892686, 3.5527136788003294e-15]","[-0.0020629525775734655, -3.552713678800328e-15]","[0.0005171158518988029, -8.881784197002639e-16]","[-0.0005170088602795231, 8.881784197002643e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1012_3_LVCableDist_mvgd_0_lvgd_1012_4,"[0.002062942593100843, 0.0]","[-0.002062696590047106, 0.0]","[0.0005170069682594817, -0.0]","[-0.0005169604945012805, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_3_LVCableDist_mvgd_0_lvgd_1012_5,"[0.004128791400734207, 8.881784197001243e-16]","[-0.00412663128500296, -8.881784197001242e-16]","[0.0010351070578025034, -2.3375674274744387e-29]","[-0.0010342637237489502, 2.340020321814658e-29]" +Branch_LVCableDist_mvgd_0_lvgd_1012_3_LVStation_mvgd_0_lvgd_1012,"[0.006196591905586214, 7.105427357601048e-15]","[-0.006191733993106241, -7.105427357601041e-15]","[0.0015540106132836643, 1.7763568394000637e-15]","[-0.0015521140283163487, -1.7763568394000617e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1012_41_LVCableDist_mvgd_0_lvgd_1012_42,"[0.0020629525799355274, 0.0]","[-0.0020626965861171007, 0.0]","[0.0005170088530056204, -0.0]","[-0.0005169604918383998, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_5_LVCableDist_mvgd_0_lvgd_1012_6,"[0.0020631481721243893, 0.0]","[-0.0020626965899828696, 0.0]","[0.0005170458052669668, -0.0]","[-0.0005169604944590962, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_5_LVCableDist_mvgd_0_lvgd_1012_7,"[0.0020634831136699867, -8.881784197001009e-16]","[-0.0020629429916275708, 8.88178419700101e-16]","[0.0005172179160464664, 8.881784197001477e-16]","[-0.0005170070461820163, -8.881784197001475e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1012_7_LVCableDist_mvgd_0_lvgd_1012_8,"[0.0020629429924465606, 0.0]","[-0.002062696589965891, 0.0]","[0.0005170070436606113, -0.0]","[-0.000516960494444523, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1012_9_LVStation_mvgd_0_lvgd_1012,"[0.03555701585281863, 8.171241461241113e-14]","[-0.0354788346760926, -8.171241461241078e-14]","[0.008978883093424176, -1.4210854715204143e-14]","[-0.008948360261834088, 1.4210854715204285e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_10_LVCableDist_mvgd_0_lvgd_1013_9,"[0.0011164915990459704, 0.0]","[-0.0011164312414282515, 0.0]","[0.0002798154456404451, 0.0]","[-0.0002798040431586918, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_11_LVCableDist_mvgd_0_lvgd_1013_12,"[0.0011165561559883417, 0.0]","[-0.0011164312413597904, 0.0]","[0.0002798276414037971, 0.0]","[-0.00027980404311038216, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_11_LVCableDist_mvgd_0_lvgd_1013_13,"[0.013433357912036353, -9.237055564881868e-14]","[-0.013425596269063079, 9.2370555648819e-14]","[0.0033715494991973043, 1.0658141036396386e-14]","[-0.0033685192644111765, -1.0658141036396258e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_11_LVCableDist_mvgd_0_lvgd_1013_9,"[0.01455901947887529, -8.881784197001769e-14]","[-0.014549914067401245, 8.881784197001799e-14]","[0.00365493200000688, 1.0658141036396724e-14]","[-0.0036513771425255885, -1.0658141036396604e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_13_LVCableDist_mvgd_0_lvgd_1013_14,"[0.0011164917491952044, 0.0]","[-0.0011164312413029164, 0.0]","[0.0002798154739416628, 0.0]","[-0.0002798040430707337, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_13_LVCableDist_mvgd_0_lvgd_1013_15,"[0.012309104520566957, -7.46069872548157e-14]","[-0.01230258005913669, 7.460698725481591e-14]","[0.003088703788362952, 1.4210854715198088e-14]","[-0.0030861565634964106, -1.4210854715198007e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_15_LVCableDist_mvgd_0_lvgd_1013_16,"[0.0011165564422187552, 0.0]","[-0.0011164312412354949, 0.0]","[0.00027982769541709475, 0.0]","[-0.00027980404302687366, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_15_LVCableDist_mvgd_0_lvgd_1013_17,"[0.01118602361766028, -7.10542735760152e-14]","[-0.01118062964679479, 7.10542735760154e-14]","[0.0028063288657933796, 1.4210854715198238e-14]","[-0.0028042229974600567, -1.4210854715198159e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_17_LVCableDist_mvgd_0_lvgd_1013_18,"[0.0011164918757964814, 0.0]","[-0.0011164312411924794, 0.0]","[0.0002798154977999716, 0.0]","[-0.000279804042991252, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_17_LVCableDist_mvgd_0_lvgd_1013_19,"[0.01006413777179109, -6.039613253961335e-14]","[-0.010059767247360681, 6.039613253961349e-14]","[0.0025244074972039306, 1.5987211554599228e-14]","[-0.002522701194143066, -1.5987211554599178e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_19_LVCableDist_mvgd_0_lvgd_1013_20,"[0.00111655667949372, 0.0]","[-0.0011164312411328595, 0.0]","[0.00027982774019041733, 0.0]","[-0.00027980404295591875, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_19_LVCableDist_mvgd_0_lvgd_1013_21,"[0.008943210568719702, -6.394884621841385e-14]","[-0.008939756360157626, 6.394884621841403e-14]","[0.002242873451351061, 1.0658141036397841e-14]","[-0.002241524888555866, -1.065814103639778e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_1_LVCableDist_mvgd_0_lvgd_1013_2,"[0.1007212972704244, 0.0]","[-0.09999999932374294, 0.0]","[0.02524718489484952, 0.0]","[-0.025062362285405846, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_1_LVStation_mvgd_0_lvgd_1013,"[0.10236425349518496, 1.7763568394003207e-15]","[-0.10072129706472416, -1.7763568394003203e-15]","[0.026052882779367726, 9.646118678502108e-29]","[-0.025247185241478346, -9.624970692372643e-29]" +Branch_LVCableDist_mvgd_0_lvgd_1013_21_LVCableDist_mvgd_0_lvgd_1013_22,"[0.00111649197859944, 0.0]","[-0.0011164312410960045, 0.0]","[0.0002798155171743462, 0.0]","[-0.0002798040429263419, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_21_LVCableDist_mvgd_0_lvgd_1013_23,"[0.007823264382471051, -3.907985046680885e-14]","[-0.007820619072253272, 3.907985046680892e-14]","[0.001961709368638745, 1.0658141036399504e-14]","[-0.001960676609071006, -1.0658141036399479e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_23_LVCableDist_mvgd_0_lvgd_1013_24,"[0.0011165568673398426, 0.0]","[-0.0011164312410468424, 0.0]","[0.0002798277756346986, 0.0]","[-0.00027980404289693013, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_23_LVCableDist_mvgd_0_lvgd_1013_25,"[0.006704062205854385, -3.5527136788008045e-14]","[-0.006702118307891211, 3.5527136788008095e-14]","[0.001680848830560018, 8.881784196999356e-15]","[-0.001680089910412702, -8.881784196999337e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_25_LVCableDist_mvgd_0_lvgd_1013_26,"[0.0011164920574052463, 0.0]","[-0.0011164312410180518, 0.0]","[0.00027981553202650097, 0.0]","[-0.00027980404287614207, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_25_LVCableDist_mvgd_0_lvgd_1013_27,"[0.005585626251466433, -1.421085471520349e-14]","[-0.0055842760595797075, 1.42108547152035e-14]","[0.0014002743754048183, 7.105427357600481e-15]","[-0.0013997472449458171, -7.105427357600477e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_27_LVCableDist_mvgd_0_lvgd_1013_28,"[0.0011165570053876229, 0.0]","[-0.0011164312409801143, 0.0]","[0.00027982780168309124, 0.0]","[-0.0002798040428533691, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_27_LVCableDist_mvgd_0_lvgd_1013_29,"[0.004467719055195322, -3.5527136788013845e-15]","[-0.004466854812741805, 3.552713678801387e-15]","[0.00111991944018196, 8.881784197001615e-15]","[-0.0011195820299770183, -8.881784197001614e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_29_LVCableDist_mvgd_0_lvgd_1013_30,"[0.001116492112059227, 0.0]","[-0.0011164312409603825, 0.0]","[0.0002798155423275225, 0.0]","[-0.0002798040428412918, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_29_LVCableDist_mvgd_0_lvgd_1013_31,"[0.003350362701713507, -2.5571614479224656e-28]","[-0.003349876499349557, 2.564157801343812e-28]","[0.0008397664845047781, 3.552713678800748e-15]","[-0.0008395766655036449, -3.552713678800748e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_31_LVCableDist_mvgd_0_lvgd_1013_32,"[0.001116557093369014, 0.0]","[-0.00111643124093892, 0.0]","[0.00027982781828460605, 0.0]","[-0.0002798040428260646, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_31_LVCableDist_mvgd_0_lvgd_1013_33,"[0.002233319407013516, -3.552713678801004e-15]","[-0.002233103303200168, 3.552713678801005e-15]","[0.0005597488440057708, 3.5527136788004915e-15]","[-0.0005596644745887702, -3.552713678800491e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_33_LVCableDist_mvgd_0_lvgd_1013_34,"[0.0011164921424623516, 0.0]","[-0.0011164312409327251, 0.0]","[0.00027981554805730943, 0.0]","[-0.00027980404282223635, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_33_LVCableDist_mvgd_0_lvgd_1013_35,"[0.0011166111618018636, 0.0]","[-0.0011165571300489738, 0.0]","[0.00027984892329169334, 0.0]","[-0.0002798278286732309, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_35_LVCableDist_mvgd_0_lvgd_1013_36,"[0.0011165571311083419, 0.0]","[-0.001116431240922741, 0.0]","[0.000279827825404463, 0.0]","[-0.00027980404281332594, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_37_LVCableDist_mvgd_0_lvgd_1013_38,"[0.001116491451818193, 0.0]","[-0.0011164312415492036, 0.0]","[0.0002798154178828418, 0.0]","[-0.00027980404323752855, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_37_LVCableDist_mvgd_0_lvgd_1013_39,"[0.030420216425682618, -1.0658141036401656e-13]","[-0.03039148935463861, 1.0658141036401696e-13]","[0.007662168129848021, -5.684341886081622e-14]","[-0.007650952750542263, 5.684341886081637e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_37_LVStation_mvgd_0_lvgd_1013,"[0.03156758169309837, -1.0658141036401625e-13]","[-0.031536707877633206, 1.0658141036401666e-13]","[0.007954037040412934, -5.506706202141573e-14]","[-0.007941983547367047, 5.5067062021415887e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_39_LVCableDist_mvgd_0_lvgd_1013_40,"[0.0011165559332621054, 0.0]","[-0.0011164312414316884, 0.0]","[0.0002798275993647468, 0.0]","[-0.00027980404316132405, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_39_LVCableDist_mvgd_0_lvgd_1013_41,"[0.029274933421321793, -1.0658141036401715e-13]","[-0.029248277845096683, 1.0658141036401751e-13]","[0.007371125151303238, -5.3290705182015705e-14]","[-0.0073607185074264555, 5.3290705182015844e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_3_LVCableDist_mvgd_0_lvgd_1013_4,"[0.0011164913511791275, 0.0]","[-0.0011164312416427416, 0.0]","[0.0002798153989133568, 0.0]","[-0.0002798040432979808, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_3_LVStation_mvgd_0_lvgd_1013,"[0.0011166788814445778, -2.664535259100457e-15]","[-0.0011164913504010511, 2.664535259100458e-15]","[0.0002798886155694656, -4.440892098502248e-16]","[-0.00027981540129079675, 4.440892098502252e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1013_41_LVCableDist_mvgd_0_lvgd_1013_42,"[0.0011164916828712242, 0.0]","[-0.00111643124133155, 0.0]","[0.00027981546142829265, 0.0]","[-0.00027980404309239205, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_41_LVCableDist_mvgd_0_lvgd_1013_43,"[0.028131786162255146, -8.526512829121345e-14]","[-0.028107126302549565, 8.526512829121373e-14]","[0.007080903045888513, -5.329070518201471e-14]","[-0.0070712755527200955, 5.329070518201482e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_43_LVCableDist_mvgd_0_lvgd_1013_44,"[0.0011165563945219454, 0.0]","[-0.0011164312412226334, 0.0]","[0.00027982768640064104, 0.0]","[-0.0002798040430186507, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_43_LVCableDist_mvgd_0_lvgd_1013_45,"[0.026990569908146043, -7.815970093361262e-14]","[-0.026967829930334242, 7.815970093361285e-14]","[0.0067914478659610086, -4.796163466381342e-14]","[-0.006782569916789887, 4.796163466381351e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_45_LVCableDist_mvgd_0_lvgd_1013_46,"[0.001116491897797716, 0.0]","[-0.0011164312411252664, 0.0]","[0.000279815501927644, 0.0]","[-0.0002798040429498554, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_45_LVCableDist_mvgd_0_lvgd_1013_47,"[0.02585133803271945, -7.815970093361285e-14]","[-0.025830441609861365, 7.815970093361308e-14]","[0.0065027544142512795, -4.796163466381351e-14]","[-0.006494596210161213, 4.79616346638136e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_47_LVCableDist_mvgd_0_lvgd_1013_48,"[0.0011165568221096626, 0.0]","[-0.0011164312410163317, 0.0]","[0.00027982776707559685, 0.0]","[-0.00027980404287674066, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_47_LVCableDist_mvgd_0_lvgd_1013_49,"[0.024713884788062048, -7.105427357601167e-14]","[-0.024694755540542016, 7.105427357601186e-14]","[0.006214768442223775, -4.7961634663813225e-14]","[-0.006207300163733348, 4.7961634663813313e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_49_LVCableDist_mvgd_0_lvgd_1013_50,"[0.001116492096280918, 0.0]","[-0.0011164312409141905, 0.0]","[0.000279815539326144, 0.0]","[-0.0002798040428119521, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_49_LVCableDist_mvgd_0_lvgd_1013_51,"[0.023578263444626515, -5.684341886080928e-14]","[-0.02356082453769835, 5.684341886080942e-14]","[0.005927484623279937, -4.2632564145611514e-14]","[-0.00592067627321955, 4.2632564145611565e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_51_LVCableDist_mvgd_0_lvgd_1013_52,"[0.0011165572154238428, 0.0]","[-0.001116431240811474, 0.0]","[0.00027982784127965213, 0.0]","[-0.00027980404273900085, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_51_LVCableDist_mvgd_0_lvgd_1013_53,"[0.0224442673227525, -6.394884621841104e-14]","[-0.022428441872825822, 6.394884621841118e-14]","[0.005640848430542641, -3.90798504668112e-14]","[-0.005634669992673358, 3.9079850466811247e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_53_LVCableDist_mvgd_0_lvgd_1013_54,"[0.0011164922780611461, 0.0]","[-0.001116431240718356, 0.0]","[0.0002798155735670538, 0.0]","[-0.00027980404267478654, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_53_LVCableDist_mvgd_0_lvgd_1013_55,"[0.021311949595328672, -4.2632564145606977e-14]","[-0.02129766030161262, 4.2632564145607065e-14]","[0.005354854417459178, -3.552713678800945e-14]","[-0.005349275712662179, 3.552713678800948e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_55_LVCableDist_mvgd_0_lvgd_1013_56,"[0.001116557573915261, 0.0]","[-0.0011164312406148637, 0.0]","[0.0002798279089095213, 0.0]","[-0.00027980404260718794, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_55_LVCableDist_mvgd_0_lvgd_1013_57,"[0.02018110272834592, -4.973799150320845e-14]","[-0.020168272245205145, 4.973799150320856e-14]","[0.005069447801824583, -3.73034936274102e-14]","[-0.005064438633473259, 3.7303493627410245e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_57_LVCableDist_mvgd_0_lvgd_1013_58,"[0.0011164924428786868, 0.0]","[-0.0011164312405360104, 0.0]","[0.00027981560461072096, 0.0]","[-0.0002798040425474389, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_57_LVCableDist_mvgd_0_lvgd_1013_59,"[0.019051779803064363, -3.5527136788005754e-14]","[-0.019040330406282235, 3.5527136788005823e-14]","[0.004784623026690097, -3.37507799486088e-14]","[-0.0047801530503553385, 3.375077994860882e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_59_LVCableDist_mvgd_0_lvgd_1013_60,"[0.001116557897079604, 0.0]","[-0.0011164312404323483, 0.0]","[0.00027982796987052364, 0.0]","[-0.0002798040424829985, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_59_LVCableDist_mvgd_0_lvgd_1013_61,"[0.01792377251001559, -3.5527136788005823e-14]","[-0.017913626434685734, 3.552713678800589e-14]","[0.004500325078053982, -3.375077994860882e-14]","[-0.004496363933420936, 3.3750779948608855e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_5_LVCableDist_mvgd_0_lvgd_1013_6,"[0.0011164914256478712, 0.0]","[-0.0011164312415732481, 0.0]","[0.00027981541295155705, 0.0]","[-0.0002798040432547622, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_5_LVCableDist_mvgd_0_lvgd_1013_7,"[0.016814733579155677, -9.592326932761822e-14]","[-0.01680262224662284, 9.592326932761857e-14]","[0.004223424360380249, 8.881784196996245e-15]","[-0.004218695956706731, -8.881784196996101e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_5_LVStation_mvgd_0_lvgd_1013,"[0.01794499788529414, -1.13686837721621e-13]","[-0.017931225004374295, 1.136868377216215e-13]","[0.004508616865944219, 8.881784196995429e-15]","[-0.004503239774648958, -8.881784196995246e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_61_LVCableDist_mvgd_0_lvgd_1013_62,"[0.001116492590481983, 0.0]","[-0.0011164312403509622, 0.0]","[0.0002798156324106499, 0.0]","[-0.00027980404242787787, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_61_LVCableDist_mvgd_0_lvgd_1013_63,"[0.016797133845088755, -3.552713678800589e-14]","[-0.016788212986972268, 3.5527136788005956e-14]","[0.0042165482983324174, -3.3750779948608855e-14]","[-0.004213065492606908, 3.375077994860888e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_63_LVCableDist_mvgd_0_lvgd_1013_64,"[0.0011165581844525888, 0.0]","[-0.0011164312402622838, 0.0]","[0.0002798280240764982, 0.0]","[-0.00027980404236767125, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_63_LVCableDist_mvgd_0_lvgd_1013_65,"[0.015671654803478496, -4.263256414560764e-14]","[-0.015663881021942754, 4.2632564145607715e-14]","[0.0039332374656094165, -3.019806626980846e-14]","[-0.003930202491788734, 3.01980662698085e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_65_LVCableDist_mvgd_0_lvgd_1013_66,"[0.0011164927206869467, 0.0]","[-0.0011164312401911235, 0.0]","[0.0002798156569287436, 0.0]","[-0.00027980404231805654, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_65_LVCableDist_mvgd_0_lvgd_1013_67,"[0.014547388302312574, -4.973799150320924e-14]","[-0.01454068315720872, 4.973799150320933e-14]","[0.0036503868317077086, -3.0198066269808833e-14]","[-0.0036477690658545648, 3.019806626980886e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_67_LVCableDist_mvgd_0_lvgd_1013_68,"[0.0011165584356239932, 0.0]","[-0.0011164312401080428, 0.0]","[0.00027982807145170716, 0.0]","[-0.00027980404226360264, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_67_LVCableDist_mvgd_0_lvgd_1013_69,"[0.01342412472269754, -2.842170943040514e-14]","[-0.013418409741905854, 2.8421709430405175e-14]","[0.0033679409910308787, -2.131628207280594e-14]","[-0.003365709796726186, 2.1316282072805956e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_69_LVCableDist_mvgd_0_lvgd_1013_70,"[0.0011164928332906376, 0.0]","[-0.0011164312400414953, 0.0]","[0.0002798156781307655, 0.0]","[-0.0002798040422192435, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_69_LVCableDist_mvgd_0_lvgd_1013_71,"[0.012301916909777263, -3.552713678800664e-14]","[-0.012297113361981804, 3.552713678800668e-14]","[0.003085894115003262, -2.3092638912206677e-14]","[-0.0030840187546347497, 2.3092638912206695e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_71_LVCableDist_mvgd_0_lvgd_1013_72,"[0.0011165586502345256, 0.0]","[-0.0011164312399735239, 0.0]","[0.00027982811192853185, 0.0]","[-0.0002798040421717863, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_71_LVCableDist_mvgd_0_lvgd_1013_73,"[0.011180554713000432, -3.552713678800701e-14]","[-0.011176583839448863, 3.552713678800705e-14]","[0.002804190638924728, -1.5987211554605145e-14]","[-0.0028026403641686335, 1.5987211554605157e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_73_LVCableDist_mvgd_0_lvgd_1013_74,"[0.0011164929281465143, 0.0]","[-0.0011164312399187925, 0.0]","[0.0002798156959898285, 0.0]","[-0.0002798040421353928, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_73_LVCableDist_mvgd_0_lvgd_1013_75,"[0.010060090912602423, -4.263256414560845e-14]","[-0.01005687373610401, 4.26325641456085e-14]","[0.002522824664203086, -1.9539925233406267e-14]","[-0.002521568641454787, 1.953992523340629e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_75_LVCableDist_mvgd_0_lvgd_1013_76,"[0.0011165588279696752, 0.0]","[-0.0011164312398557915, 0.0]","[0.00027982814545028, 0.0]","[-0.00027980404209439116, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_75_LVCableDist_mvgd_0_lvgd_1013_77,"[0.008940314909480851, -5.684341886081173e-14]","[-0.008937772430039166, 5.684341886081183e-14]","[0.0022417404918628767, -1.7763568394006556e-14]","[-0.002240747878614143, 1.7763568394006597e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_77_LVCableDist_mvgd_0_lvgd_1013_78,"[0.0011164930051116722, 0.0]","[-0.0011164312398181412, 0.0]","[0.0002798157104799189, 0.0]","[-0.0002798040420665673, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_77_LVCableDist_mvgd_0_lvgd_1013_79,"[0.007821279426338052, -4.2632564145608984e-14]","[-0.007819332466646439, 4.2632564145609047e-14]","[0.001960932163842792, -1.0658141036404354e-14]","[-0.0019601720483614395, 1.0658141036404374e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_79_LVCableDist_mvgd_0_lvgd_1013_80,"[0.001116558968577347, 0.0]","[-0.0011164312397616701, 0.0]","[0.0002798281719680969, 0.0]","[-0.00027980404203147664, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_79_LVCableDist_mvgd_0_lvgd_1013_81,"[0.006702773499503557, -7.105427357601523e-14]","[-0.006701342864160449, 7.105427357601538e-14]","[0.0016803438719609084, -1.4210854715206494e-14]","[-0.001679785335450291, 1.4210854715206548e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_7_LVCableDist_mvgd_0_lvgd_1013_8,"[0.0011165558213543359, 0.0]","[-0.0011164312414952034, 0.0]","[0.00027982757825430893, 0.0]","[-0.0002798040432039829, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_7_LVCableDist_mvgd_0_lvgd_1013_9,"[0.015686066425765855, -1.0302869668522002e-13]","[-0.015675511077352287, 1.0302869668522041e-13]","[0.003938868376929073, 1.0658141036396023e-14]","[-0.003934747447371679, -1.0658141036395873e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_81_LVCableDist_mvgd_0_lvgd_1013_82,"[0.0011164930640713226, 0.0]","[-0.0011164312397370917, 0.0]","[0.0002798157215789336, 0.0]","[-0.00027980404201188614, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_81_LVCableDist_mvgd_0_lvgd_1013_83,"[0.005584849801579351, -4.263256414560913e-14]","[-0.005583856159302797, 4.263256414560918e-14]","[0.0013999696093311056, -1.065814103640441e-14]","[-0.001399581679945311, 1.0658141036404434e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1013_83_LVCableDist_mvgd_0_lvgd_1013_84,"[0.0011165590718543725, 0.0]","[-0.0011164312396933856, 0.0]","[0.00027982819144520586, 0.0]","[-0.0002798040419850679, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_83_LVCableDist_mvgd_0_lvgd_1013_85,"[0.004467297088948811, -3.552713678800782e-14]","[-0.0044666610951363565, 3.552713678800785e-14]","[0.001119753483850468, -5.329070518202888e-15]","[-0.001119505184543105, 5.3290705182028995e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_85_LVCableDist_mvgd_0_lvgd_1013_86,"[0.0011164931049412968, 0.0]","[-0.001116431239677748, 0.0]","[0.0002798157292706723, 0.0]","[-0.00027980404197144756, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_85_LVCableDist_mvgd_0_lvgd_1013_87,"[0.0033501679917338116, -2.8421709430406147e-14]","[-0.003349810207564218, 2.842170943040617e-14]","[0.0008396894505399465, -7.105427357602968e-15]","[-0.0008395497674805269, 7.105427357602976e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_87_LVCableDist_mvgd_0_lvgd_1013_88,"[0.001116559137650617, 0.0]","[-0.001116431239651981, 0.0]","[0.0002798282038532424, 0.0]","[-0.00027980404195536055, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_87_LVCableDist_mvgd_0_lvgd_1013_89,"[0.002233251071469771, -2.1316282072804627e-14]","[-0.0022330920496226154, 2.131628207280464e-14]","[0.0005597215588337891, -5.329070518202232e-15]","[-0.0005596594748736451, 5.3290705182022384e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_89_LVCableDist_mvgd_0_lvgd_1013_90,"[0.0011164931276668355, 0.0]","[-0.0011164312396452624, 0.0]","[0.000279815733549359, 0.0]","[-0.0002798040419507937, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1013_89_LVCableDist_mvgd_0_lvgd_1013_91,"[0.001116598923533953, 8.457639528547136e-29]","[-0.0011165591642926243, -8.447501050411291e-29]","[0.00027984373649643713, -1.776356839400408e-15]","[-0.00027982821403082527, 1.776356839400408e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1013_91_LVCableDist_mvgd_0_lvgd_1013_92,"[0.0011165591658610467, 0.0]","[-0.0011164312396288738, 0.0]","[0.00027982820917402075, 0.0]","[-0.00027980404194238975, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_10_LVCableDist_mvgd_0_lvgd_1014_9,"[0.0006121896805282695, 0.0]","[-0.0006121508898806751, 0.0]","[0.00015342680276601243, -0.0]","[-0.00015341947461642493, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_11_LVCableDist_mvgd_0_lvgd_1014_12,"[0.0006121720766591014, 0.0]","[-0.0006121508898794641, 0.0]","[0.00015342347712146172, -0.0]","[-0.00015341947461312304, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_11_LVCableDist_mvgd_0_lvgd_1014_13,"[0.011682681236395228, 7.460698725480866e-14]","[-0.01167520538885727, -7.460698725480837e-14]","[0.0029350811789059716, -1.3322676295505103e-14]","[-0.0029321625219485064, 1.3322676295505217e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_11_LVCableDist_mvgd_0_lvgd_1014_9,"[0.01230313303646441, 7.815970093360934e-14]","[-0.01229485331303452, -7.815970093360903e-14]","[0.0030917371554392806, -1.5099033134905366e-14]","[-0.0030885046560775904, 1.5099033134905486e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_13_LVCableDist_mvgd_0_lvgd_1014_14,"[0.000612189785917737, 0.0]","[-0.0006121508898739345, 0.0]","[0.00015342682266920678, -0.0]","[-0.0001534194746086555, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_13_LVCableDist_mvgd_0_lvgd_1014_15,"[0.011063015602960746, 6.75015598972074e-14]","[-0.011056303101623827, -6.750155989720716e-14]","[0.0027787356992131423, -1.5987211554605195e-14]","[-0.002776115061401907, 1.5987211554605287e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_15_LVCableDist_mvgd_0_lvgd_1014_16,"[0.0006121721313028585, 0.0]","[-0.0006121508898687695, 0.0]","[0.0001534234874378813, -0.0]","[-0.00015341947460447656, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_15_LVCableDist_mvgd_0_lvgd_1014_17,"[0.010444130970346936, 6.394884621840683e-14]","[-0.01043814113681603, -6.394884621840663e-14]","[0.0026226915738766336, -1.4210854715204897e-14]","[-0.002620353073897832, 1.421085471520498e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_17_LVCableDist_mvgd_0_lvgd_1014_18,"[0.0006121898808982914, 0.0]","[-0.0006121508898623676, 0.0]","[0.00015342684060579354, -0.0]","[-0.00015341947459977044, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_17_LVCableDist_mvgd_0_lvgd_1014_19,"[0.009825951255939876, 5.6843418860805806e-14]","[-0.009820643353166437, -5.684341886080562e-14]","[0.0024669262331866258, -1.4210854715204607e-14]","[-0.0024648539668274483, 1.4210854715204673e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_19_LVCableDist_mvgd_0_lvgd_1014_20,"[0.0006121721802314129, 0.0]","[-0.0006121508898535182, 0.0]","[0.0001534234966770268, -0.0]","[-0.00015341947459738482, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_19_LVCableDist_mvgd_0_lvgd_1014_21,"[0.00920847117298811, 6.039613253960612e-14]","[-0.009203804330642383, -6.039613253960594e-14]","[0.002311430470038847, -1.2434497875804664e-14]","[-0.0023096084810519685, 1.2434497875804737e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_1_LVCableDist_mvgd_0_lvgd_1014_2,"[0.019065963305232324, 0.0]","[-0.01899999999509904, 0.0]","[0.0047683188212635, -0.0]","[-0.004761848857036398, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_1_LVStation_mvgd_0_lvgd_1014,"[0.01907271837126118, 7.105427357600831e-15]","[-0.019065963295982476, -7.105427357600831e-15]","[0.00477423968857772, -3.552713678800762e-15]","[-0.0047683188357089835, 3.552713678800762e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_21_LVCableDist_mvgd_0_lvgd_1014_22,"[0.0006121899653438021, 0.0]","[-0.0006121508898496378, 0.0]","[0.00015342685655395091, -0.0]","[-0.00015341947459246796, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_21_LVCableDist_mvgd_0_lvgd_1014_23,"[0.008591614365325273, 5.3290705182005166e-14]","[-0.008587547660827833, -5.329070518200502e-14]","[0.0021561816243628484, -1.243449787580434e-14]","[-0.0021545939361020663, 1.2434497875804398e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_23_LVCableDist_mvgd_0_lvgd_1014_24,"[0.0006121722233872396, 0.0]","[-0.0006121508898432309, 0.0]","[0.00015342350482353676, -0.0]","[-0.0001534194745891524, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_23_LVCableDist_mvgd_0_lvgd_1014_25,"[0.007975375437485938, 4.973799150320479e-14]","[-0.007971867830620004, -4.9737991503204665e-14]","[0.0020011704311279593, -9.769962616703907e-15]","[-0.0019998010210200983, 9.769962616703956e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_25_LVCableDist_mvgd_0_lvgd_1014_26,"[0.0006121900391425339, 0.0]","[-0.0006121508898399952, 0.0]","[0.00015342687049102002, -0.0]","[-0.00015341947458600061, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_25_LVCableDist_mvgd_0_lvgd_1014_27,"[0.007359677791525969, 3.9079850466803434e-14]","[-0.0073566881963363214, -3.907985046680335e-14]","[0.0018463741503651457, -1.1546319456103517e-14]","[-0.0018452069779802127, 1.1546319456103548e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_27_LVCableDist_mvgd_0_lvgd_1014_28,"[0.0006121722607081586, 0.0]","[-0.0006121508898351391, 0.0]","[0.0001534235118687812, -0.0]","[-0.0001534194745823729, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_27_LVCableDist_mvgd_0_lvgd_1014_29,"[0.00674451593568675, 4.263256414560388e-14]","[-0.006742003164420654, -4.263256414560379e-14]","[0.0016917834659361595, -8.881784197003486e-15]","[-0.0016908024511012442, 8.881784197003521e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_29_LVCableDist_mvgd_0_lvgd_1014_30,"[0.000612190102189026, 0.0]","[-0.0006121508898297923, 0.0]","[0.00015342688239678394, -0.0]","[-0.00015341947457938563, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_29_LVCableDist_mvgd_0_lvgd_1014_31,"[0.006129813062286473, 3.552713678800312e-14]","[-0.006127735888058534, -3.552713678800306e-14]","[0.0015373755685159714, -7.993605777302995e-15]","[-0.0015365646157803163, 7.99360577730302e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_31_LVCableDist_mvgd_0_lvgd_1014_32,"[0.0006121722921302768, 0.0]","[-0.0006121508898169419, 0.0]","[0.00015342351780309985, -0.0]","[-0.00015341947457713265, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_31_LVCableDist_mvgd_0_lvgd_1014_33,"[0.005515563595986228, 3.1974423109202703e-14]","[-0.0055138807061236635, -3.197442310920265e-14]","[0.0013831410977740862, -7.993605777302798e-15]","[-0.0013824840781945567, 7.993605777302818e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_33_LVCableDist_mvgd_0_lvgd_1014_34,"[0.0006121901543995092, 0.0]","[-0.0006121508898225739, 0.0]","[0.00015342689225583607, -0.0]","[-0.00015341947457371126, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_33_LVCableDist_mvgd_0_lvgd_1014_35,"[0.004901690551787048, 2.4868995751602008e-14]","[-0.004900360601171387, -2.486899575160197e-14]","[0.0012290571857247906, -7.10542735760228e-15]","[-0.0012285379576910758, 7.105427357602292e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_35_LVCableDist_mvgd_0_lvgd_1014_36,"[0.000612172317641555, 0.0]","[-0.0006121508898202043, 0.0]","[0.0001534235226173228, -0.0]","[-0.00015341947457249934, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_35_LVCableDist_mvgd_0_lvgd_1014_37,"[0.004288188283597658, 2.4868995751602027e-14]","[-0.004287169857477225, -2.4868995751601995e-14]","[0.0010751144348494523, -6.217248937902205e-15]","[-0.0010747168295656404, 6.2172489379022185e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_37_LVCableDist_mvgd_0_lvgd_1014_38,"[0.0006121901956994773, 0.0]","[-0.0006121508898163733, 0.0]","[0.00015342690005593402, -0.0]","[-0.00015341947457043895, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_37_LVCableDist_mvgd_0_lvgd_1014_39,"[0.0036749796618471054, 1.776356839400131e-14]","[-0.0036742313197790514, -1.7763568394001296e-14]","[0.0009212899292772518, -6.2172489379017554e-15]","[-0.0009209977679172988, 6.217248937901763e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_39_LVCableDist_mvgd_0_lvgd_1014_40,"[0.0006121723371775033, 0.0]","[-0.0006121508898159193, 0.0]","[0.00015342352630467803, -0.0]","[-0.00015341947456840423, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_39_LVCableDist_mvgd_0_lvgd_1014_41,"[0.0030620589826827705, 1.421085471520107e-14]","[-0.003061539230862508, -1.4210854715201057e-14]","[0.0007675742413722312, -4.44089209850136e-15]","[-0.0007673713242770578, 4.440892098501363e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_3_LVCableDist_mvgd_0_lvgd_1014_4,"[0.0006121719901230167, 0.0]","[-0.0006121508898938678, 0.0]","[0.00015342346078295015, -0.0]","[-0.00015341947462532913, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_3_LVCableDist_mvgd_0_lvgd_1014_5,"[0.0006122315394138793, 1.7763568394002584e-15]","[-0.0006121895812730648, -1.776356839400258e-15]","[0.0001534431651218834, 4.4408920984999014e-16]","[-0.00015342678418059366, -4.4408920984998994e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1014_3_LVStation_mvgd_0_lvgd_1014,"[0.0012245713454197128, 8.881784197001142e-15]","[-0.0012244035294894126, -8.881784197001136e-15]","[0.0003069321433250941, -1.7763568394005885e-15]","[-0.0003068666260536333, 1.7763568394005916e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_41_LVCableDist_mvgd_0_lvgd_1014_42,"[0.0006121902260365731, 0.0]","[-0.000612150889816363, 0.0]","[0.00015342690578438087, -0.0]","[-0.00015341947456774018, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_41_LVCableDist_mvgd_0_lvgd_1014_43,"[0.002449349004896638, 1.4210854715201115e-14]","[-0.0024490163306365572, -1.4210854715201108e-14]","[0.0006139444182435059, -3.552713678801279e-15]","[-0.0006138145383818814, 3.552713678801283e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_43_LVCableDist_mvgd_0_lvgd_1014_44,"[0.0006121723507251664, 0.0]","[-0.0006121508898183733, 0.0]","[0.00015342352886118515, -0.0]","[-0.00015341947456601316, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_43_LVCableDist_mvgd_0_lvgd_1014_45,"[0.001836843980006128, 3.552713678800336e-15]","[-0.001836656833618452, -3.5527136788003353e-15]","[0.0004603910092697858, -2.3673530953215242e-28]","[-0.00046031794516518984, 2.372127251543298e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1014_45_LVCableDist_mvgd_0_lvgd_1014_46,"[0.0006121902453524461, 0.0]","[-0.0006121508898065317, 0.0]","[0.00015342690943314301, -0.0]","[-0.0001534194745655797, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_45_LVCableDist_mvgd_0_lvgd_1014_47,"[0.001224466588350266, -1.186063625771649e-28]","[-0.0012243834081118285, 1.1872452686731574e-28]","[0.0003068910354740614, -1.7763568394001676e-15]","[-0.0003068585609512188, 1.7763568394001674e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1014_47_LVCableDist_mvgd_0_lvgd_1014_48,"[0.0006121723582428374, 0.0]","[-0.0006121508898047775, 0.0]","[0.00015342353028209853, -0.0]","[-0.00015341947456415437, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_47_LVCableDist_mvgd_0_lvgd_1014_49,"[0.0006122110499428757, 3.552713678800335e-15]","[-0.0006121902535545137, -3.5527136788003345e-15]","[0.0001534350304087807, -2.374490537346315e-28]","[-0.0001534269112593097, 2.376853823149332e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1014_49_LVCableDist_mvgd_0_lvgd_1014_50,"[0.000612190253643833, 0.0]","[-0.0006121508898106212, 0.0]","[0.0001534269109969486, -0.0]","[-0.00015341947456378748, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_5_LVCableDist_mvgd_0_lvgd_1014_6,"[0.0006121895813187681, 0.0]","[-0.0006121508898965337, 0.0]","[0.00015342678402966936, -0.0]","[-0.00015341947462527755, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_7_LVCableDist_mvgd_0_lvgd_1014_8,"[0.0006121720163771765, 0.0]","[-0.0006121508898881696, 0.0]","[0.000153423465739756, -0.0]","[-0.00015341947462124407, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1014_7_LVCableDist_mvgd_0_lvgd_1014_9,"[0.01292444678106705, 9.237055564881162e-14]","[-0.012915322716991612, -9.237055564881121e-14]","[0.0032487260979116098, -1.4210854715205708e-14]","[-0.003245163958239964, 1.4210854715205875e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1014_7_LVStation_mvgd_0_lvgd_1014,"[0.013546627503047545, 9.237055564881205e-14]","[-0.01353661879745499, -9.237055564881162e-14]","[0.003406057077576129, -1.421085471520554e-14]","[-0.0034021495636702317, 1.4210854715205708e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1015_1_LVCableDist_mvgd_0_lvgd_1015_2,"[0.020074415943585354, 0.0]","[-0.019999999979243396, 0.0]","[0.005019771499391257, 0.0]","[-0.005012472462604824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1015_1_LVStation_mvgd_0_lvgd_1015,"[0.02008965726888251, -3.552713678800518e-15]","[-0.02007441590397249, 3.552713678800519e-15]","[0.0050331306837356525, -3.55271367880055e-15]","[-0.00501977156108672, 3.552713678800551e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1015_3_LVCableDist_mvgd_0_lvgd_1015_4,"[0.08926382608293328, 0.0]","[-0.08879054264793021, 0.0]","[0.02234241801712013, 0.0]","[-0.02225300750133678, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1015_3_LVStation_mvgd_0_lvgd_1015,"[0.09089238482703879, 4.021025101900729e-30]","[-0.08926382601447055, -3.883911215812005e-30]","[0.022978226341364812, -8.881784197001335e-16]","[-0.022342418229333336, 8.881784197001335e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1016_1_LVCableDist_mvgd_0_lvgd_1016_2,"[0.08122109888780553, 0.0]","[-0.07999999991664904, 0.0]","[0.020169660499484994, -0.0]","[-0.020049889877829265, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1016_1_LVStation_mvgd_0_lvgd_1016,"[0.0823934288901231, -1.776356839400912e-15]","[-0.08122109884913942, 1.7763568394009127e-15]","[0.020918042824551425, -8.88178419699885e-16]","[-0.020169660588662153, 8.881784196998855e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1016_3_LVCableDist_mvgd_0_lvgd_1016_4,"[0.03273718982602203, 0.0]","[-0.032676666661803175, 0.0]","[0.008200978384679215, -0.0]","[-0.008189544628647558, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1016_3_LVStation_mvgd_0_lvgd_1016,"[0.03294544881942194, 8.881784197001706e-16]","[-0.03273718982450811, -8.881784197001704e-16]","[0.00828228509893033, -6.661338147754847e-16]","[-0.008200978389373477, 6.661338147754848e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1016_5_LVCableDist_mvgd_0_lvgd_1016_6,"[0.03273851665447671, 0.0]","[-0.0326766666530995, 0.0]","[0.00820122903889826, -0.0]","[-0.008189544622932376, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1016_5_LVCableDist_mvgd_0_lvgd_1016_7,"[0.03307416993909298, -5.726694628300253e-29]","[-0.03279245499134289, 5.727805504692169e-29]","[0.008321403599146762, -2.220446049250853e-16]","[-0.008211418839813717, 2.220446049250853e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1016_5_LVStation_mvgd_0_lvgd_1016,"[0.06692785322488723, 3.5527136788008536e-15]","[-0.06581268659399324, -3.55271367880085e-15]","[0.016958006529847434, -1.9984014443266824e-15]","[-0.016522632636858537, 1.998401444326684e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1016_7_LVCableDist_mvgd_0_lvgd_1016_8,"[0.032792454999321395, 0.0]","[-0.032676666639230814, 0.0]","[0.008211418815490569, -0.0]","[-0.008189544614469059, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_100_LVCableDist_mvgd_0_lvgd_1017_99,"[0.0038236063596255, 0.0]","[-0.0038223849130984916, 0.0]","[0.0009580967970727316, -0.0]","[-0.0009579769923613081, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_101_LVCableDist_mvgd_0_lvgd_1017_102,"[0.003823017405382488, 0.0]","[-0.0038223848004551677, 0.0]","[0.0009580982250639769, -0.0]","[-0.0009579787162693399, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_101_LVCableDist_mvgd_0_lvgd_1017_103,"[0.04601735234640937, 7.105427357607077e-14]","[-0.04598690766797888, -7.105427357607068e-14]","[0.011564706540916268, 4.973799150316073e-14]","[-0.011549776624335095, -4.973799150316071e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_101_LVCableDist_mvgd_0_lvgd_1017_99,"[0.04987608045508591, 7.105427357607086e-14]","[-0.04984036800626228, -7.105427357607077e-14]","[0.01254032189869475, 4.973799150316078e-14]","[-0.012522808694110784, -4.973799150316073e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_103_LVCableDist_mvgd_0_lvgd_1017_104,"[0.003823609816570715, 0.0]","[-0.0038223848059531457, 0.0]","[0.0009580970184254536, -0.0]","[-0.0009579768641327494, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_103_LVCableDist_mvgd_0_lvgd_1017_105,"[0.04216329975211403, 4.263256414565314e-14]","[-0.042137706650719406, -4.26325641456531e-14]","[0.01059167363099215, 4.263256414558164e-14]","[-0.010579122903292805, -4.2632564145581613e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_105_LVCableDist_mvgd_0_lvgd_1017_106,"[0.003823019002829823, 0.0]","[-0.0038223846988184617, 0.0]","[0.000958098482542024, -0.0]","[-0.0009579786527642948, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_105_LVCableDist_mvgd_0_lvgd_1017_107,"[0.03831468954787821, 7.105427357607064e-14]","[-0.03829352929340585, -7.105427357607057e-14]","[0.009621020063255247, 4.9737991503160685e-14]","[-0.009610643181304269, -4.973799150316065e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_107_LVCableDist_mvgd_0_lvgd_1017_108,"[0.0038236127314000066, 0.0]","[-0.0038223847136517617, 0.0]","[0.0009580972029733551, -0.0]","[-0.0009579767537283834, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_107_LVCableDist_mvgd_0_lvgd_1017_109,"[0.03446991860816307, 5.684341886085289e-14]","[-0.03445277273313639, -5.684341886085282e-14]","[0.008652539551363584, 3.552713678796679e-14]","[-0.008644131300823383, -3.552713678796676e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_109_LVCableDist_mvgd_0_lvgd_1017_110,"[0.00382302032620195, 0.0]","[-0.0038223846129071797, 0.0]","[0.000958098695117491, -0.0]","[-0.0009579785991044637, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_109_LVCableDist_mvgd_0_lvgd_1017_111,"[0.03062975443833796, 7.105427357605859e-14]","[-0.03061620237000926, -7.105427357605852e-14]","[0.007686027879330542, 3.5527136787954844e-14]","[-0.007679382013449193, -3.5527136787954825e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_10_LVCableDist_mvgd_0_lvgd_1017_9,"[0.0038229166108710837, 0.0]","[-0.003822387863955279, 0.0]","[0.0009580805303835985, -0.0]","[-0.0009579806419637542, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_111_LVCableDist_mvgd_0_lvgd_1017_112,"[0.0038236150983938667, 0.0]","[-0.0038223846373621104, 0.0]","[0.0009580973514146656, -0.0]","[-0.000957976662521973, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_111_LVCableDist_mvgd_0_lvgd_1017_113,"[0.02679258943872715, 5.684341886087063e-14]","[-0.026782210816926492, -5.684341886087057e-14]","[0.006721277856664652, 5.6843418860775356e-14]","[-0.006716188232937303, -5.684341886077532e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_113_LVCableDist_mvgd_0_lvgd_1017_114,"[0.0038230213733555303, 0.0]","[-0.003822384543812744, 0.0]","[0.0009580988628519298, -0.0]","[-0.0009579785559624943, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_113_LVCableDist_mvgd_0_lvgd_1017_115,"[0.022959191581301372, 4.263256414565888e-14]","[-0.022951564377576648, -4.263256414565884e-14]","[0.005758084343282935, 4.973799150318436e-14]","[-0.005754344001087571, -4.973799150318434e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_115_LVCableDist_mvgd_0_lvgd_1017_116,"[0.0038236169129128345, 0.0]","[-0.0038223845780674904, 0.0]","[0.0009580974643371403, -0.0]","[-0.0009579765916527786, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_115_LVCableDist_mvgd_0_lvgd_1017_117,"[0.019127949726220807, 4.263256414565289e-14]","[-0.01912265207465774, -4.263256414565285e-14]","[0.004796239434364347, 4.2632564145581474e-14]","[-0.004793641492786702, -4.263256414558146e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_117_LVCableDist_mvgd_0_lvgd_1017_118,"[0.003823022142603018, 0.0]","[-0.0038223844924207624, 0.0]","[0.0009580989858056423, -0.0]","[-0.0009579785238847968, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_117_LVCableDist_mvgd_0_lvgd_1017_119,"[0.015299632149228698, 4.2632564145646906e-14]","[-0.015296240957000648, -4.263256414564687e-14]","[0.0038355372545788536, 3.55271367879786e-14]","[-0.0038338742310330136, -3.552713678797858e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_119_LVCableDist_mvgd_0_lvgd_1017_120,"[0.0038236181713815318, 0.0]","[-0.0038223845365211017, 0.0]","[0.0009580975422102805, -0.0]","[-0.0009579765420148662, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_119_LVCableDist_mvgd_0_lvgd_1017_121,"[0.011472625113516589, 5.684341886085258e-14]","[-0.011470717400311282, -5.684341886085253e-14]","[0.0028757693768916986, 3.5527136787966683e-14]","[-0.002874833843968235, -3.552713678796666e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_11_LVCableDist_mvgd_0_lvgd_1017_12,"[0.003823416430586016, 0.0]","[-0.0038223878404266133, 0.0]","[0.0009580814133462107, -0.0]","[-0.000957980524814052, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_11_LVCableDist_mvgd_0_lvgd_1017_13,"[0.2308683919807134, 3.836930773107413e-13]","[-0.2302200261118647, -3.8369307731073955e-13]","[0.06095823260691965, 1.4921397450936696e-13]","[-0.06064027725856244, -1.4921397450936618e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_11_LVCableDist_mvgd_0_lvgd_1017_9,"[0.2353617557001023, 4.1211478674117714e-13]","[-0.23469180928099387, -4.121147867411751e-13]","[0.06224485048598151, 1.705302565821566e-13]","[-0.06191631214474133, -1.7053025658215555e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_121_LVCableDist_mvgd_0_lvgd_1017_122,"[0.0038230226327188605, 0.0]","[-0.003822384459403608, 0.0]","[0.0009580990640227654, -0.0]","[-0.0009579785032740556, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_121_LVCableDist_mvgd_0_lvgd_1017_123,"[0.0076476970359335705, 1.421085471519975e-14]","[-0.007646849039129044, -1.4210854715199746e-14]","[0.0019167293816279194, -7.105427357614747e-15]","[-0.0019163135282766804, 7.105427357614747e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1017_123_LVCableDist_mvgd_0_lvgd_1017_124,"[0.003823618871328756, 0.0]","[-0.00382238451326316, 0.0]","[0.0009580975853642769, -0.0]","[-0.0009579765142337998, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_123_LVCableDist_mvgd_0_lvgd_1017_125,"[0.003823232532993879, 2.842170943041139e-14]","[-0.003823020552471344, -2.8421709430411385e-14]","[0.0009582085131346054, -2.3796837933739844e-26]","[-0.0009581045589566856, 2.3799883243742523e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1017_125_LVCableDist_mvgd_0_lvgd_1017_126,"[0.0038230228429053377, 0.0]","[-0.0038223844451761835, 0.0]","[0.0009580990975390845, -0.0]","[-0.0009579784943951394, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_127_LVCableDist_mvgd_0_lvgd_1017_128,"[0.0038229091224384225, 0.0]","[-0.0038223879195281502, 0.0]","[0.0009580791396645802, -0.0]","[-0.0009579806764233409, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_127_LVCableDist_mvgd_0_lvgd_1017_129,"[0.27250627293715785, 1.2789769243681262e-12]","[-0.27197584634549493, -1.278976924368113e-12]","[0.0712930266990862, -7.389644451918991e-13]","[-0.07103290817676236, 7.389644451919056e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_127_LVStation_mvgd_0_lvgd_1017,"[0.2768745551639025, 1.2221335055072592e-12]","[-0.2763291824413917, -1.2221335055072457e-12]","[0.07251855300923485, -7.958078640526783e-13]","[-0.07225110497980917, 7.958078640526845e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_129_LVCableDist_mvgd_0_lvgd_1017_130,"[0.0038233998916962593, 0.0]","[-0.0038223879107802962, 0.0]","[0.0009580798675764076, -0.0]","[-0.0009579806081500453, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_129_LVCableDist_mvgd_0_lvgd_1017_131,"[0.26815244606353067, 1.2221335055072804e-12]","[-0.26763678989585027, -1.2221335055072677e-12]","[0.0700748291370343, -7.389644451918576e-13]","[-0.06982195395605276, 7.389644451918638e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_131_LVCableDist_mvgd_0_lvgd_1017_132,"[0.003822913382793132, 0.0]","[-0.0038223878975190023, 0.0]","[0.0009580799347133717, -0.0]","[-0.0009579806624677749, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_131_LVCableDist_mvgd_0_lvgd_1017_133,"[0.2638138761101174, 1.1652900866464593e-12]","[-0.2633128095280353, -1.1652900866464482e-12]","[0.06886387493958887, -7.105427357613991e-13]","[-0.0686181544177191, 7.105427357614048e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_133_LVCableDist_mvgd_0_lvgd_1017_134,"[0.003823408083920988, 0.0]","[-0.0038223878879655795, 0.0]","[0.0009580806454272082, -0.0]","[-0.0009579805802345613, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_133_LVCableDist_mvgd_0_lvgd_1017_135,"[0.2594894010356631, 1.2221335055072926e-12]","[-0.25900274513803156, -1.2221335055072806e-12]","[0.06766007464155514, -6.963318810462457e-13]","[-0.06742142104657753, 6.963318810462515e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_135_LVCableDist_mvgd_0_lvgd_1017_136,"[0.003822917569782896, 0.0]","[-0.0038223878730259124, 0.0]","[0.0009580807147574437, -0.0]","[-0.0009579806468980004, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_135_LVCableDist_mvgd_0_lvgd_1017_137,"[0.25517982714928983, 1.1652900866464983e-12]","[-0.25470739798089753, -1.1652900866464872e-12]","[0.06646334129956984, -6.394884621853703e-13]","[-0.0662316644207776, 6.394884621853756e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_137_LVCableDist_mvgd_0_lvgd_1017_138,"[0.003823416132695584, 0.0]","[-0.0038223878627064063, 0.0]","[0.0009580814063686327, -0.0]","[-0.000957980549240142, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_137_LVCableDist_mvgd_0_lvgd_1017_139,"[0.2508839814271976, 1.1368683772160712e-12]","[-0.250425596931219, -1.1368683772160607e-12]","[0.06527358391307202, -6.394884621853507e-13]","[-0.06504879447071714, 6.394884621853559e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_139_LVCableDist_mvgd_0_lvgd_1017_140,"[0.003822921679337004, 0.0]","[-0.003822387846058785, 0.0]","[0.0009580814790211581, -0.0]","[-0.0009579806297092705, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_139_LVCableDist_mvgd_0_lvgd_1017_141,"[0.2466026748227226, 1.0800249583552547e-12]","[-0.24615814797106678, -1.0800249583552448e-12]","[0.06409071399778596, -6.110667527548901e-13]","[-0.06387272027423702, 6.110667527548947e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_13_LVCableDist_mvgd_0_lvgd_1017_14,"[0.0038229229175619425, 0.0]","[-0.0038223878079063304, 0.0]","[0.0009580816973294866, -0.0]","[-0.0009579806068902899, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_13_LVCableDist_mvgd_0_lvgd_1017_15,"[0.22639710227045617, 3.9790393202595347e-13]","[-0.22577002380585195, -3.9790393202595155e-13]","[0.059682197667764614, 1.5631940186695837e-13]","[-0.05937468155496461, -1.5631940186695741e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_141_LVCableDist_mvgd_0_lvgd_1017_142,"[0.0038234240301285097, 0.0]","[-0.003822387835010413, 0.0]","[0.000958082149627278, -0.0]","[-0.0009579805151681696, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_141_LVCableDist_mvgd_0_lvgd_1017_143,"[0.24233472351339766, 1.1084466677856604e-12]","[-0.24190386913600181, -1.1084466677856509e-12]","[0.0629146390393844, -6.1106675275492e-13]","[-0.06270335022817758, 6.110667527549247e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_143_LVCableDist_mvgd_0_lvgd_1017_144,"[0.0038229257073505007, 0.0]","[-0.003822387816596581, 0.0]","[0.0009580822267436277, -0.0]","[-0.0009579806109122123, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_143_LVCableDist_mvgd_0_lvgd_1017_145,"[0.23808094299538196, 1.0231815394944302e-12]","[-0.2376635710390764, -1.0231815394944215e-12]","[0.06174526903342493, -5.826450433244329e-13]","[-0.06154059193344536, 5.826450433244371e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_145_LVCableDist_mvgd_0_lvgd_1017_146,"[0.0038234317683470158, 0.0]","[-0.0038223878049028536, 0.0]","[0.0009580828744675153, -0.0]","[-0.0009579804780576857, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_145_LVCableDist_mvgd_0_lvgd_1017_147,"[0.23384013884298277, 1.080024958355252e-12]","[-0.23343606107076978, -1.080024958355243e-12]","[0.060582509975452926, -5.826450433244884e-13]","[-0.060384352276227446, 5.826450433244929e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_147_LVCableDist_mvgd_0_lvgd_1017_148,"[0.003822929649815688, 0.0]","[-0.0038223877847108523, 0.0]","[0.0009580829571818302, -0.0]","[-0.0009579805905344362, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_147_LVCableDist_mvgd_0_lvgd_1017_149,"[0.2296131309899189, 9.663381206336086e-13]","[-0.22922215437521995, -9.663381206336007e-13]","[0.05942627036348902, -5.542233338939743e-13]","[-0.059234537405758105, 5.542233338939782e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_149_LVCableDist_mvgd_0_lvgd_1017_150,"[0.0038234393395145294, 0.0]","[-0.0038223877724283973, 0.0]","[0.0009580835801865548, -0.0]","[-0.0009579804379789258, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_149_LVCableDist_mvgd_0_lvgd_1017_151,"[0.2253987146142836, 1.0231815394944566e-12]","[-0.22502064790335, -1.0231815394944485e-12]","[0.05827645472845298, -5.258016244636152e-13]","[-0.058091052722343973, 5.258016244636193e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_151_LVCableDist_mvgd_0_lvgd_1017_152,"[0.0038229335027009847, 0.0]","[-0.0038223877504364526, 0.0]","[0.0009580836696144172, -0.0]","[-0.0009579805686228064, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_151_LVCableDist_mvgd_0_lvgd_1017_153,"[0.2211977139784809, 9.66338120633619e-13]","[-0.22083236122687183, -9.663381206336114e-13]","[0.05713297009529691, -5.258016244635668e-13]","[-0.0569538029506454, 5.258016244635704e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_153_LVCableDist_mvgd_0_lvgd_1017_154,"[0.0038234467358600763, 0.0]","[-0.0038223877376644937, 0.0]","[0.0009580842661228769, -0.0]","[-0.0009579803950401773, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_153_LVCableDist_mvgd_0_lvgd_1017_155,"[0.2170089140824978, 1.0516032489248556e-12]","[-0.2166560810737899, -1.0516032489248473e-12]","[0.055995719557755085, -5.258016244636497e-13]","[-0.055822692031807626, 5.258016244636539e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_155_LVCableDist_mvgd_0_lvgd_1017_156,"[0.003822937262088704, 0.0]","[-0.0038223877139008833, 0.0]","[0.000958084363341538, -0.0]","[-0.0009579805452416699, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_155_LVCableDist_mvgd_0_lvgd_1017_157,"[0.21283314340493634, 9.66338120633617e-13]","[-0.21249263133624915, -9.663381206336094e-13]","[0.05486460869419611, -5.115907697483668e-13]","[-0.054697623295024, 5.115907697483704e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_157_LVCableDist_mvgd_0_lvgd_1017_158,"[0.003823453949692256, 0.0]","[-0.0038223877007188913, 0.0]","[0.0009580849316495575, -0.0]","[-0.0009579803493794905, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_157_LVCableDist_mvgd_0_lvgd_1017_159,"[0.20866917699759782, 1.0231815394944651e-12]","[-0.20834078874780182, -1.0231815394944572e-12]","[0.05373953919039457, -4.831690603180094e-13]","[-0.05357849925079114, 4.831690603180133e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_159_LVCableDist_mvgd_0_lvgd_1017_160,"[0.0038229409240570777, 0.0]","[-0.003822387675197748, 0.0]","[0.0009580850376820401, -0.0]","[-0.0009579805204684409, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_159_LVCableDist_mvgd_0_lvgd_1017_161,"[0.20451784743892454, 9.947598300640833e-13]","[-0.20420138140998745, -9.947598300640758e-13]","[0.052620415206527674, -4.405364961723649e-13]","[-0.05246522186383587, 4.405364961723685e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_15_LVCableDist_mvgd_0_lvgd_1017_16,"[0.0038234285825067137, 0.0]","[-0.0038223877803216346, 0.0]","[0.0009580825388623905, -0.0]","[-0.0009579804525224033, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_15_LVCableDist_mvgd_0_lvgd_1017_17,"[0.22194659425903918, 3.9790393202595155e-13]","[-0.22134051143575617, -3.979039320259497e-13]","[0.05841660111104861, 1.5631940186695741e-13]","[-0.058119381154741453, -1.5631940186695653e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_161_LVCableDist_mvgd_0_lvgd_1017_162,"[0.0038234609734208555, 0.0]","[-0.0038223876617344463, 0.0]","[0.0009580855761827416, -0.0]","[-0.0009579803011715035, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_161_LVCableDist_mvgd_0_lvgd_1017_163,"[0.20037792007384486, 1.0231815394944629e-12]","[-0.20007317630178462, -1.0231815394944554e-12]","[0.05150713705176805, -4.689582056028098e-13]","[-0.05135769224466068, 4.689582056028137e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_163_LVCableDist_mvgd_0_lvgd_1017_164,"[0.0038229444847929614, 0.0]","[-0.0038223876344906636, 0.0]","[0.000958085691990051, -0.0]","[-0.0009579804944085165, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_163_LVCableDist_mvgd_0_lvgd_1017_165,"[0.19625023146053516, 9.663381206336272e-13]","[-0.1959570056193005, -9.663381206336201e-13]","[0.050399607498262416, -4.689582056027592e-13]","[-0.050255811026275604, 4.689582056027625e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_165_LVCableDist_mvgd_0_lvgd_1017_166,"[0.0038234677995421947, 0.0]","[-0.003822387620857365, 0.0]","[0.0009580861991774877, -0.0]","[-0.0009579802506216072, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_165_LVCableDist_mvgd_0_lvgd_1017_167,"[0.19213353748940407, 9.663381206336476e-13]","[-0.19185162683788254, -9.663381206336405e-13]","[0.049297725511515365, -4.405364961723486e-13]","[-0.04915947795143127, 4.4053649617235203e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_167_LVCableDist_mvgd_0_lvgd_1017_168,"[0.0038229479405526394, 0.0]","[-0.0038223875919651696, 0.0]","[0.0009580863256358867, -0.0]","[-0.0009579804671745105, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_167_LVCableDist_mvgd_0_lvgd_1017_169,"[0.1880286785754243, 9.379164112032266e-13]","[-0.18775787613049225, -9.379164112032202e-13]","[0.048201392507918384, -4.405364961723244e-13]","[-0.04806859235625826, 4.405364961723276e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_169_LVCableDist_mvgd_0_lvgd_1017_170,"[0.0038234744206993797, 0.0]","[-0.0038223875782800888, 0.0]","[0.000958086800132011, -0.0]","[-0.0009579801979684887, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_169_LVCableDist_mvgd_0_lvgd_1017_171,"[0.18393440141800865, 8.810729923423789e-13]","[-0.18367450173098454, -8.810729923423731e-13]","[0.047110506144453584, -4.547473508874789e-13]","[-0.04698305265022136, 4.547473508874819e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_171_LVCableDist_mvgd_0_lvgd_1017_172,"[0.0038229512876386197, 0.0]","[-0.0038223875477965135, 0.0]","[0.0009580869380184316, -0.0]","[-0.0009579804388969277, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_171_LVCableDist_mvgd_0_lvgd_1017_173,"[0.1798515501618446, 8.242295734815738e-13]","[-0.17960234366725475, -8.242295734815686e-13]","[0.04602496651560067, -4.263256414570125e-13]","[-0.04590275690894619, 4.263256414570152e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_173_LVCableDist_mvgd_0_lvgd_1017_174,"[0.0038234808296638625, 0.0]","[-0.0038223875342053345, 0.0]","[0.0009580873785818262, -0.0]","[-0.0009579801434765529, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_173_LVCableDist_mvgd_0_lvgd_1017_175,"[0.17577886258996028, 8.242295734815686e-13]","[-0.17554014120491876, -8.242295734815632e-13]","[0.044944670006678976, -4.263256414570152e-13]","[-0.044827602244805635, 4.2632564145701785e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_175_LVCableDist_mvgd_0_lvgd_1017_176,"[0.003822954522485073, 0.0]","[-0.00382238750222597, 0.0]","[0.0009580875285698964, -0.0]","[-0.0009579804097271979, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_175_LVCableDist_mvgd_0_lvgd_1017_177,"[0.17171718644664213, 7.958078640511641e-13]","[-0.17148873810177181, -7.958078640511592e-13]","[0.04386951542613693, -4.1211478674178293e-13]","[-0.04375748551129293, 4.121147867417854e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_177_LVCableDist_mvgd_0_lvgd_1017_178,"[0.0038234870193797677, 0.0]","[-0.003822387488872753, 0.0]","[0.0009580879341056483, -0.0]","[-0.0009579800874400912, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_177_LVCableDist_mvgd_0_lvgd_1017_179,"[0.1676652508841264, 8.242295734815866e-13]","[-0.16744686493945646, -8.242295734815813e-13]","[0.0427993979263174, -3.9790393202660713e-13]","[-0.04269230256172466, 3.9790393202660965e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_179_LVCableDist_mvgd_0_lvgd_1017_180,"[0.0038229576415989685, 0.0]","[-0.0038223874554928644, 0.0]","[0.0009580880967415537, -0.0]","[-0.0009579803798216936, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_179_LVCableDist_mvgd_0_lvgd_1017_181,"[0.16362390711267985, 8.526512829119944e-13]","[-0.16341536907704005, -8.526512829119891e-13]","[0.04173421506736942, -3.979039320266382e-13]","[-0.04163194906764098, 3.979039320266408e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_17_LVCableDist_mvgd_0_lvgd_1017_18,"[0.0038229291137631153, 0.0]","[-0.003822387741399279, 0.0]","[0.0009580828386847797, -0.0]","[-0.0009579805651237347, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_17_LVCableDist_mvgd_0_lvgd_1017_19,"[0.2175175813106044, 3.979039320259615e-13]","[-0.2169321933699002, -3.9790393202595963e-13]","[0.057161300661733076, 1.705302565821644e-13]","[-0.05687422937135004, -1.7053025658216343e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_181_LVCableDist_mvgd_0_lvgd_1017_182,"[0.0038234929829529013, 0.0]","[-0.003822387442530259, 0.0]","[0.0009580884663238471, -0.0]","[-0.0009579800301800019, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_181_LVCableDist_mvgd_0_lvgd_1017_183,"[0.15959187594989402, 7.673861546207357e-13]","[-0.15939297270704608, -7.67386154620731e-13]","[0.04067386080913814, -4.121147867417614e-13]","[-0.04057631966314695, 4.1211478674176364e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_183_LVCableDist_mvgd_0_lvgd_1017_184,"[0.0038229606416257432, 0.0]","[-0.0038223874078910703, 0.0]","[0.0009580886420227264, -0.0]","[-0.0009579803493589842, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_183_LVCableDist_mvgd_0_lvgd_1017_185,"[0.15557001193525172, 7.958078640511727e-13]","[-0.15538052665793586, -7.95807864051168e-13]","[0.039618231503017715, -3.8369307731137953e-13]","[-0.039525308879770266, 3.836930773113819e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_185_LVCableDist_mvgd_0_lvgd_1017_186,"[0.003823498713693771, 0.0]","[-0.0038223873954593497, 0.0]","[0.0009580889748922074, -0.0]","[-0.0009579799720358149, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_185_LVCableDist_mvgd_0_lvgd_1017_187,"[0.15155702785817923, 7.105427357599152e-13]","[-0.15137674503833692, -7.105427357599111e-13]","[0.038567219958503846, -3.979039320265016e-13]","[-0.03847881017393643, 3.979039320265036e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_187_LVCableDist_mvgd_0_lvgd_1017_188,"[0.0038229635192589895, 0.0]","[-0.0038223873596696166, 0.0]","[0.0009580891639219564, -0.0]","[-0.0009579803185192878, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_187_LVCableDist_mvgd_0_lvgd_1017_189,"[0.1475537814476537, 6.821210263295128e-13]","[-0.1473824820111516, -6.821210263295089e-13]","[0.03752072135948586, -3.836930773112682e-13]","[-0.0374367169807496, 3.8369307731127007e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_189_LVCableDist_mvgd_0_lvgd_1017_190,"[0.003823504205094139, 0.0]","[-0.003822387347934095, 0.0]","[0.000958089459506209, -0.0]","[-0.0009579799133682472, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_189_LVCableDist_mvgd_0_lvgd_1017_191,"[0.14355897778151142, 7.673861546207322e-13]","[-0.1433964439164686, -7.673861546207279e-13]","[0.036478627409380175, -3.979039320265638e-13]","[-0.03639892162262848, 3.979039320265661e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_191_LVCableDist_mvgd_0_lvgd_1017_192,"[0.003822966271367415, 0.0]","[-0.0038223873111505593, 0.0]","[0.0009580896619819881, -0.0]","[-0.0009579802874977389, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_191_LVCableDist_mvgd_0_lvgd_1017_193,"[0.13957347763543593, 6.536993168990778e-13]","[-0.13941948811348265, -6.536993168990741e-13]","[0.035440832167309366, -3.979039320264489e-13]","[-0.03536531648326672, 3.979039320264506e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_193_LVCableDist_mvgd_0_lvgd_1017_194,"[0.0038235094508904536, 0.0]","[-0.003822387300267127, 0.0]","[0.0009580899198966796, -0.0]","[-0.0009579798545531472, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_193_LVCableDist_mvgd_0_lvgd_1017_195,"[0.13559597870225507, 6.536993168990888e-13]","[-0.1354503134991486, -6.536993168990852e-13]","[0.03440722627618417, -3.8369307731124443e-13]","[-0.03433579279607288, 3.836930773112462e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_195_LVCableDist_mvgd_0_lvgd_1017_196,"[0.0038229688949306855, 0.0]","[-0.003822387262655907, 0.0]","[0.0009580901357766106, -0.0]","[-0.0009579802564995474, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_195_LVCableDist_mvgd_0_lvgd_1017_197,"[0.1316273446587725, 5.968558980382458e-13]","[-0.1314897804878629, -5.968558980382424e-13]","[0.03337770271534314, -3.9790393202639327e-13]","[-0.033310241940517495, 3.9790393202639473e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_197_LVCableDist_mvgd_0_lvgd_1017_198,"[0.0038235144450453054, 0.0]","[-0.0038223872527739307, 0.0]","[0.0009580903558301277, -0.0]","[-0.0009579797959801428, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_197_LVCableDist_mvgd_0_lvgd_1017_199,"[0.12766626614866364, 6.252776074686547e-13]","[-0.12753658086817055, -6.252776074686515e-13]","[0.0323521511143245, -3.979039320264244e-13]","[-0.03228855410757704, 3.9790393202642613e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_199_LVCableDist_mvgd_0_lvgd_1017_200,"[0.0038229713870360743, 0.0]","[-0.003822387214495465, 0.0]","[0.0009580905849027193, -0.0]","[-0.0009579802257303938, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_199_LVCableDist_mvgd_0_lvgd_1017_201,"[0.12371360960154161, 5.684341886078569e-13]","[-0.12359157796569938, -5.684341886078541e-13]","[0.031330463419002405, -3.6948222259595437e-13]","[-0.031270619720946996, 3.6948222259595574e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_19_LVCableDist_mvgd_0_lvgd_1017_20,"[0.003823440521041774, 0.0]","[-0.0038223877097141607, 0.0]","[0.0009580836315480758, -0.0]","[-0.0009579803672999085, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_19_LVCableDist_mvgd_0_lvgd_1017_21,"[0.2131087518081178, 3.8369307731073415e-13]","[-0.21254375932978048, -3.8369307731073233e-13]","[0.055916148017136263, 1.4921397450936353e-13]","[-0.05563907855851727, -1.4921397450936275e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_1_LVCableDist_mvgd_0_lvgd_1017_2,"[0.12104483627353621, 0.0]","[-0.11999999289013585, 0.0]","[0.030342559979818117, -0.0]","[-0.03007483333305798, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_1_LVStation_mvgd_0_lvgd_1017,"[0.12285879592236743, 6.21724893790512e-15]","[-0.12104483179688177, -6.217248937905115e-15]","[0.03150054949615862, 1.7763568393958997e-15]","[-0.03034256626567279, -1.7763568393958975e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1017_201_LVCableDist_mvgd_0_lvgd_1017_202,"[0.00382351918176137, 0.0]","[-0.0038223872057699206, 0.0]","[0.0009580907671044234, -0.0]","[-0.0009579797380466666, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_201_LVCableDist_mvgd_0_lvgd_1017_203,"[0.11976805895729793, 5.68434188607884e-13]","[-0.11965345680486694, -5.684341886078812e-13]","[0.030312528294438996, -3.410605131655436e-13]","[-0.03025632797753552, 3.410605131655449e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_203_LVCableDist_mvgd_0_lvgd_1017_204,"[0.003822973744925714, 0.0]","[-0.003822387167005468, 0.0]","[0.0009580910089881417, -0.0]","[-0.0009579801954026293, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_203_LVCableDist_mvgd_0_lvgd_1017_205,"[0.11583048324709003, 4.831690603166751e-13]","[-0.11572308347544036, -4.83169060316673e-13]","[0.029298236700879138, -3.126388037350428e-13]","[-0.029245568395144618, 3.1263880373504387e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_205_LVCableDist_mvgd_0_lvgd_1017_206,"[0.0038235236555186456, 0.0]","[-0.003822387159591212, 0.0]","[0.0009580911535475242, -0.0]","[-0.0009579796811550704, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_205_LVCableDist_mvgd_0_lvgd_1017_207,"[0.11189956006127899, 5.115907697471151e-13]","[-0.1117991365909258, -5.115907697471131e-13]","[0.028287476389442363, -2.842170943046619e-13]","[-0.028238229226638913, 2.8421709430466293e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_207_LVCableDist_mvgd_0_lvgd_1017_208,"[0.0038229759659807183, 0.0]","[-0.0038223871205243115, 0.0]","[0.0009580914076823565, -0.0]","[-0.0009579801657244088, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_207_LVCableDist_mvgd_0_lvgd_1017_209,"[0.10797616087902137, 4.263256414559528e-13]","[-0.10788248485567718, -4.263256414559513e-13]","[0.027280137384092948, -2.131628207285425e-13]","[-0.027234199135233544, 2.1316282072854323e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_209_LVCableDist_mvgd_0_lvgd_1017_210,"[0.0038235278610571485, 0.0]","[-0.003822387114561319, 0.0]","[0.0009580915150161714, -0.0]","[-0.000957979625709748, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_209_LVCableDist_mvgd_0_lvgd_1017_211,"[0.10405895730372466, 4.263256414559513e-13]","[-0.10397180083388036, -4.263256414559499e-13]","[0.026276106573691248, -2.1316282072854323e-13]","[-0.026233365480949688, 2.131628207285439e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_211_LVCableDist_mvgd_0_lvgd_1017_212,"[0.003822978047714164, 0.0]","[-0.003822387075377405, 0.0]","[0.0009580917806729494, -0.0]","[-0.0009579801369146103, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_211_LVCableDist_mvgd_0_lvgd_1017_213,"[0.10014882310645748, 4.2632564145599544e-13]","[-0.10006795569219022, -4.2632564145599407e-13]","[0.025275273097075498, -1.7053025658292614e-13]","[-0.025235616125434217, 1.705302565829268e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_213_LVCableDist_mvgd_0_lvgd_1017_214,"[0.0038235317934036824, 0.0]","[-0.003822387071002469, 0.0]","[0.0009580918513919368, -0.0]","[-0.0009579795721116693, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_213_LVCableDist_mvgd_0_lvgd_1017_215,"[0.09624442427463586, 4.2632564145599407e-13]","[-0.09616961631550171, -4.263256414559928e-13]","[0.024277523034003105, -1.705302565829268e-13]","[-0.024240837588563744, 1.7053025658292745e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_215_LVCableDist_mvgd_0_lvgd_1017_216,"[0.003822979987803462, 0.0]","[-0.0038223870319017087, 0.0]","[0.000958092127666108, -0.0]","[-0.0009579801091818519, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_215_LVCableDist_mvgd_0_lvgd_1017_217,"[0.0923466367130244, 3.6948222259518465e-13]","[-0.09227765617815288, -3.6948222259518364e-13]","[0.02328274469022222, -1.5631940186766062e-13]","[-0.023248916984217452, 1.5631940186766113e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_217_LVCableDist_mvgd_0_lvgd_1017_218,"[0.0038235354478982795, 0.0]","[-0.0038223870292471963, 0.0]","[0.0009580921625780101, -0.0]","[-0.0009579795207537104, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_217_LVCableDist_mvgd_0_lvgd_1017_219,"[0.08845412117110495, 3.694822225951531e-13]","[-0.08839073686292867, -3.6948222259515203e-13]","[0.022290823391125585, -1.8474111129807278e-13]","[-0.02225974004643571, 1.847411112980733e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_219_LVCableDist_mvgd_0_lvgd_1017_220,"[0.0038229817840747964, 0.0]","[-0.003822386990422686, 0.0]","[0.0009580924483933006, -0.0]","[-0.0009579800827297536, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_219_LVCableDist_mvgd_0_lvgd_1017_221,"[0.08456775552697238, 3.6948222259521327e-13]","[-0.08450973399486907, -3.694822225952123e-13]","[0.021301646663028535, -1.2789769243725008e-13]","[-0.021273193196647142, 1.2789769243725053e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_21_LVCableDist_mvgd_0_lvgd_1017_22,"[0.0038229351892302955, 0.0]","[-0.003822387664018591, 0.0]","[0.0009580839523531011, -0.0]","[-0.0009579805164245172, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_21_LVCableDist_mvgd_0_lvgd_1017_23,"[0.20872082306131934, 3.979039320259519e-13]","[-0.20817591776245414, -3.9790393202595e-13]","[0.05468099715555273, 1.6342482922455867e-13]","[-0.05441377834832275, -1.6342482922455776e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_221_LVCableDist_mvgd_0_lvgd_1017_222,"[0.0038235388201766788, 0.0]","[-0.00382238698960669, 0.0]","[0.0009580924484988173, -0.0]","[-0.0009579794720188854, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_221_LVCableDist_mvgd_0_lvgd_1017_223,"[0.08068619567817502, 3.694822225951816e-13]","[-0.08063330423982999, -3.694822225951806e-13]","[0.020315099132574586, -1.5631940186766206e-13]","[-0.020289161438269407, 1.5631940186766257e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_223_LVCableDist_mvgd_0_lvgd_1017_224,"[0.0038229834345053664, 0.0]","[-0.003822386951249424, 0.0]","[0.000958092742615964, -0.0]","[-0.000957980057760282, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_223_LVCableDist_mvgd_0_lvgd_1017_225,"[0.07681032131360128, 3.9790393202566893e-13]","[-0.07676232521417758, -3.9790393202566797e-13]","[0.01933106760153504, -8.526512829166451e-14]","[-0.01930753055671935, 8.5265128291665e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_225_LVCableDist_mvgd_0_lvgd_1017_226,"[0.0038235419061926792, 0.0]","[-0.003822386952379753, 0.0]","[0.0009580927090967024, -0.0]","[-0.0009579794262757149, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_225_LVCableDist_mvgd_0_lvgd_1017_227,"[0.07293878387083301, 3.410605131648143e-13]","[-0.07289544905804649, -3.410605131648135e-13]","[0.01834943605462927, -1.1368683772201493e-13]","[-0.018328184881244717, 1.136868377220153e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_227_LVCableDist_mvgd_0_lvgd_1017_228,"[0.0038229849372532895, 0.0]","[-0.0038223869146978293, 0.0]","[0.0009580930101149869, -0.0]","[-0.0009579800344619654, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_227_LVCableDist_mvgd_0_lvgd_1017_229,"[0.06907246468586639, 2.8421709430400615e-13]","[-0.06903355521836975, -2.8421709430400554e-13]","[0.0173700906251808, -9.947598300674799e-14]","[-0.017351009618781964, 9.947598300674828e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_229_LVCableDist_mvgd_0_lvgd_1017_230,"[0.0038235447022361363, 0.0]","[-0.0038223869178582387, 0.0]","[0.0009580929443288224, -0.0]","[-0.000957979383873888, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_229_LVCableDist_mvgd_0_lvgd_1017_231,"[0.0652100111347208, 2.8421709430399014e-13]","[-0.0651752917072666, -2.842170943039896e-13]","[0.016392914713989, -1.1368683772195394e-13]","[-0.01637588848207066, 1.1368683772195424e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_231_LVCableDist_mvgd_0_lvgd_1017_232,"[0.0038229862905921146, 0.0]","[-0.003822386881018893, 0.0]","[0.0009580932506919647, -0.0]","[-0.0009579800130099681, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_231_LVCableDist_mvgd_0_lvgd_1017_233,"[0.06135230603439138, 2.842170943039896e-13]","[-0.06132153963881276, -2.8421709430398893e-13]","[0.015417793842864673, -1.1368683772195424e-13]","[-0.015402706157818472, 1.1368683772195452e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_233_LVCableDist_mvgd_0_lvgd_1017_234,"[0.00382354720492747, 0.0]","[-0.0038223868863098915, 0.0]","[0.0009580931541621782, -0.0]","[-0.0009579793451381527, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_233_LVCableDist_mvgd_0_lvgd_1017_235,"[0.05749799310377908, 2.8421709430400443e-13]","[-0.057470943300920715, -2.842170943040039e-13]","[0.014444610887713984, -9.947598300674887e-14]","[-0.014431345800971988, 9.947598300674916e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_235_LVCableDist_mvgd_0_lvgd_1017_236,"[0.003822987493031463, 0.0]","[-0.0038223868505135113, 0.0]","[0.000958093464184715, -0.0]","[-0.000957979993580507, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_235_LVCableDist_mvgd_0_lvgd_1017_237,"[0.053647956473836925, 2.5579538487360815e-13]","[-0.05362438531020063, -2.557953848736077e-13]","[0.013473250816892159, -8.526512829151256e-14]","[-0.013461691637260338, 8.526512829151276e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_237_LVCableDist_mvgd_0_lvgd_1017_238,"[0.003823549411235282, 0.0]","[-0.0038223868579852455, 0.0]","[0.0009580933385788292, -0.0]","[-0.0009579793103724727, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_237_LVCableDist_mvgd_0_lvgd_1017_239,"[0.04980083661522547, 1.989519660127543e-13]","[-0.04978050663866606, -1.9895196601275396e-13]","[0.012503596041167258, -1.1368683772186193e-13]","[-0.01249362632331256, 1.1368683772186208e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_239_LVCableDist_mvgd_0_lvgd_1017_240,"[0.0038229885431902326, 0.0]","[-0.0038223868234004495, 0.0]","[0.0009580936504372238, -0.0]","[-0.0009579799763198077, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_239_LVCableDist_mvgd_0_lvgd_1017_241,"[0.04595751880450862, 2.2737367544322726e-13]","[-0.04594019123928887, -2.2737367544322694e-13]","[0.011535531034567517, -5.684341886107079e-14]","[-0.01152703368407402, 5.684341886107095e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_23_LVCableDist_mvgd_0_lvgd_1017_24,"[0.0038234522267911555, 0.0]","[-0.003822387628324332, 0.0]","[0.0009580846891860151, -0.0]","[-0.0009579802688047053, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_23_LVCableDist_mvgd_0_lvgd_1017_25,"[0.20435246444009783, 3.8369307731074233e-13]","[-0.20382733933105737, -3.836930773107406e-13]","[0.05345569607278687, 1.6342482922456955e-13]","[-0.05319817737077291, -1.6342482922456866e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_241_LVCableDist_mvgd_0_lvgd_1017_242,"[0.0038235513184754115, 0.0]","[-0.0038223868331069707, 0.0]","[0.0009580934975652181, -0.0]","[-0.000957979279848406, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_241_LVCableDist_mvgd_0_lvgd_1017_243,"[0.042116640678043576, 2.273736754431803e-13]","[-0.04210207718161604, -2.2737367544317993e-13]","[0.01056893780324291, -9.947598300668767e-14]","[-0.010561795938128792, 9.947598300668786e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_243_LVCableDist_mvgd_0_lvgd_1017_244,"[0.00382298943989034, 0.0]","[-0.0038223867999053057, 0.0]","[0.0009580938093196362, -0.0]","[-0.0009579799613631927, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_243_LVCableDist_mvgd_0_lvgd_1017_245,"[0.038279088488374226, 1.989519660128155e-13]","[-0.03826704958725886, -1.9895196601281523e-13]","[0.00960370038668103, -5.684341886104007e-14]","[-0.009597796570360827, 5.684341886104019e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_245_LVCableDist_mvgd_0_lvgd_1017_246,"[0.003823552924326047, 0.0]","[-0.003822386811876322, 0.0]","[0.0009580936311141886, -0.0]","[-0.0009579792538062695, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_245_LVCableDist_mvgd_0_lvgd_1017_247,"[0.034443497455264135, 1.13686837721582e-13]","[-0.034433744040570195, -1.1368683772158189e-13]","[0.008639700447572654, -5.684341886094674e-14]","[-0.008634917422253644, 5.684341886094679e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_247_LVCableDist_mvgd_0_lvgd_1017_248,"[0.003822990182127044, 0.0]","[-0.0038223867802266564, 0.0]","[0.0009580939407239316, -0.0]","[-0.0009579799488299665, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_247_LVCableDist_mvgd_0_lvgd_1017_249,"[0.030610754636706636, 8.526512829117084e-14]","[-0.03060304666290707, -8.526512829117077e-14]","[0.007676821651452561, -5.684341886091563e-14]","[-0.007673041700020326, 5.684341886091565e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_249_LVCableDist_mvgd_0_lvgd_1017_250,"[0.003823554226825412, 0.0]","[-0.0038223867944632787, 0.0]","[0.000958093739223803, -0.0]","[-0.000957979232453216, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_249_LVCableDist_mvgd_0_lvgd_1017_251,"[0.02677949325737812, 8.526512829120196e-14]","[-0.026773590974565373, -8.526512829120191e-14]","[0.0067149453795556455, -2.842170943050461e-14]","[-0.006712050929866055, 2.8421709430504635e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_251_LVCableDist_mvgd_0_lvgd_1017_252,"[0.0038229907690291, 0.0]","[-0.0038223867644926086, 0.0]","[0.0009580940445616951, -0.0]","[-0.0009579799388205064, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_251_LVCableDist_mvgd_0_lvgd_1017_253,"[0.022950601009038406, 5.684341886074407e-14]","[-0.022946263926325042, -5.684341886074402e-14]","[0.005753954984380461, -7.105427357608999e-14]","[-0.00575182810091661, 7.105427357609e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_253_LVCableDist_mvgd_0_lvgd_1017_254,"[0.0038235552243819984, 0.0]","[-0.0038223867810103624, 0.0]","[0.0009580938218934857, -0.0]","[-0.0009579792159587531, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_253_LVCableDist_mvgd_0_lvgd_1017_255,"[0.019122709545628638, 1.136868377215817e-13]","[-0.019119697398476763, -1.1368683772158161e-13]","[0.004793731628113299, -5.684341886094693e-14]","[-0.0047922544863589385, 5.684341886094698e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_255_LVCableDist_mvgd_0_lvgd_1017_256,"[0.003822991199964128, 0.0]","[-0.003822386752863133, 0.0]","[0.0009580941207672298, -0.0]","[-0.0009579799314188039, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_255_LVCableDist_mvgd_0_lvgd_1017_257,"[0.015296707020840631, 5.6843418860759566e-14]","[-0.015294779000467437, -5.684341886075952e-14]","[0.003834158412030489, -5.68434188608845e-14]","[-0.0038332129205744274, 5.684341886088453e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_257_LVCableDist_mvgd_0_lvgd_1017_258,"[0.003823555915773941, 0.0]","[-0.003822386771626779, 0.0]","[0.0009580938791254221, -0.0]","[-0.0009579792044556218, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_257_LVCableDist_mvgd_0_lvgd_1017_259,"[0.011471223944054807, 2.8421709430332884e-14]","[-0.011470139398527045, -2.842170943033285e-14]","[0.002875116341693173, -7.105427357605879e-14]","[-0.0028745844860424436, 7.10542735760588e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_259_LVCableDist_mvgd_0_lvgd_1017_260,"[0.003822991474422315, 0.0]","[-0.0038223867454114033, 0.0]","[0.000958094169283639, -0.0]","[-0.0009579799266780967, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_259_LVCableDist_mvgd_0_lvgd_1017_261,"[0.0076471487585199945, -1.5632581904511225e-26]","[-0.007646666689188183, 1.5634606090903204e-26]","[0.001916488329332428, -1.4210854715205506e-14]","[-0.0019162519249661695, 1.4210854715205506e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_25_LVCableDist_mvgd_0_lvgd_1017_26,"[0.0038229411338200963, 0.0]","[-0.0038223875755523, 0.0]","[0.0009580850363311913, -0.0]","[-0.0009579804606655766, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_25_LVCableDist_mvgd_0_lvgd_1017_27,"[0.20000439707291615, 3.979039320259364e-13]","[-0.19949873645046598, -3.979039320259345e-13]","[0.052240095043642305, 1.4921397450934927e-13]","[-0.0519921216275722, -1.4921397450934838e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_261_LVCableDist_mvgd_0_lvgd_1017_262,"[0.0038235563001540874, 0.0]","[-0.003822386766389456, 0.0]","[0.0009580939109202251, -0.0]","[-0.0009579791980350732, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_261_LVCableDist_mvgd_0_lvgd_1017_263,"[0.0038231112570991524, 2.8421709430395377e-14]","[-0.0038229907525036627, -2.8421709430395377e-14]","[0.0009581552870104029, -1.4210854715236777e-14]","[-0.0009580961921652258, 1.421085471523678e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_263_LVCableDist_mvgd_0_lvgd_1017_264,"[0.003822991592104132, 0.0]","[-0.0038223867422097174, 0.0]","[0.0009580941900811264, -0.0]","[-0.0009579799246388324, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_27_LVCableDist_mvgd_0_lvgd_1017_28,"[0.0038234636803269806, 0.0]","[-0.0038223875360150943, 0.0]","[0.0009580857097640557, -0.0]","[-0.0009579801569167675, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_27_LVCableDist_mvgd_0_lvgd_1017_29,"[0.19567527164403156, 3.979039320259404e-13]","[-0.19518876105223731, -3.9790393202593853e-13]","[0.05103403841366646, 1.5631940186695216e-13]","[-0.05079545607593779, -1.563194018669512e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_29_LVCableDist_mvgd_0_lvgd_1017_30,"[0.0038229469375066563, 0.0]","[-0.003822387475978924, 0.0]","[0.0009580860887235868, -0.0]","[-0.0009579803978414301, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_29_LVCableDist_mvgd_0_lvgd_1017_31,"[0.19136581297048474, 4.1211478674112826e-13]","[-0.19089812940507325, -4.121147867411263e-13]","[0.04983737280490831, 1.3500311979412823e-13]","[-0.0496080231458564, -1.350031197941273e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_31_LVCableDist_mvgd_0_lvgd_1017_32,"[0.0038234748622976013, 0.0]","[-0.0038223874328370553, 0.0]","[0.0009580866914896826, -0.0]","[-0.0009579800317466375, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_31_LVCableDist_mvgd_0_lvgd_1017_33,"[0.1870746534123586, 3.694822225955042e-13]","[-0.18662547506980198, -3.694822225955026e-13]","[0.04864993897161117, 1.3500311979416276e-13]","[-0.04842966418041077, -1.3500311979416198e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_33_LVCableDist_mvgd_0_lvgd_1017_34,"[0.00382295259037233, 0.0]","[-0.0038223873654267024, 0.0]","[0.0009580871077430641, -0.0]","[-0.0009579803280626768, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_33_LVCableDist_mvgd_0_lvgd_1017_35,"[0.18280252134198333, 3.694822225954908e-13]","[-0.1823715180519555, -3.6948222259548923e-13]","[0.04747157994127238, 1.2079226507895465e-13]","[-0.04726021810406273, -1.207922650789539e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_35_LVCableDist_mvgd_0_lvgd_1017_36,"[0.0038234857534976707, 0.0]","[-0.0038223873190360415, 0.0]","[0.0009580876328030289, -0.0]","[-0.0009579798936423016, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_35_LVCableDist_mvgd_0_lvgd_1017_37,"[0.1785480311913685, 3.8369307731072017e-13]","[-0.17813487393718178, -3.8369307731071845e-13]","[0.046302132943634264, 1.4921397450935656e-13]","[-0.04609952271229295, -1.4921397450935568e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_37_LVCableDist_mvgd_0_lvgd_1017_38,"[0.0038229580827325673, 0.0]","[-0.003822387244265325, 0.0]","[0.0009580880917368052, -0.0]","[-0.0009579802515758986, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_37_LVCableDist_mvgd_0_lvgd_1017_39,"[0.17431191475146776, 3.8369307731070664e-13]","[-0.17391626634755256, -3.8369307731070487e-13]","[0.0451414374777248, 1.350031197941485e-13]","[-0.044947413498151, -1.3500311979414767e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_39_LVCableDist_mvgd_0_lvgd_1017_40,"[0.0038234963349294895, 0.0]","[-0.003822387195048853, 0.0]","[0.000958088532378971, -0.0]","[-0.0009579797431848562, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_39_LVCableDist_mvgd_0_lvgd_1017_41,"[0.17009276895686262, 3.6948222259549186e-13]","[-0.1697142933236845, -3.6948222259549024e-13]","[0.04398932732310264, 1.2789769243655595e-13]","[-0.04380372478358965, -1.278976924365552e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_3_LVCableDist_mvgd_0_lvgd_1017_4,"[0.0038229073017287695, 0.0]","[-0.0038223879287160507, 0.0]","[0.0009580787997488342, -0.0]","[-0.0009579806822033705, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_3_LVStation_mvgd_0_lvgd_1017,"[0.003824079960621846, -3.552713678801351e-15]","[-0.0038229072439238277, 3.552713678801352e-15]","[0.0009586540319217134, 8.881784197034603e-16]","[-0.0009580789375742815, -8.8817841970346e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1017_41_LVCableDist_mvgd_0_lvgd_1017_42,"[0.0038229634050968033, 0.0]","[-0.0038223871130322164, 0.0]","[0.0009580890391700239, -0.0]","[-0.0009579801687407512, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_41_LVCableDist_mvgd_0_lvgd_1017_43,"[0.16589132887803848, 3.6948222259549615e-13]","[-0.16552968198149404, -3.6948222259549464e-13]","[0.042845638524338564, 1.3500311979415872e-13]","[-0.04266828871229912, -1.3500311979415794e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_43_LVCableDist_mvgd_0_lvgd_1017_44,"[0.003823506587876072, 0.0]","[-0.003822387061507954, 0.0]","[0.0009580893891384385, -0.0]","[-0.0009579795811931066, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_43_LVCableDist_mvgd_0_lvgd_1017_45,"[0.16170617441721252, 3.2684965844986767e-13]","[-0.16136101328118768, -3.268496584498664e-13]","[0.04171020149312778, 1.2789769243659003e-13]","[-0.041540936214807346, -1.2789769243658943e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_45_LVCableDist_mvgd_0_lvgd_1017_46,"[0.003822968548243098, 0.0]","[-0.0038223869724711597, 0.0]","[0.0009580899486526543, -0.0]","[-0.000957980080049846, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_45_LVCableDist_mvgd_0_lvgd_1017_47,"[0.15753804378215203, 3.268496584498664e-13]","[-0.15720901770663526, -3.2684965844986515e-13]","[0.04058284890114186, 1.2789769243658943e-13]","[-0.040421496175025495, -1.278976924365888e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_47_LVCableDist_mvgd_0_lvgd_1017_48,"[0.0038235164939683704, 0.0]","[-0.003822386919237884, 0.0]","[0.000958090202242734, -0.0]","[-0.0009579794087109461, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_47_LVCableDist_mvgd_0_lvgd_1017_49,"[0.1533855003427104, 2.9842794901945736e-13]","[-0.15307225963724136, -2.9842794901945624e-13]","[0.03946340788250857, 1.35003119794216e-13]","[-0.03930979622216017, -1.3500311979421547e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_49_LVCableDist_mvgd_0_lvgd_1017_50,"[0.0038229735032256885, 0.0]","[-0.0038223868235027153, 0.0]","[0.0009580908189248431, -0.0]","[-0.0009579799861072302, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_49_LVCableDist_mvgd_0_lvgd_1017_51,"[0.14924928529927006, 3.268496584498699e-13]","[-0.1489514727964151, -3.2684965844986863e-13]","[0.03835170782543376, 1.3500311979419172e-13]","[-0.038205662077747296, -1.3500311979419106e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_51_LVCableDist_mvgd_0_lvgd_1017_52,"[0.003823526035243872, 0.0]","[-0.003822386769240979, 0.0]","[0.0009580909710919299, -0.0]","[-0.0009579792269986003, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_51_LVCableDist_mvgd_0_lvgd_1017_53,"[0.14512794602327256, 3.552713678802881e-13]","[-0.14484520551636967, -3.552713678802866e-13]","[0.03724757268444111, 1.421085471517707e-13]","[-0.0371089181674681, -1.4210854715177e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_53_LVCableDist_mvgd_0_lvgd_1017_54,"[0.0038229782614575877, 0.0]","[-0.0038223866672686822, 0.0]","[0.0009580916488668924, -0.0]","[-0.0009579798876311243, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_53_LVCableDist_mvgd_0_lvgd_1017_55,"[0.141022226560734, 3.4106051316507397e-13]","[-0.1407541946291516, -3.410605131650726e-13]","[0.03615082866168145, 1.3500311979417851e-13]","[-0.03601938715577912, -1.350031197941778e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_55_LVCableDist_mvgd_0_lvgd_1017_56,"[0.0038235351942126823, 0.0]","[-0.0038223866126889223, 0.0]","[0.0009580916953221628, -0.0]","[-0.000957979037522613, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_55_LVCableDist_mvgd_0_lvgd_1017_57,"[0.13693065885266767, 3.2684965844987186e-13]","[-0.136676972987472, -3.2684965844987055e-13]","[0.035061296637656794, 1.4210854715179302e-13]","[-0.03493689037027444, -1.421085471517924e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_57_LVCableDist_mvgd_0_lvgd_1017_58,"[0.003822982814654165, 0.0]","[-0.0038223865050368553, 0.0]","[0.0009580924374941821, -0.0]","[-0.000957979785441507, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_57_LVCableDist_mvgd_0_lvgd_1017_59,"[0.13285398964135559, 3.5527136788028375e-13]","[-0.13261428039848555, -3.5527136788028223e-13]","[0.033978799733410295, 1.4210854715176859e-13]","[-0.03386124753104573, -1.421085471517679e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_59_LVCableDist_mvgd_0_lvgd_1017_60,"[0.003823543953940619, 0.0]","[-0.0038223864509301098, 0.0]","[0.0009580923747875487, -0.0]","[-0.0009579788419303342, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_59_LVCableDist_mvgd_0_lvgd_1017_61,"[0.1287907360389056, 3.410605131650757e-13]","[-0.12856463483667363, -3.410605131650743e-13]","[0.03290315586890492, 1.421085471517798e-13]","[-0.03279227698095957, -1.421085471517791e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_5_LVCableDist_mvgd_0_lvgd_1017_6,"[0.0038229102039050267, 0.0]","[-0.0038223879100623198, 0.0]","[0.0009580793400226384, -0.0]","[-0.0009579806706874934, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_5_LVCableDist_mvgd_0_lvgd_1017_7,"[0.24441385002377816, 3.9790393202598447e-13]","[-0.2436998889789474, -3.979039320259826e-13]","[0.0648503913174219, 1.8474111129737838e-13]","[-0.06450026842596596, -1.8474111129737742e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_5_LVStation_mvgd_0_lvgd_1017,"[0.2489731482647575, 3.836930773107781e-13]","[-0.24823676093282243, -3.836930773107762e-13]","[0.06616958972723949, 1.8474111129739106e-13]","[-0.06580846909782233, -1.8474111129739015e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_61_LVCableDist_mvgd_0_lvgd_1017_62,"[0.0038229871549138655, 0.0]","[-0.0038223863382423817, 0.0]","[0.00095809318396703, -0.0]","[-0.0009579796804625429, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_61_LVCableDist_mvgd_0_lvgd_1017_63,"[0.12474164733248656, 3.2684965844985596e-13]","[-0.1245287789484469, -3.268496584498547e-13]","[0.031834185196640705, 1.2789769243658453e-13]","[-0.03172979561592179, -1.278976924365839e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_63_LVCableDist_mvgd_0_lvgd_1017_64,"[0.0038235522980727197, 0.0]","[-0.00382238628543674, 0.0]","[0.0009580930095495462, -0.0]","[-0.0009579786420317867, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_63_LVCableDist_mvgd_0_lvgd_1017_65,"[0.12070522643932191, 3.126388037346423e-13]","[-0.12050521646386975, -3.126388037346412e-13]","[0.030771702796793386, 1.207922650789926e-13]","[-0.03067361891472118, -1.2079226507899204e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_65_LVCableDist_mvgd_0_lvgd_1017_66,"[0.0038229912747180165, 0.0]","[-0.003822386168447996, 0.0]","[0.0009580938875561942, -0.0]","[-0.0009579795736806073, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_65_LVCableDist_mvgd_0_lvgd_1017_67,"[0.1166822250382816, 3.1263880373462927e-13]","[-0.11649469273056735, -3.1263880373462816e-13]","[0.029715525973462227, 1.0658141036378568e-13]","[-0.029623561076646494, -1.0658141036378515e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_67_LVCableDist_mvgd_0_lvgd_1017_68,"[0.0038235602109179174, 0.0]","[-0.003822386117812847, 0.0]","[0.0009580935998612462, -0.0]","[-0.0009579784397764396, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_67_LVCableDist_mvgd_0_lvgd_1017_69,"[0.11267113251776692, 2.8421709430420956e-13]","[-0.11249569790007882, -2.842170943042086e-13]","[0.028665467095234518, 9.947598300620582e-14]","[-0.028579434844523993, -9.947598300620534e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_69_LVCableDist_mvgd_0_lvgd_1017_70,"[0.0038229951670008372, 0.0]","[-0.0038223859973744753, 0.0]","[0.000958094547672083, -0.0]","[-0.0009579794661660247, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_69_LVCableDist_mvgd_0_lvgd_1017_71,"[0.10867270279340162, 2.842170943042086e-13]","[-0.10850897988098723, -2.842170943042077e-13]","[0.027621340745063352, 9.947598300620534e-14]","[-0.02754105185548438, -9.947598300620488e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_71_LVCableDist_mvgd_0_lvgd_1017_72,"[0.0038235676774957053, 0.0]","[-0.003822385949764685, 0.0]","[0.0009580941461461781, -0.0]","[-0.0009579782372245301, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_71_LVCableDist_mvgd_0_lvgd_1017_73,"[0.10468541242172162, 2.5579538487380126e-13]","[-0.1045330159431281, -2.5579538487380045e-13]","[0.02658295671523896, 1.0658141036383185e-13]","[-0.026508222251616333, -1.0658141036383147e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_73_LVCableDist_mvgd_0_lvgd_1017_74,"[0.003822998825042495, 0.0]","[-0.003822385826754509, 0.0]","[0.0009580951638292008, -0.0]","[-0.0009579793590301106, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_73_LVCableDist_mvgd_0_lvgd_1017_75,"[0.10071001739857167, 2.2737367544337024e-13]","[-0.100568556413676, -2.273736754433696e-13]","[0.02555012700203546, 8.526512829104608e-14]","[-0.025480755249306826, -8.526512829104578e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_75_LVCableDist_mvgd_0_lvgd_1017_76,"[0.0038235746835750535, 0.0]","[-0.003822385783064262, 0.0]","[0.0009580946489708864, -0.0]","[-0.0009579780365122506, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_75_LVCableDist_mvgd_0_lvgd_1017_77,"[0.09674498217541924, 2.273736754433696e-13]","[-0.09661406640745555, -2.2737367544336903e-13]","[0.024522658963482012, 8.526512829104578e-14]","[-0.024458458531891963, -8.526512829104549e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_77_LVCableDist_mvgd_0_lvgd_1017_78,"[0.003823002242627997, 0.0]","[-0.003822385658452938, 0.0]","[0.0009580957356545008, -0.0]","[-0.0009579792534262237, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_77_LVCableDist_mvgd_0_lvgd_1017_79,"[0.09279106467057954, 2.2737367544336903e-13]","[-0.09267029852605453, -2.273736754433684e-13]","[0.023500362150509893, 8.526512829104549e-14]","[-0.023441139043006723, -8.526512829104521e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_79_LVCableDist_mvgd_0_lvgd_1017_80,"[0.0038235812157342763, 0.0]","[-0.0038223856195352852, 0.0]","[0.0009580951090264922, -0.0]","[-0.0009579778398260549, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_79_LVCableDist_mvgd_0_lvgd_1017_81,"[0.08884671798575941, 1.7053025658254425e-13]","[-0.0887357064845182, -1.7053025658254388e-13]","[0.022483041635540088, 8.526512829109299e-14]","[-0.022428602155850203, -8.52651282910928e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_7_LVCableDist_mvgd_0_lvgd_1017_8,"[0.003823404084660183, 0.0]","[-0.0038223878905156708, 0.0]","[0.000958080257405512, -0.0]","[-0.0009579805847276324, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_7_LVCableDist_mvgd_0_lvgd_1017_9,"[0.23987648413344786, 3.6948222259554265e-13]","[-0.23918467313130365, -3.6948222259554093e-13]","[0.0635421897975484, 1.5631940186698455e-13]","[-0.06320292917518605, -1.5631940186698374e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1017_81_LVCableDist_mvgd_0_lvgd_1017_82,"[0.0038230054139369693, 0.0]","[-0.003822385494318878, 0.0]","[0.0009580962628646173, -0.0]","[-0.0009579791505198816, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_81_LVCableDist_mvgd_0_lvgd_1017_83,"[0.08491270180267238, 1.5631940186733188e-13]","[-0.084811045012685, -1.5631940186733157e-13]","[0.02147050467195514, 7.815970093350173e-14]","[-0.021420652695430357, -7.815970093350158e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_83_LVCableDist_mvgd_0_lvgd_1017_84,"[0.0038235872614126136, 0.0]","[-0.0038223854610328722, 0.0]","[0.0009580955270995194, -0.0]","[-0.0009579776493664385, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_83_LVCableDist_mvgd_0_lvgd_1017_85,"[0.08098745865587305, 1.5631940186733756e-13]","[-0.08089475720837686, -1.563194018673372e-13]","[0.020462554201553584, 8.526512829110456e-14]","[-0.020417093879769192, -8.526512829110441e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_85_LVCableDist_mvgd_0_lvgd_1017_86,"[0.0038230083336523606, 0.0]","[-0.0038223853362578906, 0.0]","[0.0009580967452639015, -0.0]","[-0.0009579790514798989, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_85_LVCableDist_mvgd_0_lvgd_1017_87,"[0.07707174983033838, 1.1368683772170143e-13]","[-0.07698759978172885, -1.1368683772170125e-13]","[0.019458995334084263, 6.394884621833129e-14]","[-0.019417728575136222, -6.39488462183312e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_87_LVCableDist_mvgd_0_lvgd_1017_88,"[0.0038235928089165173, 0.0]","[-0.0038223853093806107, 0.0]","[0.0009580959040436151, -0.0]","[-0.0009579774673128664, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_87_LVCableDist_mvgd_0_lvgd_1017_89,"[0.07316400810155874, 8.526512829129533e-14]","[-0.0730880060213956, -8.52651282912952e-14]","[0.018459629041601682, 7.105427357595805e-14]","[-0.018422358005239056, -7.105427357595798e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_89_LVCableDist_mvgd_0_lvgd_1017_90,"[0.0038230109968505747, 0.0]","[-0.0038223851860871775, 0.0]","[0.000958097182725855, -0.0]","[-0.0009579789574532176, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_89_LVCableDist_mvgd_0_lvgd_1017_91,"[0.06926499619690873, 9.947598300650709e-14]","[-0.0691967344683308, -9.947598300650692e-14]","[0.017464258450252748, 7.8159700933549e-14]","[-0.017430783243224956, -7.815970093354893e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_91_LVCableDist_mvgd_0_lvgd_1017_92,"[0.0038235978474871657, 0.0]","[-0.00382238516637201, 0.0]","[0.0009580962407527791, -0.0]","[-0.0009579772957905249, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_91_LVCableDist_mvgd_0_lvgd_1017_93,"[0.0653731379648373, 1.1368683772171284e-13]","[-0.06531220943402946, -1.1368683772171264e-13]","[0.016472682728586353, 7.8159700933537e-14]","[-0.016442803684718267, -7.815970093353689e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_93_LVCableDist_mvgd_0_lvgd_1017_94,"[0.0038230133991096035, 0.0]","[-0.0038223850456104865, 0.0]","[0.0009580975751842446, -0.0]","[-0.0009579788695497447, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_93_LVCableDist_mvgd_0_lvgd_1017_95,"[0.06148919741351057, 9.947598300648887e-14]","[-0.0614351911391922, -9.947598300648872e-14]","[0.015484703184509254, 5.684341886074001e-14]","[-0.01545821878027178, -5.6843418860739946e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_95_LVCableDist_mvgd_0_lvgd_1017_96,"[0.003823602367330286, 0.0]","[-0.0038223850337380425, 0.0]","[0.0009580965381304934, -0.0]","[-0.0009579771368333429, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_95_LVCableDist_mvgd_0_lvgd_1017_97,"[0.057611590318558614, 9.947598300650065e-14]","[-0.05756409577237486, -9.94759830065005e-14]","[0.014500117354632053, 7.105427357594581e-14]","[-0.014476826268992792, -7.105427357594574e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1017_97_LVCableDist_mvgd_0_lvgd_1017_98,"[0.0038230155364622873, 0.0]","[-0.003822384916540281, 0.0]","[0.0009580979226242336, -0.0]","[-0.0009579787888276128, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1017_97_LVCableDist_mvgd_0_lvgd_1017_99,"[0.0537410818066823, 8.526512829128274e-14]","[-0.05369968508139227, -8.526512829128263e-14]","[0.013518724899101837, 5.684341886075182e-14]","[-0.013498424154039786, -5.684341886075177e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1018_10_LVCableDist_mvgd_0_lvgd_1018_9,"[0.006552499205967398, 0.0]","[-0.006549965215436164, 0.0]","[0.0016420547273745005, 0.0]","[-0.0016415760176127984, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_11_LVCableDist_mvgd_0_lvgd_1018_12,"[0.006554638717256379, 0.0]","[-0.006549965213728257, 0.0]","[0.0016424589131558115, 0.0]","[-0.0016415760165022198, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_11_LVCableDist_mvgd_0_lvgd_1018_13,"[0.02631665390574104, -3.552713678809794e-15]","[-0.02626217479477547, 3.5527136788097945e-15]","[0.0066089669985696575, -1.776356839408021e-15]","[-0.006587697726363547, 1.776356839408021e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_11_LVCableDist_mvgd_0_lvgd_1018_9,"[0.03295628492830201, -6.248564001961662e-28]","[-0.03287129262045331, 6.24899266663855e-28]","[0.008284607894644157, 8.881784197027608e-16]","[-0.008251425919038826, -8.881784197027608e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_13_LVCableDist_mvgd_0_lvgd_1018_14,"[0.006552523704885871, 0.0]","[-0.00654996521256756, 0.0]","[0.001642059354196522, 0.0]","[-0.0016415760156706207, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_13_LVCableDist_mvgd_0_lvgd_1018_15,"[0.01970965109358901, -3.552713678810419e-15]","[-0.019678964891396845, 3.55271367881042e-15]","[0.004945638361143677, -8.881784197052603e-16]","[-0.00493365811447979, 8.881784197052605e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_15_LVCableDist_mvgd_0_lvgd_1018_16,"[0.00655467394726236, 0.0]","[-0.006549965211235207, 0.0]","[0.0016424655674457374, 0.0]","[-0.001641576014831515, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_15_LVCableDist_mvgd_0_lvgd_1018_17,"[0.013124290948883283, -1.7763568394048976e-15]","[-0.013110641867335161, 1.776356839404898e-15]","[0.003291192532643581, -8.88178419704011e-16]","[-0.0032858637740484945, 8.881784197040112e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_17_LVCableDist_mvgd_0_lvgd_1018_18,"[0.006552537485978268, 0.0]","[-0.0065499652106997056, 0.0]","[0.0016420619567488234, 0.0]","[-0.0016415760144098705, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_17_LVCableDist_mvgd_0_lvgd_1018_19,"[0.006558104386783406, 6.248629117751376e-28]","[-0.00655468917569304, -6.24811725432282e-28]","[0.001643801800635351, -8.881784197027614e-16]","[-0.0016424684629021374, 8.881784197027614e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_19_LVCableDist_mvgd_0_lvgd_1018_20,"[0.006554689181546498, 0.0]","[-0.006549965210043015, 0.0]","[0.0016424684448627593, 0.0]","[-0.0016415760140328706, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_1_LVCableDist_mvgd_0_lvgd_1018_2,"[0.006552420291921768, 0.0]","[-0.006549965221519466, 0.0]","[0.0016420398222643407, 0.0]","[-0.0016415760217280868, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_1_LVCableDist_mvgd_0_lvgd_1018_3,"[0.0599470770088976, -1.776356839406146e-15]","[-0.059674425408487164, 1.7763568394061464e-15]","[0.015156839634055284, 8.88178419701511e-16]","[-0.01505039330988113, -8.88178419701511e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_1_LVStation_mvgd_0_lvgd_1018,"[0.06683497471332776, -5.329070518217187e-15]","[-0.06649949730338048, 5.329070518217188e-15]","[0.016929853692549148, 8.881784196990129e-16]","[-0.016798879448940825, -8.881784196990121e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_21_LVCableDist_mvgd_0_lvgd_1018_22,"[0.006552421856028546, 0.0]","[-0.006549965221346993, 0.0]","[0.0016420401176630267, 0.0]","[-0.001641576021610378, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_21_LVCableDist_mvgd_0_lvgd_1018_23,"[0.06679741685680109, -3.730349362751853e-14]","[-0.0664716434078632, 3.730349362751861e-14]","[0.016915130105291, 3.5527136787847675e-15]","[-0.016787944399794405, -3.5527136787847316e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_21_LVStation_mvgd_0_lvgd_1018,"[0.07374261579671273, -3.7303493627520314e-14]","[-0.07334983871650816, 3.73034936275204e-14]","[0.018710514906979357, 6.217248937893091e-15]","[-0.01855717021234087, -6.217248937893054e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_23_LVCableDist_mvgd_0_lvgd_1018_24,"[0.006554517626308935, 0.0]","[-0.006549965219615086, 0.0]","[0.0016424360400692666, 0.0]","[-0.0016415760204690662, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_23_LVCableDist_mvgd_0_lvgd_1018_25,"[0.05991712577827467, -2.842170943049348e-14]","[-0.05965240415474058, 2.8421709430493534e-14]","[0.015145508369484873, 7.105427357602057e-15]","[-0.015042157999590834, -7.105427357602037e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_25_LVCableDist_mvgd_0_lvgd_1018_26,"[0.006552469620060479, 0.0]","[-0.006549965217816413, 0.0]","[0.0016420491393117356, 0.0]","[-0.0016415760192322857, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_25_LVCableDist_mvgd_0_lvgd_1018_27,"[0.05309993453223034, -3.3750779948708876e-14]","[-0.05289015590987667, 3.3750779948708945e-14]","[0.01340010886794095, 5.329070518192737e-15]","[-0.01331820887833425, -5.329070518192708e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_27_LVCableDist_mvgd_0_lvgd_1018_28,"[0.006554597278185974, 0.0]","[-0.006549965215589854, 0.0]","[0.0016424510855893156, 0.0]","[-0.0016415760177647734, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_27_LVCableDist_mvgd_0_lvgd_1018_29,"[0.04633555863051011, -3.0198066269897874e-14]","[-0.046174540008862355, 3.0198066269897937e-14]","[0.011675757796925526, 5.329070518195224e-15]","[-0.011612894273028392, -5.3290705181951986e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_29_LVCableDist_mvgd_0_lvgd_1018_30,"[0.006552508428564538, 0.0]","[-0.006549965213578959, 0.0]","[0.0016420564687703997, 0.0]","[-0.0016415760163674812, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_29_LVCableDist_mvgd_0_lvgd_1018_31,"[0.039622031580611144, -1.7763568394059795e-14]","[-0.03950346152446223, 1.776356839405982e-14]","[0.009970837804074328, 6.217248937906787e-15]","[-0.009924546688910591, -6.21724893790678e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_31_LVCableDist_mvgd_0_lvgd_1018_32,"[0.006554659763911153, 0.0]","[-0.006549965211191625, 0.0]","[0.0016424628879835397, 0.0]","[-0.001641576014814141, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_31_LVCableDist_mvgd_0_lvgd_1018_33,"[0.032948801762588145, -2.1316282072869008e-14]","[-0.032866309989712475, 2.1316282072869036e-14]","[0.00828208379551932, 3.552713678795946e-15]","[-0.008249878057559204, -3.5527136787959342e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_33_LVCableDist_mvgd_0_lvgd_1018_34,"[0.006552537526966118, 0.0]","[-0.006549965209391382, 0.0]","[0.001642061963871808, 0.0]","[-0.001641576013542458, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_33_LVCableDist_mvgd_0_lvgd_1018_35,"[0.02631377246646039, -1.0658141036435782e-14]","[-0.02626089189836383, 1.065814103643579e-14]","[0.006607816083054894, 3.55271367880351e-15]","[-0.006587170900390842, -3.5527136788035065e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1018_35_LVCableDist_mvgd_0_lvgd_1018_36,"[0.006554703847874398, 0.0]","[-0.006549965207301148, 0.0]","[0.0016424712142527433, 0.0]","[-0.0016415760122100948, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_35_LVCableDist_mvgd_0_lvgd_1018_37,"[0.019706188055825306, -1.0658141036433893e-14]","[-0.01967640975438695, 1.0658141036433901e-14]","[0.0049446996703057695, 8.881784196951909e-16]","[-0.004933073878549949, -8.881784196951878e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_37_LVCableDist_mvgd_0_lvgd_1018_38,"[0.0065525563328509276, 0.0]","[-0.006549965206154339, 0.0]","[0.0016420655150230297, 0.0]","[-0.001641576011361444, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_37_LVCableDist_mvgd_0_lvgd_1018_39,"[0.01312385342814896, -6.320603192777258e-28]","[-0.013110605673148175, 6.321253632120992e-28]","[0.003291008343518456, 8.881784197027725e-16]","[-0.0032858362674284187, -8.881784197027725e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_39_LVCableDist_mvgd_0_lvgd_1018_40,"[0.006554728636522138, 0.0]","[-0.006549965204791344, 0.0]","[0.0016424758960074527, 0.0]","[-0.0016415760105340758, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_39_LVCableDist_mvgd_0_lvgd_1018_41,"[0.006555877044228932, -1.776356839406177e-15]","[-0.006552564454146608, 1.776356839406177e-15]","[0.0016433603481312946, 8.881784197015081e-16]","[-0.0016420670748212222, -8.881784197015081e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_3_LVCableDist_mvgd_0_lvgd_1018_4,"[0.006554511620404211, 0.0]","[-0.006549965220069726, 0.0]","[0.0016424349056760397, 0.0]","[-0.0016415760207694476, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_3_LVCableDist_mvgd_0_lvgd_1018_5,"[0.053119913786095006, -3.552713678811043e-15]","[-0.05290384717458615, 3.552713678811044e-15]","[0.013407958410168872, -2.4995970666556496e-27]","[-0.013323603517194606, 2.499814835185022e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1018_41_LVCableDist_mvgd_0_lvgd_1018_42,"[0.006552564462187441, 0.0]","[-0.006549965204608857, 0.0]","[0.0016420670500342112, 0.0]","[-0.0016415760103240355, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_5_LVCableDist_mvgd_0_lvgd_1018_6,"[0.006552464499887095, 0.0]","[-0.006549965218647985, 0.0]","[0.0016420481724242345, 0.0]","[-0.0016415760197813366, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_5_LVCableDist_mvgd_0_lvgd_1018_7,"[0.04635138267356282, 6.249537087962555e-28]","[-0.04618551002873853, -6.249140981180381e-28]","[0.01168155534842787, -8.88178419702761e-16]","[-0.01161679675799227, 8.88178419702761e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1018_7_LVCableDist_mvgd_0_lvgd_1018_8,"[0.0065545842336377684, 0.0]","[-0.006549965216906389, 0.0]","[0.0016424486219003872, 0.0]","[-0.0016415760186402244, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1018_7_LVCableDist_mvgd_0_lvgd_1018_9,"[0.03963092579509808, 3.552713678811044e-15]","[-0.039508784133056356, -3.552713678811043e-15]","[0.0099743481365048, 2.4996563924721522e-27]","[-0.009926662625276219, -2.4994256007846646e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1002_100_LVCableDist_mvgd_0_lvgd_1002_99,"[0.0014165236426756376, 0.0]","[-0.0014164535483116292, 0.0]","[0.00035500996355277076, 0.0]","[-0.0003549967216499786, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_101_LVCableDist_mvgd_0_lvgd_1002_102,"[0.0014165891692138129, -1.3338393696157938e-18]","[-0.0014164535483041057, 1.3338393696157942e-18]","[0.0003550100233843093, 2.2331646993047734e-16]","[-0.0003549967211041102, -2.2331646993047734e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_101_LVCableDist_mvgd_0_lvgd_1002_103,"[0.014183558695075654, 2.156642969280894e-14]","[-0.014178887433569841, -2.156642969280892e-14]","[0.003558923326104767, -2.1310332533842707e-14]","[-0.003556632563048431, 2.131033253384272e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_101_LVCableDist_mvgd_0_lvgd_1002_99,"[0.015605798735136723, 2.1609112552636675e-14]","[-0.01560014786378866, -2.1609112552636644e-14]","[0.0039167045099856735, -2.845645957161797e-14]","[-0.003913933351208938, 2.845645957161798e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_103_LVCableDist_mvgd_0_lvgd_1002_104,"[0.001416523745159511, 0.0]","[-0.001416453548280557, 0.0]","[0.00035500998289687884, 0.0]","[-0.0003549967216274376, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_103_LVCableDist_mvgd_0_lvgd_1002_105,"[0.012762363688954073, 2.156642969280892e-14]","[-0.012758579114115884, -2.1566429692808904e-14]","[0.003201622578904565, -2.131033253384272e-14]","[-0.003199766642512976, 2.131033253384273e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_105_LVCableDist_mvgd_0_lvgd_1002_106,"[0.0014165893487313708, 0.0]","[-0.0014164535482781109, 0.0]","[0.00035501004095332553, 0.0]","[-0.0003549967210627252, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_105_LVCableDist_mvgd_0_lvgd_1002_107,"[0.011341989765961576, 2.871255673058417e-14]","[-0.01133899890863327, -2.8712556730584145e-14]","[0.0028447565996679537, -2.1267649674015033e-14]","[-0.002843289898335578, 2.1267649674015043e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_107_LVCableDist_mvgd_0_lvgd_1002_108,"[0.0014165238283003884, 0.0]","[-0.00141645354825162, 0.0]","[0.0003550099985895449, 0.0]","[-0.0003549967216080473, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_107_LVCableDist_mvgd_0_lvgd_1002_109,"[0.009922475080923162, 2.866987387075645e-14]","[-0.00992018479247454, -2.8669873870756434e-14]","[0.002488279898362254, -1.4121522636239774e-14]","[-0.0024871567524711634, 1.4121522636239785e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_109_LVCableDist_mvgd_0_lvgd_1002_110,"[0.001416589490724344, 0.0]","[-0.0014164535482486453, 0.0]","[0.00035501005485027873, 0.0]","[-0.0003549967210295087, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_109_LVCableDist_mvgd_0_lvgd_1002_111,"[0.008503595302372225, 1.4377619795205903e-14]","[-0.008501912397746742, -1.4377619795205894e-14]","[0.002132146695598751, -1.4206888355895158e-14]","[-0.002131321407667728, 1.4206888355895161e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_10_LVCableDist_mvgd_0_lvgd_1002_9,"[0.0014165881129264923, 0.0]","[-0.0014164535484700593, 0.0]","[0.00035500991998906165, 0.0]","[-0.0003549967213303283, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_111_LVCableDist_mvgd_0_lvgd_1002_112,"[0.0014165238919835235, 0.0]","[-0.0014164535482244108, 0.0]","[0.0003550100106095855, 0.0]","[-0.00035499672159222456, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_111_LVCableDist_mvgd_0_lvgd_1002_113,"[0.007085388506393787, 7.23149275743063e-15]","[-0.007084219663010047, -7.231492757430624e-15]","[0.0017763113955549341, -1.4249571215722844e-14]","[-0.0017757382006612678, 1.4249571215722847e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_113_LVCableDist_mvgd_0_lvgd_1002_114,"[0.0014165895950118336, 0.0]","[-0.001416453548230311, 0.0]","[0.0003550100650562398, 0.0]","[-0.0003549967210047075, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_113_LVCableDist_mvgd_0_lvgd_1002_115,"[0.005667630068666173, 2.8669873870756415e-14]","[-0.005666881937160459, -2.86698738707564e-14]","[0.001420728133478492, -1.4121522636239807e-14]","[-0.0014203612535655524, 1.4121522636239815e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_115_LVCableDist_mvgd_0_lvgd_1002_116,"[0.0014165239361274974, 0.0]","[-0.0014164535482052943, 0.0]","[0.0003550100189418174, 0.0]","[-0.00035499672158136985, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_115_LVCableDist_mvgd_0_lvgd_1002_117,"[0.004250358001694806, 4.2682859827677274e-17]","[-0.004249937137350742, -4.268285982767597e-17]","[0.0010653512330373927, -7.146127037775262e-15]","[-0.0010651448432880905, 7.146127037775262e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_117_LVCableDist_mvgd_0_lvgd_1002_118,"[0.0014165896614483802, 0.0]","[-0.001416453548221512, 0.0]","[0.0003550100715578473, 0.0]","[-0.00035499672098907064, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_117_LVCableDist_mvgd_0_lvgd_1002_119,"[0.002833347476612508, -1.4249571215722847e-14]","[-0.0028331604176396446, 1.4249571215722854e-14]","[0.0007101347695378874, -7.231492757430614e-15]","[-0.0007100430367620923, 7.231492757430614e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_119_LVCableDist_mvgd_0_lvgd_1002_120,"[0.001416523960678941, 0.0]","[-0.0014164535482018516, 0.0]","[0.00035501002357639626, 0.0]","[-0.0003549967215771533, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_119_LVCableDist_mvgd_0_lvgd_1002_121,"[0.001416636457645196, 1.427091264563669e-14]","[-0.0014165896892286275, -1.4270912645636687e-14]","[0.00035503301156275026, 3.6584292385429825e-15]","[-0.0003550100765674078, -3.658429238542981e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_11_LVCableDist_mvgd_0_lvgd_1002_12,"[0.0014165231861248885, 0.0]","[-0.0014164535484455644, 0.0]","[0.00035500987737512214, 0.0]","[-0.0003549967217470865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_11_LVCableDist_mvgd_0_lvgd_1002_13,"[0.007085994386489308, 1.0751202701533742e-14]","[-0.007084547734705205, -1.075120270153374e-14]","[0.0017766105118714826, -5.295570988589865e-15]","[-0.0017759010811409857, 5.295570988589867e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_11_LVCableDist_mvgd_0_lvgd_1002_9,"[0.008504600403153846, 1.0751202701533747e-14]","[-0.008502517572148769, -1.0751202701533742e-14]","[0.0021326418001568694, -5.295570988589864e-15]","[-0.0021316203903486005, 5.295570988589865e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_121_LVCableDist_mvgd_0_lvgd_1002_122,"[0.0014165896899342085, 0.0]","[-0.0014164535482142431, 0.0]","[0.000355010074345341, 0.0]","[-0.0003549967209818391, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_123_LVCableDist_mvgd_0_lvgd_1002_124,"[0.001416523080443501, 0.0]","[-0.001416453548461439, 0.0]","[0.000355009857419047, 0.0]","[-0.0003549967217588489, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_123_LVCableDist_mvgd_0_lvgd_1002_125,"[0.07779386188044418, 4.136643938542391e-13]","[-0.0777240936362755, -4.1366439385423717e-13]","[0.019807908290852595, 1.3825201958773996e-13]","[-0.01977369429618579, -1.38252019587739e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_123_LVStation_mvgd_0_lvgd_1002,"[0.0792827146388525, 3.8503720284331193e-13]","[-0.0792103849621649, -3.8503720284331026e-13]","[0.02019838825353761, 1.4522741518620507e-13]","[-0.0201629181452967, -1.4522741518620424e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_125_LVCableDist_mvgd_0_lvgd_1002_126,"[0.001416588233314642, 0.0]","[-0.0014164535484282382, 0.0]","[0.00035500993174724, 0.0]","[-0.00035499672127621904, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_125_LVCableDist_mvgd_0_lvgd_1002_127,"[0.07630750540178462, 3.850372028433085e-13]","[-0.07624025488677864, -3.8503720284330673e-13]","[0.019418684366952467, 1.4522741518620328e-13]","[-0.01938570505395455, -1.4522741518620242e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_127_LVCableDist_mvgd_0_lvgd_1002_128,"[0.0014165233421941145, 0.0]","[-0.0014164535483601173, 0.0]","[0.00035500990681884824, 0.0]","[-0.0003549967216907947, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_127_LVCableDist_mvgd_0_lvgd_1002_129,"[0.07482373154339507, 3.850798857031345e-13]","[-0.07475895466723857, -3.850798857031328e-13]","[0.019030695150040675, 1.3808128814842722e-13]","[-0.018998928897044652, -1.3808128814842636e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_129_LVCableDist_mvgd_0_lvgd_1002_130,"[0.001416588731588071, 0.0]","[-0.0014164535483367844, 0.0]","[0.00035500998049586277, 0.0]","[-0.00035499672114307776, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_129_LVCableDist_mvgd_0_lvgd_1002_131,"[0.07334236593452803, 3.707022659079269e-13]","[-0.07328001865366958, -3.7070226590792533e-13]","[0.018643918918919766, 1.5228817650432123e-13]","[-0.018613344127190415, -1.5228817650432044e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_131_LVCableDist_mvgd_0_lvgd_1002_132,"[0.0014165235957102663, 0.0]","[-0.0014164535482696114, 0.0]","[0.0003550099546597636, 0.0]","[-0.00035499672162151406, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_131_LVCableDist_mvgd_0_lvgd_1002_133,"[0.07186349505683239, 3.279962351205854e-13]","[-0.07180353295262401, -3.2799623512058414e-13]","[0.01825833417534702, 1.2344757119425343e-13]","[-0.01822892906220362, -1.2344757119425283e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_133_LVCableDist_mvgd_0_lvgd_1002_134,"[0.001416589213739055, 0.0]","[-0.0014164535482250357, 0.0]","[0.0003550100276572471, 0.0]","[-0.00035499672100206583, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_133_LVCableDist_mvgd_0_lvgd_1002_135,"[0.07038694373785825, 3.421604406166512e-13]","[-0.07032932243663845, -3.421604406166497e-13]","[0.01787391903670389, 1.449713180272337e-13]","[-0.01784566184152693, -1.4497131802723298e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_135_LVCableDist_mvgd_0_lvgd_1002_136,"[0.0014165238407837493, 0.0]","[-0.0014164535481462454, 0.0]","[0.0003550100009055455, 0.0]","[-0.0003549967215458422, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_135_LVCableDist_mvgd_0_lvgd_1002_137,"[0.06891279859481843, 3.422458063363052e-13]","[-0.0688574733599656, -3.4224580633630394e-13]","[0.01749065184327724, 1.3067906395168278e-13]","[-0.017463520627453353, -1.3067906395168215e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_137_LVCableDist_mvgd_0_lvgd_1002_138,"[0.0014165896794729657, 0.0]","[-0.0014164535481125137, 0.0]","[0.0003550100732015415, 0.0]","[-0.00035499672085414515, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_137_LVCableDist_mvgd_0_lvgd_1002_139,"[0.06744088367953568, 3.278681865410983e-13]","[-0.06738780981763752, -3.27868186541097e-13]","[0.017108510556155417, 1.4488595230757681e-13]","[-0.017082483402260876, -1.4488595230757616e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_139_LVCableDist_mvgd_0_lvgd_1002_140,"[0.0014165240773015104, 0.0]","[-0.001416453548037299, 0.0]","[0.0003550100455305235, 0.0]","[-0.000354996721468398, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_139_LVCableDist_mvgd_0_lvgd_1002_141,"[0.06597128573947451, 3.4220312347647476e-13]","[-0.0659204182065641, -3.4220312347647335e-13]","[0.01672747335918915, 1.3782519098945655e-13]","[-0.016702528177890016, -1.378251909894559e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_13_LVCableDist_mvgd_0_lvgd_1002_14,"[0.0014165882406956647, 0.0]","[-0.001416453548452054, 0.0]","[0.00035500993249905035, 0.0]","[-0.0003549967213064029, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_13_LVCableDist_mvgd_0_lvgd_1002_15,"[0.00566795949450762, 1.4324266220421385e-14]","[-0.005667033525470756, -1.4324266220421376e-14]","[0.0014208911470601027, -5.274229558675999e-15]","[-0.0014204370565198236, 5.2742295586760025e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_141_LVCableDist_mvgd_0_lvgd_1002_142,"[0.0014165901284900074, 0.0]","[-0.001416453548005244, 0.0]","[0.000355010117099567, 0.0]","[-0.00035499672070013304, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_141_LVCableDist_mvgd_0_lvgd_1002_143,"[0.06450382807721425, 3.2799623512057883e-13]","[-0.06445512187075529, -3.279962351205775e-13]","[0.016347518062402797, 1.234475711942504e-13]","[-0.016323632784682483, -1.2344757119424982e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_143_LVCableDist_mvgd_0_lvgd_1002_144,"[0.0014165243050775018, 0.0]","[-0.0014164535479126391, 0.0]","[0.0003550100885026233, 0.0]","[-0.00035499672138656165, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_143_LVCableDist_mvgd_0_lvgd_1002_145,"[0.063038597564899, 3.279962351205775e-13]","[-0.0629920073444683, -3.279962351205763e-13]","[0.015968622698381087, 1.2344757119424982e-13]","[-0.015945775089525015, -1.234475711942492e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_145_LVCableDist_mvgd_0_lvgd_1002_146,"[0.0014165905604708253, 0.0]","[-0.0014164535478809223, 0.0]","[0.00035501015932396673, 0.0]","[-0.00035499672054180824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_145_LVCableDist_mvgd_0_lvgd_1002_147,"[0.06157541678329228, 3.279962351205763e-13]","[-0.06153089724811685, -3.279962351205751e-13]","[0.015590764931469294, 1.234475711942492e-13]","[-0.015568932776207113, -1.2344757119424861e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_147_LVCableDist_mvgd_0_lvgd_1002_148,"[0.0014165245239785818, 0.0]","[-0.0014164535477903838, 0.0]","[0.0003550101297959651, 0.0]","[-0.00035499672130302875, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_147_LVCableDist_mvgd_0_lvgd_1002_149,"[0.06011437272346399, 2.852902043332365e-13]","[-0.06007187824780659, -2.8529020433323557e-13]","[0.015213922648306996, 9.460696588418263e-14]","[-0.015193083572007536, -9.460696588418218e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_149_LVCableDist_mvgd_0_lvgd_1002_150,"[0.001416590975152482, 0.0]","[-0.0014164535477644426, 0.0]","[0.00035501019984642907, 0.0]","[-0.0003549967203790912, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_149_LVCableDist_mvgd_0_lvgd_1002_151,"[0.0586552872721456, 2.8520483861358014e-13]","[-0.05861477226813756, -2.852048386135792e-13]","[0.014838073373037771, 1.0889921995973198e-13]","[-0.014818205019640417, -1.088992199597315e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_151_LVCableDist_mvgd_0_lvgd_1002_152,"[0.0014165247338561759, 0.0]","[-0.001416453547668343, 0.0]","[0.00035501016938446127, 0.0]","[-0.000354996721219366, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_151_LVCableDist_mvgd_0_lvgd_1002_153,"[0.057198247533803225, 2.566203304624797e-13]","[-0.05715966610178084, -2.566203304624789e-13]","[0.014463194851844203, 1.0872848852042065e-13]","[-0.014444274712385626, -1.0872848852042028e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_153_LVCableDist_mvgd_0_lvgd_1002_154,"[0.0014165913722365639, 0.0]","[-0.0014164535476355884, 0.0]","[0.0003550102386403527, 0.0]","[-0.0003549967202126673, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_153_LVCableDist_mvgd_0_lvgd_1002_155,"[0.055743074729157564, 2.851621557537506e-13]","[-0.05570638100554351, -2.851621557537496e-13]","[0.014089264474166549, 1.1604534699750597e-13]","[-0.014071270057380009, -1.160453469975055e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_155_LVCableDist_mvgd_0_lvgd_1002_156,"[0.0014165249345615698, 0.0]","[-0.0014164535475390955, 0.0]","[0.00035501020723867924, 0.0]","[-0.0003549967211328331, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_155_LVCableDist_mvgd_0_lvgd_1002_157,"[0.0542898560706317, 2.8524752147340503e-13]","[-0.054255003893460885, -2.8524752147340407e-13]","[0.013716259851350951, 1.0175309292195586e-13]","[-0.013699168519641852, -1.0175309292195543e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_157_LVCableDist_mvgd_0_lvgd_1002_158,"[0.0014165917514705527, 0.0]","[-0.0014164535475099775, 0.0]","[0.0003550102756817048, 0.0]","[-0.0003549967200448036, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_157_LVCableDist_mvgd_0_lvgd_1002_159,"[0.05283841214179856, 2.851621557537487e-13]","[-0.05280535538340931, -2.851621557537477e-13]","[0.013344158243939168, 1.16045346997505e-13]","[-0.01332794737653512, -1.1604534699750453e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_159_LVCableDist_mvgd_0_lvgd_1002_160,"[0.0014165251259644074, 0.0]","[-0.001416453547408268, 0.0]","[0.00035501024333503594, 0.0]","[-0.0003549967210455364, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_159_LVCableDist_mvgd_0_lvgd_1002_161,"[0.0513888302573441, 2.709979502576813e-13]","[-0.051357522505323994, -2.709979502576805e-13]","[0.012972937134015025, 9.45216001645248e-14]","[-0.012957583970503334, -9.452160016452441e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_15_LVCableDist_mvgd_0_lvgd_1002_16,"[0.0014165232402217891, 0.0]","[-0.0014164535484298716, 0.0]","[0.000355009887588977, 0.0]","[-0.0003549967217382407, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_15_LVCableDist_mvgd_0_lvgd_1002_17,"[0.004250510285742856, 1.0740531986576799e-14]","[-0.004249989368188823, -1.0740531986576796e-14]","[0.001065427167756622, -3.5090392291460463e-15]","[-0.0010651717124183385, 3.509039229146048e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_161_LVCableDist_mvgd_0_lvgd_1002_162,"[0.0014165921125959603, 0.0]","[-0.0014164535473867965, 0.0]","[0.00035501031094582237, 0.0]","[-0.00035499671987611103, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_161_LVCableDist_mvgd_0_lvgd_1002_163,"[0.049940930392764156, 2.5662033046247555e-13]","[-0.04991132526722088, -2.566203304624748e-13]","[0.012602573659038364, 1.0872848852041853e-13]","[-0.012588055454954016, -1.0872848852041809e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1002_163_LVCableDist_mvgd_0_lvgd_1002_164,"[0.0014165253079412236, 0.0]","[-0.0014164535472828664, 0.0]","[0.00035501027764907425, 0.0]","[-0.0003549967209576666, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_163_LVCableDist_mvgd_0_lvgd_1002_165,"[0.04849479995927959, 2.567056961821302e-13]","[-0.04846685080942763, -2.567056961821294e-13]","[0.01223304517768629, 9.443623444486864e-14]","[-0.012219339055719619, -9.443623444486826e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_165_LVCableDist_mvgd_0_lvgd_1002_166,"[0.0014165924553606417, 0.0]","[-0.0014164535472607172, 0.0]","[0.00035501034440967624, 0.0]","[-0.00035499671970776924, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_165_LVCableDist_mvgd_0_lvgd_1002_167,"[0.04705025835425151, 2.567483790419571e-13]","[-0.04702391856004162, -2.5674837904195633e-13]","[0.011864328710282509, 8.729010740709355e-14]","[-0.011851411808196754, -8.729010740709318e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_167_LVCableDist_mvgd_0_lvgd_1002_168,"[0.0014165254803642844, 0.0]","[-0.0014164535471599125, 0.0]","[0.00035501031015962135, 0.0]","[-0.00035499672087161923, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_167_LVCableDist_mvgd_0_lvgd_1002_169,"[0.04560739307995042, 2.8533288719305506e-13]","[-0.0455826157645086, -2.8533288719305425e-13]","[0.01149640149797039, 8.746083884640395e-14]","[-0.011484250827583238, -8.746083884640354e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_169_LVCableDist_mvgd_0_lvgd_1002_170,"[0.0014165927795349994, 0.0]","[-0.001416453547137723, 0.0]","[0.00035501037605051376, 0.0]","[-0.0003549967195401323, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_169_LVCableDist_mvgd_0_lvgd_1002_171,"[0.04416602298536832, 2.710406331175049e-13]","[-0.04414276130077318, -2.7104063311750406e-13]","[0.011129240449937202, 8.737547312674815e-14]","[-0.011117833037264544, -8.737547312674774e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_171_LVCableDist_mvgd_0_lvgd_1002_172,"[0.001416525643101814, 0.0]","[-0.0014164535470264823, 0.0]","[0.0003550103408399256, 0.0]","[-0.00035499672078309575, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_171_LVCableDist_mvgd_0_lvgd_1002_173,"[0.04272623565808666, 2.710833159773317e-13]","[-0.04270444251386171, -2.7108331597733097e-13]","[0.010762822695883108, 8.022934608897309e-14]","[-0.01075213544799304, -8.022934608897271e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_173_LVCableDist_mvgd_0_lvgd_1002_174,"[0.0014165930848933717, 0.0]","[-0.001416453547016127, 0.0]","[0.00035501040584904237, 0.0]","[-0.00035499671937587603, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_173_LVCableDist_mvgd_0_lvgd_1002_175,"[0.04128784942959141, 2.5670569618212634e-13]","[-0.041267477762428825, -2.567056961821256e-13]","[0.010397125039986304, 9.443623444486659e-14]","[-0.010387134877270311, -9.443623444486619e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_175_LVCableDist_mvgd_0_lvgd_1002_176,"[0.0014165257960598407, 0.0]","[-0.0014164535469013584, 0.0]","[0.0003550103696758389, 0.0]","[-0.00035499672069924876, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_175_LVCableDist_mvgd_0_lvgd_1002_177,"[0.03985095196694973, 2.710833159773301e-13]","[-0.03983195448544743, -2.710833159773293e-13]","[0.010032124506578276, 8.022934608897236e-14]","[-0.010022808237571547, -8.022934608897198e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_177_LVCableDist_mvgd_0_lvgd_1002_178,"[0.001416593371221455, 0.0]","[-0.0014164535468936498, 0.0]","[0.0003550104337842689, 0.0]","[-0.00035499671921480376, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_177_LVCableDist_mvgd_0_lvgd_1002_179,"[0.03841536111502905, 2.42498807826231e-13]","[-0.038397690553169814, -2.4249880782623037e-13]","[0.009667797801062463, 8.005861464966129e-14]","[-0.009659132246748825, -8.005861464966097e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_179_LVCableDist_mvgd_0_lvgd_1002_180,"[0.001416525939135741, 5.335357478459154e-18]","[-0.0014164535467884067, -5.335357478459153e-18]","[0.000355010396642885, -8.93265879721819e-16]","[-0.00035499672061571977, 8.93265879721819e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_179_LVCableDist_mvgd_0_lvgd_1002_181,"[0.036981164614839974, 1.9962204559958305e-13]","[-0.03696477349315353, -1.996220455995826e-13]","[0.00930412184859336, 7.980251749069493e-14]","[-0.009296083725280312, -7.980251749069468e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_17_LVCableDist_mvgd_0_lvgd_1002_18,"[0.001416588322112896, 0.0]","[-0.0014164535484456958, 0.0]","[0.00035500994047071117, 0.0]","[-0.00035499672129168914, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_17_LVCableDist_mvgd_0_lvgd_1002_19,"[0.0028334010465889603, 1.0708519841705998e-14]","[-0.0028331695143512347, -1.0708519841705996e-14]","[0.0007101617703027062, 1.8505560491854177e-15]","[-0.0007100482280623772, -1.8505560491854165e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_181_LVCableDist_mvgd_0_lvgd_1002_182,"[0.0014165936383281582, 0.0]","[-0.0014164535467789327, 0.0]","[0.00035501045983924194, 0.0]","[-0.00035499671905955436, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_181_LVCableDist_mvgd_0_lvgd_1002_183,"[0.035548179855807376, 2.13871616815304e-13]","[-0.03553302071842487, -2.1387161681530344e-13]","[0.008941073262180944, 8.703401024812455e-14]","[-0.00893363929775001, -8.703401024812429e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_183_LVCableDist_mvgd_0_lvgd_1002_184,"[0.0014165260722140676, 0.0]","[-0.0014164535466722299, 0.0]","[0.0003550104217269903, 0.0]","[-0.000354996720537336, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_183_LVCableDist_mvgd_0_lvgd_1002_185,"[0.03411649464725186, 1.8537247438386072e-13]","[-0.03410251983966227, -1.853724743838603e-13]","[0.008578628874025437, 7.25710247332646e-14]","[-0.008571775698945041, -7.257102473326439e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_185_LVCableDist_mvgd_0_lvgd_1002_186,"[0.0014165938860186118, 0.0]","[-0.0014164535466642389, 0.0]","[0.00035501048399567736, 0.0]","[-0.00035499671891019857, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_185_LVCableDist_mvgd_0_lvgd_1002_187,"[0.03268592595479435, 1.5678796623276232e-13]","[-0.03267308784430486, -1.56787966232762e-13]","[0.008216765211117746, 7.240029329395372e-14]","[-0.008210469466555832, -7.240029329395356e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_187_LVCableDist_mvgd_0_lvgd_1002_188,"[0.0014165261951995724, 0.0]","[-0.0014164535465510345, 0.0]","[0.00035501044490844565, 0.0]","[-0.0003549967204620435, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_187_LVCableDist_mvgd_0_lvgd_1002_189,"[0.031256561650316386, 1.4249571215721305e-13]","[-0.031244812420561614, -1.424957121572128e-13]","[0.007855459019156828, 7.231492757429822e-14]","[-0.007849697256209247, -7.23149275742981e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_189_LVCableDist_mvgd_0_lvgd_1002_190,"[0.0014165941141271899, 0.0]","[-0.0014164535465581668, 0.0]","[0.0003550105062377116, 0.0]","[-0.0003549967187679616, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_189_LVCableDist_mvgd_0_lvgd_1002_191,"[0.02982821830775544, 1.4253839501704046e-13]","[-0.029817510162405244, -1.425383950170402e-13]","[0.007494686745577038, 6.516880053652362e-14]","[-0.007489435525164826, -6.51688005365235e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_191_LVCableDist_mvgd_0_lvgd_1002_192,"[0.001416526308033473, 0.0]","[-0.0014164535464527422, 0.0]","[0.000355010466173021, 0.0]","[-0.0003549967203919916, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_191_LVCableDist_mvgd_0_lvgd_1002_193,"[0.028400983855798433, 1.2828882380131894e-13]","[-0.028391268829966943, -1.2828882380131874e-13]","[0.00713442505605957, 5.793730777909371e-14]","[-0.0071296608564448746, -5.793730777909361e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_193_LVCableDist_mvgd_0_lvgd_1002_194,"[0.001416594322494479, 0.0]","[-0.0014164535464623472, 0.0]","[0.0003550105265516109, 0.0]","[-0.0003549967186349056, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_193_LVCableDist_mvgd_0_lvgd_1002_195,"[0.02697467450900413, 9.974699851004862e-14]","[-0.02696590465605818, -9.974699851004848e-14]","[0.0067746503249835, 5.062044930200849e-14]","[-0.006770349633379512, -5.062044930200842e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_195_LVCableDist_mvgd_0_lvgd_1002_196,"[0.0014165264106115948, 0.0]","[-0.0014164535463530026, 0.0]","[0.00035501048550239377, 0.0]","[-0.0003549967203239381, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_195_LVCableDist_mvgd_0_lvgd_1002_197,"[0.02554937824697288, 8.554011015415494e-14]","[-0.025541505466976144, -8.554011015415486e-14]","[0.00641533914448425, 3.624282950680421e-14]","[-0.006411478372925058, -3.624282950680416e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_197_LVCableDist_mvgd_0_lvgd_1002_198,"[0.001416594510965894, 0.0]","[-0.0014164535463697969, 0.0]","[0.00035501054492360716, 0.0]","[-0.0003549967185117399, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_197_LVCableDist_mvgd_0_lvgd_1002_199,"[0.024124910957707423, 9.978968136987605e-14]","[-0.02411788716719397, -9.978968136987594e-14]","[0.006056467822596165, 4.3474322264233934e-14]","[-0.006053023391192864, -4.3474322264233884e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_199_LVCableDist_mvgd_0_lvgd_1002_200,"[0.0014165265028778585, 0.0]","[-0.001416453546268541, 0.0]","[0.0003550105028869408, 0.0]","[-0.00035499672026201366, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_199_LVCableDist_mvgd_0_lvgd_1002_201,"[0.02270136066602807, 7.124785607860591e-14]","[-0.022695137643605166, -7.124785607860584e-14]","[0.005698012884498544, 3.615746378714879e-14]","[-0.005694961145723612, -3.615746378714876e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_19_LVCableDist_mvgd_0_lvgd_1002_20,"[0.001416523270307712, 0.0]","[-0.0014164535484231734, 0.0]","[0.00035500989326807934, 0.0]","[-0.00035499672173238436, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_19_LVCableDist_mvgd_0_lvgd_1002_21,"[0.0014166462445634523, 1.067071495693253e-17]","[-0.0014165883565019815, -1.0670714956932444e-17]","[0.0003550383335762773, -1.7865317594438214e-15]","[-0.00035500994556322016, 1.7865317594438214e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_1_LVCableDist_mvgd_0_lvgd_1002_2,"[0.12105111849676822, 0.0]","[-0.11999999904709993, 0.0]","[0.030344169511876372, 0.0]","[-0.030074834710053497, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_1_LVStation_mvgd_0_lvgd_1002,"[0.12470083847143631, -1.3425664983221065e-15]","[-0.12105111817466196, 1.3425664983221067e-15]","[0.03267404765681643, 4.3862990364325317e-16]","[-0.030344169772105255, -4.38629903643253e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_201_LVCableDist_mvgd_0_lvgd_1002_202,"[0.001416594679413207, 0.0]","[-0.0014164535462862084, 0.0]","[0.00035501056134064357, 0.0]","[-0.0003549967183985429, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_201_LVCableDist_mvgd_0_lvgd_1002_203,"[0.02127854296599642, 7.124785607860584e-14]","[-0.02127307250495992, -7.124785607860578e-14]","[0.005339950578509451, 3.615746378714876e-14]","[-0.005337267892038582, -3.6157463787148727e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_203_LVCableDist_mvgd_0_lvgd_1002_204,"[0.0014165265847474356, 0.0]","[-0.0014164535461802046, 0.0]","[0.0003550105183133512, 0.0]","[-0.0003549967202053144, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_203_LVCableDist_mvgd_0_lvgd_1002_205,"[0.01985654592205351, 4.274871364716347e-14]","[-0.019851779693260452, -4.274871364716344e-14]","[0.004982257369528438, 2.1694478272289237e-14]","[-0.004979920034993944, -2.1694478272289224e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_205_LVCableDist_mvgd_0_lvgd_1002_206,"[0.001416594827714161, 0.0]","[-0.0014164535462093434, 0.0]","[0.00035501057579230983, 0.0]","[-0.00035499671829667675, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_205_LVCableDist_mvgd_0_lvgd_1002_207,"[0.01843518486757608, 7.120517321877806e-14]","[-0.018431074554790622, -7.1205173218778e-14]","[0.004624909452948782, 4.3303590824923113e-14]","[-0.004622893776312565, -4.330359082492308e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_207_LVCableDist_mvgd_0_lvgd_1002_208,"[0.0014165266561836517, 0.0]","[-0.0014164535461097503, 0.0]","[0.00035501053177553485, 0.0]","[-0.00035499672015878883, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_207_LVCableDist_mvgd_0_lvgd_1002_209,"[0.017014547900550275, 8.558279301398214e-14]","[-0.01701104508068529, -8.558279301398207e-14]","[0.004267883239956995, 2.909670246902961e-14]","[-0.004266165474781632, -2.909670246902958e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_209_LVCableDist_mvgd_0_lvgd_1002_210,"[0.0014165949557670924, 0.0]","[-0.0014164535461434632, 0.0]","[0.00035501058827025847, 0.0]","[-0.0003549967182081831, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_209_LVCableDist_mvgd_0_lvgd_1002_211,"[0.015594450127023481, 5.708365058253982e-14]","[-0.015591506388117848, -5.708365058253977e-14]","[0.003911154879887251, 1.4633716954170122e-14]","[-0.003909711285191442, -1.4633716954170097e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_211_LVCableDist_mvgd_0_lvgd_1002_212,"[0.0014165267171201634, 0.0]","[-0.001416453546041934, 0.0]","[0.0003550105432547948, 0.0]","[-0.00035499672011339356, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_211_LVCableDist_mvgd_0_lvgd_1002_213,"[0.01417497967301913, 7.146127037774388e-14]","[-0.014172546511934865, -7.146127037774383e-14]","[0.0035547007370476534, 4.2682859827665055e-16]","[-0.0035535075271374335, -4.268285982766284e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_213_LVCableDist_mvgd_0_lvgd_1002_214,"[0.0014165950634806594, 0.0]","[-0.0014164535460888807, 0.0]","[0.00035501059876425633, 0.0]","[-0.0003549967181318189, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_213_LVCableDist_mvgd_0_lvgd_1002_215,"[0.01275595145071576, 9.996041280918605e-14]","[-0.012753980373660101, -9.996041280918594e-14]","[0.0031984969214154777, 1.4889814113136048e-14]","[-0.003197530315179738, -1.4889814113135994e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_215_LVCableDist_mvgd_0_lvgd_1002_216,"[0.001416526767529567, 0.0]","[-0.0014164535459930288, 0.0]","[0.0003550105527535793, 0.0]","[-0.00035499672007982785, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_215_LVCableDist_mvgd_0_lvgd_1002_217,"[0.011337453608297205, 1.285022381004558e-13]","[-0.011335896046049369, -1.2850223810045561e-13]","[0.0028425197573056413, 2.220667259022101e-14]","[-0.0028417559366437388, -2.220667259022093e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_217_LVCableDist_mvgd_0_lvgd_1002_218,"[0.0014165951507737662, 0.0]","[-0.0014164535460417364, 0.0]","[0.0003550106072688952, 0.0]","[-0.00035499671806975145, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_217_LVCableDist_mvgd_0_lvgd_1002_219,"[0.009919300897569611, 8.575352445329239e-14]","[-0.009918108288473603, -8.575352445329231e-14]","[0.002486745322148651, 5.121943179318889e-16]","[-0.0024861604726696845, -5.121943179318564e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_219_LVCableDist_mvgd_0_lvgd_1002_220,"[0.0014165268073678267, 0.0]","[-0.0014164535459551863, 0.0]","[0.0003550105602564076, 0.0]","[-0.0003549967200494476, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_219_LVCableDist_mvgd_0_lvgd_1002_221,"[0.008501581483370959, 5.708365058253957e-14]","[-0.00850070520615315, -5.708365058253953e-14]","[0.0021311499070703743, 1.4633716954169958e-14]","[-0.002130720185147257, -1.463371695416994e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_21_LVCableDist_mvgd_0_lvgd_1002_22,"[0.0014165883570243134, 0.0]","[-0.0014164535484362647, 0.0]","[0.0003550099438892661, 0.0]","[-0.00035499672128505745, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_221_LVCableDist_mvgd_0_lvgd_1002_222,"[0.001416595217582108, 0.0]","[-0.001416453546000414, 0.0]","[0.00035501061377667456, 0.0]","[-0.0003549967180206292, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_221_LVCableDist_mvgd_0_lvgd_1002_223,"[0.0070841099909393895, 5.708365058253953e-14]","[-0.007083501430110763, -5.708365058253949e-14]","[0.0017757095639076748, 1.463371695416994e-14]","[-0.0017754111287500603, -1.463371695416992e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_223_LVCableDist_mvgd_0_lvgd_1002_224,"[0.001416526836596326, 0.0]","[-0.0014164535459184268, 0.0]","[0.0003550105657629978, 0.0]","[-0.0003549967200273805, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_223_LVCableDist_mvgd_0_lvgd_1002_225,"[0.005666974595830573, 1.42922540755487e-14]","[-0.005666585092143678, -1.4292254075548697e-14]","[0.0014204005574957653, 8.536571965530465e-17]","[-0.0014202095468543914, -8.536571965530321e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1002_225_LVCableDist_mvgd_0_lvgd_1002_226,"[0.001416595263869597, 0.0]","[-0.0014164535459768605, 0.0]","[0.000355010618285655, 0.0]","[-0.000354996717987224, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_225_LVCableDist_mvgd_0_lvgd_1002_227,"[0.004249989830685394, 2.8584508151097395e-14]","[-0.00424977072889738, -2.858450815109739e-14]","[0.0010651989209684428, 1.7073143931060642e-16]","[-0.0010650914745578893, -1.707314393106037e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1002_227_LVCableDist_mvgd_0_lvgd_1002_228,"[0.0014165268552098914, 0.0]","[-0.0014164535458986115, 0.0]","[0.0003550105692696357, 0.0]","[-0.0003549967200138865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_227_LVCableDist_mvgd_0_lvgd_1002_229,"[0.0028332438760671247, 4.283407936681843e-14]","[-0.002833146493071769, -4.283407936681842e-14]","[0.0007100808997067356, 7.402224196740252e-15]","[-0.0007100331435775189, -7.402224196740243e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_229_LVCableDist_mvgd_0_lvgd_1002_230,"[0.0014165952895951767, 0.0]","[-0.0014164535459633275, 0.0]","[0.00035501062079129804, 0.0]","[-0.0003549967179682646, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_229_LVCableDist_mvgd_0_lvgd_1002_231,"[0.0014165512059063504, 4.268285982764971e-17]","[-0.0014165268608221583, -4.2682859827649017e-17]","[0.0003550225151050052, -7.146127037774344e-15]","[-0.0003550105763986405, 7.146127037774344e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_231_LVCableDist_mvgd_0_lvgd_1002_232,"[0.0014165268631897898, 0.0]","[-0.0014164535458904132, 0.0]","[0.0003550105707723666, 0.0]","[-0.00035499672000754317, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_23_LVCableDist_mvgd_0_lvgd_1002_24,"[0.0014165230063046936, 0.0]","[-0.0014164535485002914, 0.0]","[0.00035500984342857485, 0.0]","[-0.0003549967217816769, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_23_LVCableDist_mvgd_0_lvgd_1002_25,"[0.012765518695884461, 3.933571085263502e-14]","[-0.012760835334214049, -3.9335710852634985e-14]","[0.0032031732962313694, -5.124839549278855e-15]","[-0.0032008765993154107, 5.124839549278875e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_23_LVStation_mvgd_0_lvgd_1002,"[0.01418782202434059, 3.2221595959730554e-14]","[-0.014182041701822516, -3.222159595973053e-14]","[0.003561017781504204, -1.0527117687438078e-14]","[-0.0035581831405273193, 1.0527117687438089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_25_LVCableDist_mvgd_0_lvgd_1002_26,"[0.001416587939019369, 0.0]","[-0.0014164535484956823, 0.0]","[0.0003550099029617518, 0.0]","[-0.00035499672136308797, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_25_LVCableDist_mvgd_0_lvgd_1002_27,"[0.011344247395597388, 2.862719101092896e-14]","[-0.011340546075270555, -2.862719101092894e-14]","[0.0028458666950020076, -6.975395598464321e-15]","[-0.0028440515862024197, 6.975395598464332e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_27_LVCableDist_mvgd_0_lvgd_1002_28,"[0.0014165231081114994, 0.0]","[-0.0014164535484723411, 0.0]","[0.0003550098626473126, 0.0]","[-0.0003549967217622639, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_27_LVCableDist_mvgd_0_lvgd_1002_29,"[0.009924022967590335, 3.218958381485966e-14]","[-0.00992118851562707, -3.218958381485963e-14]","[0.0024890417225608597, -5.167522409106635e-15]","[-0.0024876517216297768, 5.1675224091066485e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_29_LVCableDist_mvgd_0_lvgd_1002_30,"[0.0014165881129264923, 0.0]","[-0.0014164535484700593, 0.0]","[0.00035500991998906165, 0.0]","[-0.0003549967213303283, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_29_LVCableDist_mvgd_0_lvgd_1002_31,"[0.008504600403153846, 1.0751202701533747e-14]","[-0.008502517572148769, -1.0751202701533742e-14]","[0.0021326418001568694, -5.295570988589864e-15]","[-0.0021316203903486005, 5.295570988589865e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_31_LVCableDist_mvgd_0_lvgd_1002_32,"[0.0014165231861248885, 0.0]","[-0.0014164535484455644, 0.0]","[0.00035500987737512214, 0.0]","[-0.0003549967217470865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_31_LVCableDist_mvgd_0_lvgd_1002_33,"[0.007085994386489308, 1.0751202701533742e-14]","[-0.007084547734705205, -1.075120270153374e-14]","[0.0017766105118714826, -5.295570988589865e-15]","[-0.0017759010811409857, 5.295570988589867e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_33_LVCableDist_mvgd_0_lvgd_1002_34,"[0.0014165882406956647, 0.0]","[-0.001416453548452054, 0.0]","[0.00035500993249905035, 0.0]","[-0.0003549967213064029, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_33_LVCableDist_mvgd_0_lvgd_1002_35,"[0.00566795949450762, 1.4324266220421385e-14]","[-0.005667033525470756, -1.4324266220421376e-14]","[0.0014208911470601027, -5.274229558675999e-15]","[-0.0014204370565198236, 5.2742295586760025e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_35_LVCableDist_mvgd_0_lvgd_1002_36,"[0.0014165232402217891, 0.0]","[-0.0014164535484298716, 0.0]","[0.000355009887588977, 0.0]","[-0.0003549967217382407, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_35_LVCableDist_mvgd_0_lvgd_1002_37,"[0.004250510285742856, 1.0740531986576799e-14]","[-0.004249989368188823, -1.0740531986576796e-14]","[0.001065427167756622, -3.5090392291460463e-15]","[-0.0010651717124183385, 3.509039229146048e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_37_LVCableDist_mvgd_0_lvgd_1002_38,"[0.001416588322112896, 0.0]","[-0.0014164535484456958, 0.0]","[0.00035500994047071117, 0.0]","[-0.00035499672129168914, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_37_LVCableDist_mvgd_0_lvgd_1002_39,"[0.0028334010465889603, 1.0708519841705998e-14]","[-0.0028331695143512347, -1.0708519841705996e-14]","[0.0007101617703027062, 1.8505560491854177e-15]","[-0.0007100482280623772, -1.8505560491854165e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_39_LVCableDist_mvgd_0_lvgd_1002_40,"[0.001416523270307712, 0.0]","[-0.0014164535484231734, 0.0]","[0.00035500989326807934, 0.0]","[-0.00035499672173238436, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_39_LVCableDist_mvgd_0_lvgd_1002_41,"[0.0014166462445634523, 1.067071495693253e-17]","[-0.0014165883565019815, -1.0670714956932444e-17]","[0.0003550383335762773, -1.7865317594438214e-15]","[-0.00035500994556322016, 1.7865317594438214e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_3_LVCableDist_mvgd_0_lvgd_1002_4,"[0.0014165230063046936, 0.0]","[-0.0014164535485002914, 0.0]","[0.00035500984342857485, 0.0]","[-0.0003549967217816769, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_3_LVCableDist_mvgd_0_lvgd_1002_5,"[0.012765518695884461, 3.933571085263502e-14]","[-0.012760835334214049, -3.9335710852634985e-14]","[0.0032031732962313694, -5.124839549278855e-15]","[-0.0032008765993154107, 5.124839549278875e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_3_LVStation_mvgd_0_lvgd_1002,"[0.01418782202434059, 3.2221595959730554e-14]","[-0.014182041701822516, -3.222159595973053e-14]","[0.003561017781504204, -1.0527117687438078e-14]","[-0.0035581831405273193, 1.0527117687438089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_41_LVCableDist_mvgd_0_lvgd_1002_42,"[0.0014165883570243134, 0.0]","[-0.0014164535484362647, 0.0]","[0.0003550099438892661, 0.0]","[-0.00035499672128505745, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_43_LVCableDist_mvgd_0_lvgd_1002_44,"[0.0014165230063046936, 0.0]","[-0.0014164535485002914, 0.0]","[0.00035500984342857485, 0.0]","[-0.0003549967217816769, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_43_LVCableDist_mvgd_0_lvgd_1002_45,"[0.012765518695884461, 3.933571085263502e-14]","[-0.012760835334214049, -3.9335710852634985e-14]","[0.0032031732962313694, -5.124839549278855e-15]","[-0.0032008765993154107, 5.124839549278875e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_43_LVStation_mvgd_0_lvgd_1002,"[0.01418782202434059, 3.2221595959730554e-14]","[-0.014182041701822516, -3.222159595973053e-14]","[0.003561017781504204, -1.0527117687438078e-14]","[-0.0035581831405273193, 1.0527117687438089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_45_LVCableDist_mvgd_0_lvgd_1002_46,"[0.001416587939019369, 0.0]","[-0.0014164535484956823, 0.0]","[0.0003550099029617518, 0.0]","[-0.00035499672136308797, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_45_LVCableDist_mvgd_0_lvgd_1002_47,"[0.011344247395597388, 2.862719101092896e-14]","[-0.011340546075270555, -2.862719101092894e-14]","[0.0028458666950020076, -6.975395598464321e-15]","[-0.0028440515862024197, 6.975395598464332e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_47_LVCableDist_mvgd_0_lvgd_1002_48,"[0.0014165231081114994, 0.0]","[-0.0014164535484723411, 0.0]","[0.0003550098626473126, 0.0]","[-0.0003549967217622639, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_47_LVCableDist_mvgd_0_lvgd_1002_49,"[0.009924022967590335, 3.218958381485966e-14]","[-0.00992118851562707, -3.218958381485963e-14]","[0.0024890417225608597, -5.167522409106635e-15]","[-0.0024876517216297768, 5.1675224091066485e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_49_LVCableDist_mvgd_0_lvgd_1002_50,"[0.0014165881129264923, 0.0]","[-0.0014164535484700593, 0.0]","[0.00035500991998906165, 0.0]","[-0.0003549967213303283, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_49_LVCableDist_mvgd_0_lvgd_1002_51,"[0.008504600403153846, 1.0751202701533747e-14]","[-0.008502517572148769, -1.0751202701533742e-14]","[0.0021326418001568694, -5.295570988589864e-15]","[-0.0021316203903486005, 5.295570988589865e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_51_LVCableDist_mvgd_0_lvgd_1002_52,"[0.0014165231861248885, 0.0]","[-0.0014164535484455644, 0.0]","[0.00035500987737512214, 0.0]","[-0.0003549967217470865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_51_LVCableDist_mvgd_0_lvgd_1002_53,"[0.007085994386489308, 1.0751202701533742e-14]","[-0.007084547734705205, -1.075120270153374e-14]","[0.0017766105118714826, -5.295570988589865e-15]","[-0.0017759010811409857, 5.295570988589867e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_53_LVCableDist_mvgd_0_lvgd_1002_54,"[0.0014165882406956647, 0.0]","[-0.001416453548452054, 0.0]","[0.00035500993249905035, 0.0]","[-0.0003549967213064029, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_53_LVCableDist_mvgd_0_lvgd_1002_55,"[0.00566795949450762, 1.4324266220421385e-14]","[-0.005667033525470756, -1.4324266220421376e-14]","[0.0014208911470601027, -5.274229558675999e-15]","[-0.0014204370565198236, 5.2742295586760025e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_55_LVCableDist_mvgd_0_lvgd_1002_56,"[0.0014165232402217891, 0.0]","[-0.0014164535484298716, 0.0]","[0.000355009887588977, 0.0]","[-0.0003549967217382407, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_55_LVCableDist_mvgd_0_lvgd_1002_57,"[0.004250510285742856, 1.0740531986576799e-14]","[-0.004249989368188823, -1.0740531986576796e-14]","[0.001065427167756622, -3.5090392291460463e-15]","[-0.0010651717124183385, 3.509039229146048e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_57_LVCableDist_mvgd_0_lvgd_1002_58,"[0.001416588322112896, 0.0]","[-0.0014164535484456958, 0.0]","[0.00035500994047071117, 0.0]","[-0.00035499672129168914, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_57_LVCableDist_mvgd_0_lvgd_1002_59,"[0.0028334010465889603, 1.0708519841705998e-14]","[-0.0028331695143512347, -1.0708519841705996e-14]","[0.0007101617703027062, 1.8505560491854177e-15]","[-0.0007100482280623772, -1.8505560491854165e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_59_LVCableDist_mvgd_0_lvgd_1002_60,"[0.001416523270307712, 0.0]","[-0.0014164535484231734, 0.0]","[0.00035500989326807934, 0.0]","[-0.00035499672173238436, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_59_LVCableDist_mvgd_0_lvgd_1002_61,"[0.0014166462445634523, 1.067071495693253e-17]","[-0.0014165883565019815, -1.0670714956932444e-17]","[0.0003550383335762773, -1.7865317594438214e-15]","[-0.00035500994556322016, 1.7865317594438214e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_5_LVCableDist_mvgd_0_lvgd_1002_6,"[0.001416587939019369, 0.0]","[-0.0014164535484956823, 0.0]","[0.0003550099029617518, 0.0]","[-0.00035499672136308797, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_5_LVCableDist_mvgd_0_lvgd_1002_7,"[0.011344247395597388, 2.862719101092896e-14]","[-0.011340546075270555, -2.862719101092894e-14]","[0.0028458666950020076, -6.975395598464321e-15]","[-0.0028440515862024197, 6.975395598464332e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_61_LVCableDist_mvgd_0_lvgd_1002_62,"[0.0014165883570243134, 0.0]","[-0.0014164535484362647, 0.0]","[0.0003550099438892661, 0.0]","[-0.00035499672128505745, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_63_LVCableDist_mvgd_0_lvgd_1002_64,"[0.0014165230063046936, 0.0]","[-0.0014164535485002914, 0.0]","[0.00035500984342857485, 0.0]","[-0.0003549967217816769, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_63_LVCableDist_mvgd_0_lvgd_1002_65,"[0.012765518695884461, 3.933571085263502e-14]","[-0.012760835334214049, -3.9335710852634985e-14]","[0.0032031732962313694, -5.124839549278855e-15]","[-0.0032008765993154107, 5.124839549278875e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_63_LVStation_mvgd_0_lvgd_1002,"[0.01418782202434059, 3.2221595959730554e-14]","[-0.014182041701822516, -3.222159595973053e-14]","[0.003561017781504204, -1.0527117687438078e-14]","[-0.0035581831405273193, 1.0527117687438089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_65_LVCableDist_mvgd_0_lvgd_1002_66,"[0.001416587939019369, 0.0]","[-0.0014164535484956823, 0.0]","[0.0003550099029617518, 0.0]","[-0.00035499672136308797, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_65_LVCableDist_mvgd_0_lvgd_1002_67,"[0.011344247395597388, 2.862719101092896e-14]","[-0.011340546075270555, -2.862719101092894e-14]","[0.0028458666950020076, -6.975395598464321e-15]","[-0.0028440515862024197, 6.975395598464332e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_67_LVCableDist_mvgd_0_lvgd_1002_68,"[0.0014165231081114994, 0.0]","[-0.0014164535484723411, 0.0]","[0.0003550098626473126, 0.0]","[-0.0003549967217622639, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_67_LVCableDist_mvgd_0_lvgd_1002_69,"[0.009924022967590335, 3.218958381485966e-14]","[-0.00992118851562707, -3.218958381485963e-14]","[0.0024890417225608597, -5.167522409106635e-15]","[-0.0024876517216297768, 5.1675224091066485e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_69_LVCableDist_mvgd_0_lvgd_1002_70,"[0.0014165881129264923, 0.0]","[-0.0014164535484700593, 0.0]","[0.00035500991998906165, 0.0]","[-0.0003549967213303283, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_69_LVCableDist_mvgd_0_lvgd_1002_71,"[0.008504600403153846, 1.0751202701533747e-14]","[-0.008502517572148769, -1.0751202701533742e-14]","[0.0021326418001568694, -5.295570988589864e-15]","[-0.0021316203903486005, 5.295570988589865e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_71_LVCableDist_mvgd_0_lvgd_1002_72,"[0.0014165231861248885, 0.0]","[-0.0014164535484455644, 0.0]","[0.00035500987737512214, 0.0]","[-0.0003549967217470865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_71_LVCableDist_mvgd_0_lvgd_1002_73,"[0.007085994386489308, 1.0751202701533742e-14]","[-0.007084547734705205, -1.075120270153374e-14]","[0.0017766105118714826, -5.295570988589865e-15]","[-0.0017759010811409857, 5.295570988589867e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_73_LVCableDist_mvgd_0_lvgd_1002_74,"[0.0014165882406956647, 0.0]","[-0.001416453548452054, 0.0]","[0.00035500993249905035, 0.0]","[-0.0003549967213064029, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_73_LVCableDist_mvgd_0_lvgd_1002_75,"[0.00566795949450762, 1.4324266220421385e-14]","[-0.005667033525470756, -1.4324266220421376e-14]","[0.0014208911470601027, -5.274229558675999e-15]","[-0.0014204370565198236, 5.2742295586760025e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_75_LVCableDist_mvgd_0_lvgd_1002_76,"[0.0014165232402217891, 0.0]","[-0.0014164535484298716, 0.0]","[0.000355009887588977, 0.0]","[-0.0003549967217382407, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_75_LVCableDist_mvgd_0_lvgd_1002_77,"[0.004250510285742856, 1.0740531986576799e-14]","[-0.004249989368188823, -1.0740531986576796e-14]","[0.001065427167756622, -3.5090392291460463e-15]","[-0.0010651717124183385, 3.509039229146048e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_77_LVCableDist_mvgd_0_lvgd_1002_78,"[0.001416588322112896, 0.0]","[-0.0014164535484456958, 0.0]","[0.00035500994047071117, 0.0]","[-0.00035499672129168914, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_77_LVCableDist_mvgd_0_lvgd_1002_79,"[0.0028334010465889603, 1.0708519841705998e-14]","[-0.0028331695143512347, -1.0708519841705996e-14]","[0.0007101617703027062, 1.8505560491854177e-15]","[-0.0007100482280623772, -1.8505560491854165e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_79_LVCableDist_mvgd_0_lvgd_1002_80,"[0.001416523270307712, 0.0]","[-0.0014164535484231734, 0.0]","[0.00035500989326807934, 0.0]","[-0.00035499672173238436, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_79_LVCableDist_mvgd_0_lvgd_1002_81,"[0.0014166462445634523, 1.067071495693253e-17]","[-0.0014165883565019815, -1.0670714956932444e-17]","[0.0003550383335762773, -1.7865317594438214e-15]","[-0.00035500994556322016, 1.7865317594438214e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_7_LVCableDist_mvgd_0_lvgd_1002_8,"[0.0014165231081114994, 0.0]","[-0.0014164535484723411, 0.0]","[0.0003550098626473126, 0.0]","[-0.0003549967217622639, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_7_LVCableDist_mvgd_0_lvgd_1002_9,"[0.009924022967590335, 3.218958381485966e-14]","[-0.00992118851562707, -3.218958381485963e-14]","[0.0024890417225608597, -5.167522409106635e-15]","[-0.0024876517216297768, 5.1675224091066485e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_81_LVCableDist_mvgd_0_lvgd_1002_82,"[0.0014165883570243134, 0.0]","[-0.0014164535484362647, 0.0]","[0.0003550099438892661, 0.0]","[-0.00035499672128505745, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_83_LVCableDist_mvgd_0_lvgd_1002_84,"[0.0014165230425282754, 0.0]","[-0.001416453548481648, 0.0]","[0.0003550098502678053, 0.0]","[-0.00035499672177419385, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_83_LVCableDist_mvgd_0_lvgd_1002_85,"[0.027029813928361738, 5.719035773211632e-14]","[-0.027013001529009775, -5.719035773211626e-14]","[0.00680168820213402, -3.2316006402656534e-15]","[-0.006793443486380918, 3.231600640265689e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_83_LVStation_mvgd_0_lvgd_1002,"[0.028464957237080295, 6.433648476989171e-14]","[-0.028446336970764926, -6.433648476989162e-14]","[0.007165829337291385, -3.188917780437864e-15]","[-0.007156698052707696, 3.1889177804379036e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_85_LVCableDist_mvgd_0_lvgd_1002_86,"[0.0014165880816789554, 0.0]","[-0.0014164535484762482, 0.0]","[0.0003550099169265964, 0.0]","[-0.0003549967213333626, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_85_LVCableDist_mvgd_0_lvgd_1002_87,"[0.025596413447532485, 3.577331804870424e-14]","[-0.02558131778297534, -3.5773318048704213e-14]","[0.0064384335686336076, -6.932712738636573e-15]","[-0.006431030730955747, 6.932712738636588e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_87_LVCableDist_mvgd_0_lvgd_1002_88,"[0.0014165232207153865, 0.0]","[-0.0014164535484334443, 0.0]","[0.00035500988390349786, 0.0]","[-0.0003549967217384958, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_87_LVCableDist_mvgd_0_lvgd_1002_89,"[0.024164794562467392, 3.5773318048704213e-14]","[-0.024151324117028163, -3.577331804870418e-14]","[0.006076020846523788, -6.932712738636588e-15]","[-0.0060694150080953056, 6.932712738636601e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1002_89_LVCableDist_mvgd_0_lvgd_1002_90,"[0.0014165884082959629, 0.0]","[-0.0014164535484280892, 0.0]","[0.0003550099489022902, 0.0]","[-0.00035499672126833645, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_89_LVCableDist_mvgd_0_lvgd_1002_91,"[0.022734735709056795, 2.8648532440842764e-14]","[-0.022722798884165556, -2.8648532440842745e-14]","[0.005714405058132685, -1.0548459117351983e-14]","[-0.005708551299477386, 1.0548459117351992e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_91_LVCableDist_mvgd_0_lvgd_1002_92,"[0.001416523380275488, 0.0]","[-0.0014164535483888842, 0.0]","[0.0003550099140235803, 0.0]","[-0.0003549967217068044, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_91_LVCableDist_mvgd_0_lvgd_1002_93,"[0.02130627550420822, 3.5794659478618034e-14]","[-0.021295780357617956, -3.5794659478618e-14]","[0.005353541384734174, -1.0505776257524257e-14]","[-0.00534839461783836, 1.0505776257524271e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_93_LVCableDist_mvgd_0_lvgd_1002_94,"[0.0014165886986739543, 0.0]","[-0.0014164535483783605, 0.0]","[0.00035500997732758034, 0.0]","[-0.0003549967212072309, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_93_LVCableDist_mvgd_0_lvgd_1002_95,"[0.01987919165931165, 2.1587771122722895e-14]","[-0.01987004617486896, -2.1587771122722876e-14]","[0.0049933846392047395, -2.4883396052730294e-14]","[-0.004988899739811383, 2.4883396052730304e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_95_LVCableDist_mvgd_0_lvgd_1002_96,"[0.0014165235209885178, 0.0]","[-0.0014164535483440542, 0.0]","[0.00035500994058525426, 0.0]","[-0.0003549967216771551, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_95_LVCableDist_mvgd_0_lvgd_1002_97,"[0.018453522654295063, 2.877658102032588e-14]","[-0.018445634512551712, -2.877658102032584e-14]","[0.004633889798310025, -3.198684023067786e-14]","[-0.0046300214934278565, 3.198684023067788e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1002_97_LVCableDist_mvgd_0_lvgd_1002_98,"[0.001416588952435723, 0.0]","[-0.0014164535483441587, 0.0]","[0.00035501000216616515, 0.0]","[-0.0003549967211524189, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1002_97_LVCableDist_mvgd_0_lvgd_1002_99,"[0.01702904556056211, 3.594404948801498e-14]","[-0.01702232237732484, -3.594404948801494e-14]","[0.00427501148974225, -3.55172208897378e-14]","[-0.004271714474629361, 3.5517220889737824e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_100_LVCableDist_mvgd_0_lvgd_1003_99,"[0.00115433932655287, 0.0]","[-0.0011542497693799608, 0.0]","[0.0002892910444602194, 0.0]","[-0.00028928226030878996, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_101_LVCableDist_mvgd_0_lvgd_1003_102,"[0.0011542961093008828, 0.0]","[-0.001154249769363141, 0.0]","[0.0002892910148100255, 0.0]","[-0.0002892822604834879, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_101_LVCableDist_mvgd_0_lvgd_1003_103,"[0.004618472041131077, -1.0760097987368681e-14]","[-0.00461783155813763, 1.0760097987368684e-14]","[0.0011577530920935152, 1.699804977443548e-15]","[-0.001157439002467453, -1.6998049774435468e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_101_LVCableDist_mvgd_0_lvgd_1003_99,"[0.005773768787866504, -7.178455127819727e-15]","[-0.005772768150230669, 7.178455127819728e-15]","[0.0014475348150343379, 1.730143794887192e-15]","[-0.0014470441073901395, -1.7301437948871908e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_103_LVCableDist_mvgd_0_lvgd_1003_104,"[0.0011543393856133792, 0.0]","[-0.0011542497693668521, 0.0]","[0.000289291050246559, 0.0]","[-0.0002892822603009357, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_103_LVCableDist_mvgd_0_lvgd_1003_105,"[0.0034634921727331645, -7.148116310376088e-15]","[-0.0034631318744810873, 7.148116310376089e-15]","[0.0008681479515502879, -1.851499064661764e-15]","[-0.0008679712631066856, 1.851499064661765e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_105_LVCableDist_mvgd_0_lvgd_1003_106,"[0.0011542961330736406, 0.0]","[-0.0011542497693606847, 0.0]","[0.00028929101929844224, 0.0]","[-0.00028928226048040127, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_105_LVCableDist_mvgd_0_lvgd_1003_107,"[0.002308835741618628, 7.148116310376089e-15]","[-0.0023086755973983717, -7.148116310376088e-15]","[0.000578680243310208, 1.851499064661765e-15]","[-0.0005786017093931934, -1.851499064661764e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_107_LVCableDist_mvgd_0_lvgd_1003_108,"[0.001154339418463073, 0.0]","[-0.0011542497693701043, 0.0]","[0.00028929105346399474, 0.0]","[-0.0002892822602966517, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_107_LVCableDist_mvgd_0_lvgd_1003_109,"[0.0011543361791676472, 0.0]","[-0.0011542961430579726, 0.0]","[0.00028931065523894023, 0.0]","[-0.00028929102173290595, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_109_LVCableDist_mvgd_0_lvgd_1003_110,"[0.0011542961432687735, 0.0]","[-0.0011542497693603048, 0.0]","[0.00028929102122457814, 0.0]","[-0.0002892822604804481, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_10_LVCableDist_mvgd_0_lvgd_1003_9,"[0.0011543391686846295, 0.0]","[-0.0011542497693968737, 0.0]","[0.00028929102899416515, 0.0]","[-0.00028928226032878834, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_111_LVCableDist_mvgd_0_lvgd_1003_112,"[0.0011542959646769304, 0.0]","[-0.0011542497693909552, 0.0]","[0.00028929098750129, 0.0]","[-0.0002892822605016946, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_111_LVCableDist_mvgd_0_lvgd_1003_113,"[0.016196456409012374, 7.163285719097872e-14]","[-0.016189508657204126, -7.16328571909786e-14]","[0.004067732141584056, 6.067763488728144e-16]","[-0.004064324999177853, -6.067763488727492e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_111_LVStation_mvgd_0_lvgd_1003,"[0.017358725592585555, 8.592908981173099e-14]","[-0.017350752373570533, -8.592908981173084e-14]","[0.00436093315570992, 4.309774478196391e-15]","[-0.004357023129363296, -4.3097744781963135e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_113_LVCableDist_mvgd_0_lvgd_1003_114,"[0.001154339160717967, 0.0]","[-0.0011542497693928185, 0.0]","[0.0002892910282134897, 0.0]","[-0.0002892822603291196, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_113_LVCableDist_mvgd_0_lvgd_1003_115,"[0.015035169496629483, 7.166319600842223e-14]","[-0.015029177101150535, -7.166319600842212e-14]","[0.003775033970490865, -2.9748665106761808e-15]","[-0.003772095330004767, 2.9748665106762337e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_115_LVCableDist_mvgd_0_lvgd_1003_116,"[0.0011542960455402115, 0.0]","[-0.0011542497693832136, 0.0]","[0.00028929100277042783, 0.0]","[-0.00028928226049305315, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_115_LVCableDist_mvgd_0_lvgd_1003_117,"[0.013874881055758567, 5.0264355303459483e-14]","[-0.013869773715336316, -5.0264355303459414e-14]","[0.003482804326912442, -1.3901827993984814e-14]","[-0.0034802997129573304, 1.3901827993984844e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_117_LVCableDist_mvgd_0_lvgd_1003_118,"[0.0011543393056744275, 0.0]","[-0.0011542497693693284, 0.0]","[0.0002892910424155289, 0.0]","[-0.0002892822603109036, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_117_LVCableDist_mvgd_0_lvgd_1003_119,"[0.012715434409812723, 4.304039194947431e-14]","[-0.012711141771226599, -4.304039194947427e-14]","[0.0031910086699889766, -6.799219909774266e-15]","[-0.0031889035817007144, 6.799219909774291e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_119_LVCableDist_mvgd_0_lvgd_1003_120,"[0.0011542961145931394, 0.0]","[-0.0011542497693614042, 0.0]","[0.0002892910158093842, 0.0]","[-0.0002892822604827298, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_119_LVCableDist_mvgd_0_lvgd_1003_121,"[0.011556845656796284, 5.023401648601573e-14]","[-0.011553297204117918, -5.023401648601568e-14]","[0.002899612565494071, -1.0320185134435953e-14]","[-0.0028978724222174317, 1.032018513443598e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_11_LVCableDist_mvgd_0_lvgd_1003_12,"[0.0011542960171949481, 0.0]","[-0.001154249769386182, 0.0]","[0.0002892909974183779, 0.0]","[-0.0002892822604964199, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_11_LVCableDist_mvgd_0_lvgd_1003_9,"[0.0011543728001605314, -3.5740581551880265e-15]","[-0.0011542960169996011, 3.574058155188027e-15]","[0.0002893286519597674, -9.257495323308747e-16]","[-0.0002892909978853403, 9.257495323308751e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_121_LVCableDist_mvgd_0_lvgd_1003_122,"[0.0011543394277547282, 0.0]","[-0.0011542497693660923, 0.0]","[0.000289291054373127, 0.0]","[-0.00028928226029402513, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_121_LVCableDist_mvgd_0_lvgd_1003_123,"[0.010398957776549875, 2.1580873609624363e-14]","[-0.010396082950040833, -2.1580873609624348e-14]","[0.0026085813672341177, -1.0562895673984988e-14]","[-0.0026071715668296467, 1.0562895673984993e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_123_LVCableDist_mvgd_0_lvgd_1003_124,"[0.0011542961717735268, 0.0]","[-0.0011542497693515172, 0.0]","[0.0002892910266061187, 0.0]","[-0.0002892822604753424, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_123_LVCableDist_mvgd_0_lvgd_1003_125,"[0.009241786778438645, 2.155053479218072e-14]","[-0.00923951488358797, -2.1550534792180712e-14]","[0.002317880539776175, -6.98125281443608e-15]","[-0.0023167664140126454, 6.981252814436087e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_125_LVCableDist_mvgd_0_lvgd_1003_126,"[0.001154339526774533, 0.0]","[-0.0011542497693548775, 0.0]","[0.0002892910640737757, 0.0]","[-0.00028928226028128684, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_125_LVCableDist_mvgd_0_lvgd_1003_127,"[0.008085175357036027, 1.4387249073082888e-14]","[-0.0080834356637508, -1.4387249073082885e-14]","[0.0020274753492734625, -7.041930449323331e-15]","[-0.0020266222124704384, 7.0419304493233336e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_127_LVCableDist_mvgd_0_lvgd_1003_128,"[0.0011542962170007114, 0.0]","[-0.0011542497693461122, 0.0]","[0.0002892910351468771, 0.0]","[-0.00028928226047096936, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_127_LVCableDist_mvgd_0_lvgd_1003_129,"[0.006929139446940288, 0.0]","[-0.006927861118496348, 0.0]","[0.0017373311768257686, 0.0]","[-0.0017367042910113903, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_129_LVCableDist_mvgd_0_lvgd_1003_130,"[0.0011543396026219154, 0.0]","[-0.0011542497693507185, 0.0]","[0.00028929107150309566, 0.0]","[-0.0002892822602707625, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_129_LVCableDist_mvgd_0_lvgd_1003_131,"[0.00577352151611273, -7.193624536541442e-15]","[-0.005772633688505531, 7.193624536541442e-15]","[0.0014474132188021032, 3.5209652246616668e-15]","[-0.001446977832626348, -3.5209652246616664e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_131_LVCableDist_mvgd_0_lvgd_1003_132,"[0.0011542962502080097, 0.0]","[-0.0011542497693365563, 0.0]","[0.00028929104141594116, 0.0]","[-0.0002892822604648591, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_131_LVCableDist_mvgd_0_lvgd_1003_133,"[0.004618337438524274, 0.0]","[-0.0046177691694226685, 0.0]","[0.0011576867906753477, 0.0]","[-0.0011574081143772218, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_133_LVCableDist_mvgd_0_lvgd_1003_134,"[0.001154339655191551, 0.0]","[-0.0011542497693457412, 0.0]","[0.00028929107665231867, 0.0]","[-0.0002892822602632421, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_133_LVCableDist_mvgd_0_lvgd_1003_135,"[0.00346342951447539, 1.432657143819564e-14]","[-0.003463109842625876, -1.4326571438195638e-14]","[0.0008681170369950016, 1.2135526977448797e-16]","[-0.0008679602715340858, -1.2135526977448676e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_135_LVCableDist_mvgd_0_lvgd_1003_136,"[0.001154296271363126, 0.0]","[-0.001154249769333261, 0.0]","[0.0002892910454112873, 0.0]","[-0.00028928226046305604, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_135_LVCableDist_mvgd_0_lvgd_1003_137,"[0.0023088135714682476, 7.163285719097819e-15]","[-0.0023086714857156188, -7.163285719097817e-15]","[0.0005786692255730541, 6.067763488724338e-17]","[-0.0005785995474373837, -6.067763488724277e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1003_137_LVCableDist_mvgd_0_lvgd_1003_138,"[0.001154339684418491, 0.0]","[-0.001154249769342644, 0.0]","[0.00028929107951535167, 0.0]","[-0.00028928226025926783, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_137_LVCableDist_mvgd_0_lvgd_1003_139,"[0.00115433180154385, 0.0]","[-0.0011542962802077554, 0.0]","[0.0002893084671645857, 0.0]","[-0.00028929104768071913, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_139_LVCableDist_mvgd_0_lvgd_1003_140,"[0.0011542962804405852, 0.0]","[-0.001154249769337988, 0.0]","[0.0002892910471249323, 0.0]","[-0.00028928226046272243, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_13_LVCableDist_mvgd_0_lvgd_1003_14,"[0.0011542959522672415, 0.0]","[-0.0011542497693963099, 0.0]","[0.00028929098516050796, 0.0]","[-0.00028928226050630503, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_13_LVCableDist_mvgd_0_lvgd_1003_15,"[0.0046195732711031105, 1.60946387548875e-14]","[-0.004618345128889752, -1.609463875488749e-14]","[0.001158293416072995, 2.8227568231580973e-15]","[-0.0011576911413326955, -2.8227568231580906e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_13_LVStation_mvgd_0_lvgd_1003,"[0.005775787777613982, 1.2528165304060392e-14]","[-0.005773869223204039, -1.2528165304060383e-14]","[0.0014485252510390838, 1.0015965759399887e-15]","[-0.0014475844016436034, -1.0015965759399845e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_141_LVCableDist_mvgd_0_lvgd_1003_142,"[0.0011542959646769582, 0.0]","[-0.001154249769390983, 0.0]","[0.00028929098750215263, 0.0]","[-0.00028928226050255727, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_141_LVCableDist_mvgd_0_lvgd_1003_143,"[0.016196456409067857, 2.8258738249624104e-14]","[-0.016189508657259565, -2.8258738249624034e-14]","[0.0040677321415891286, 4.6804067713685376e-14]","[-0.004064324999182903, -4.680406771368533e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_141_LVStation_mvgd_0_lvgd_1003,"[0.017358725592619997, 3.539168515127842e-14]","[-0.017350752373604946, -3.5391685151278336e-14]","[0.004360933155705327, 5.044638820812165e-14]","[-0.004357023129358689, -5.044638820812161e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_143_LVCableDist_mvgd_0_lvgd_1003_144,"[0.0011543391607179649, 0.0]","[-0.0011542497693928164, 0.0]","[0.0002892910282134879, 0.0]","[-0.00028928226032911777, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_143_LVCableDist_mvgd_0_lvgd_1003_145,"[0.015035169496650628, 2.8289077067067683e-14]","[-0.015029177101171659, -2.8289077067067623e-14]","[0.0037750339705039655, 4.3222424854136397e-14]","[-0.003772095330017855, -4.322242485413637e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_145_LVCableDist_mvgd_0_lvgd_1003_146,"[0.0011542960455401799, 0.0]","[-0.0011542497693831817, 0.0]","[0.0002892910027695628, 0.0]","[-0.00028928226049218807, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_145_LVCableDist_mvgd_0_lvgd_1003_147,"[0.01387488105579994, 4.267632614015065e-14]","[-0.013869773715377662, -4.267632614015057e-14]","[0.0034828043269110407, 3.6180494404813114e-14]","[-0.003480299712955918, -3.618049440481309e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_147_LVCableDist_mvgd_0_lvgd_1003_148,"[0.0011543393056813083, 0.0]","[-0.0011542497693762086, 0.0]","[0.00028929104241486525, 0.0]","[-0.00028928226031023997, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_147_LVCableDist_mvgd_0_lvgd_1003_149,"[0.012715434409833606, 2.8380093519398525e-14]","[-0.012711141771247469, -2.838009351939848e-14]","[0.003191008669995155, 3.2477496275489546e-14]","[-0.003188903581706886, -3.247749627548953e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_149_LVCableDist_mvgd_0_lvgd_1003_150,"[0.0011542961145966117, 0.0]","[-0.0011542497693648765, 0.0]","[0.0002892910158101281, 0.0]","[-0.0002892822604834738, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_149_LVCableDist_mvgd_0_lvgd_1003_151,"[0.011556845656817272, 2.831941588451117e-14]","[-0.011553297204138892, -2.8319415884511117e-14]","[0.0028996125655036944, 3.9640781994587367e-14]","[-0.002897872422227048, -3.964078199458734e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_151_LVCableDist_mvgd_0_lvgd_1003_152,"[0.0011543394277616604, 0.0]","[-0.0011542497693730238, 0.0]","[0.000289291054374186, 0.0]","[-0.000289282260295084, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_151_LVCableDist_mvgd_0_lvgd_1003_153,"[0.010398957776570626, 2.1186468982856942e-14]","[-0.010396082950061574, -2.11864689828569e-14]","[0.0026085813672368434, 3.599846150015111e-14]","[-0.0026071715668323663, -3.599846150015109e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_153_LVCableDist_mvgd_0_lvgd_1003_154,"[0.0011542961717735207, 0.0]","[-0.001154249769351511, 0.0]","[0.0002892910266061149, 0.0]","[-0.0002892822604753386, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_153_LVCableDist_mvgd_0_lvgd_1003_155,"[0.009241786778452495, 2.121680780030056e-14]","[-0.009239514883601812, -2.1216807800300525e-14]","[0.00231788053977913, 3.241681864060218e-14]","[-0.0023167664140155953, -3.241681864060216e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_155_LVCableDist_mvgd_0_lvgd_1003_156,"[0.001154339526771081, 0.0]","[-0.0011542497693514263, 0.0]","[0.00028929106407388704, 0.0]","[-0.00028928226028139824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_155_LVCableDist_mvgd_0_lvgd_1003_157,"[0.008085175357049763, 2.8410432336842007e-14]","[-0.008083435663764531, -2.8410432336841966e-14]","[0.002027475349272971, 2.889585341594057e-14]","[-0.0020266222124699453, -2.889585341594055e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_157_LVCableDist_mvgd_0_lvgd_1003_158,"[0.0011542962169971732, 0.0]","[-0.0011542497693425742, 0.0]","[0.0002892910351444049, 0.0]","[-0.00028928226046849717, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_157_LVCableDist_mvgd_0_lvgd_1003_159,"[0.006929139446967918, 2.844077115428563e-14]","[-0.006927861118523969, -2.8440771154285596e-14]","[0.0017373311768282614, 2.531421055639164e-14]","[-0.0017367042910138794, -2.5314210556391628e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_159_LVCableDist_mvgd_0_lvgd_1003_160,"[0.0011543396026219078, 0.0]","[-0.001154249769350711, 0.0]","[0.00028929107150309083, 0.0]","[-0.00028928226027075777, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_159_LVCableDist_mvgd_0_lvgd_1003_161,"[0.0057735215161195804, 1.4174877350977303e-14]","[-0.005772633688512378, -1.4174877350977292e-14]","[0.0014474132188018476, 1.802956956751917e-14]","[-0.001446977832626091, -1.8029569567519168e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_15_LVCableDist_mvgd_0_lvgd_1003_16,"[0.0011543391058864228, 0.0]","[-0.0011542497693977612, 0.0]","[0.00028929102284209015, 0.0]","[-0.0002892822603363177, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_15_LVCableDist_mvgd_0_lvgd_1003_17,"[0.0034640060231893735, 8.954107148872345e-15]","[-0.0034633150880269046, -8.95410714887234e-15]","[0.00086840011789499, 7.584704360910416e-17]","[-0.0008680612867799821, -7.58470436091025e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1003_161_LVCableDist_mvgd_0_lvgd_1003_162,"[0.0011542962502080307, 0.0]","[-0.0011542497693365773, 0.0]","[0.00028929104141679686, 0.0]","[-0.00028928226046571483, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_161_LVCableDist_mvgd_0_lvgd_1003_163,"[0.0046183374385317085, -1.44175878905266e-14]","[-0.0046177691694301, 1.441758789052661e-14]","[0.0011576867906923122, 1.0623573308872052e-14]","[-0.001157408114394185, -1.0623573308872047e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_163_LVCableDist_mvgd_0_lvgd_1003_164,"[0.0011543396551846425, 0.0]","[-0.0011542497693388335, 0.0]","[0.0002892910766521153, 0.0]","[-0.00028928226026303874, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_163_LVCableDist_mvgd_0_lvgd_1003_165,"[0.003463429514454707, -1.441758789052661e-14]","[-0.003463109842605197, 1.4417587890526616e-14]","[0.0008681170369956826, 1.0623573308872047e-14]","[-0.0008679602715347686, -1.0623573308872046e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_165_LVCableDist_mvgd_0_lvgd_1003_166,"[0.00115429627136306, 0.0]","[-0.0011542497693331948, 0.0]","[0.0002892910454095616, 0.0]","[-0.0002892822604613303, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_165_LVCableDist_mvgd_0_lvgd_1003_167,"[0.0023088135714683477, 0.0]","[-0.002308671485715719, 0.0]","[0.0005786692255764879, 0.0]","[-0.0005785995474408175, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_167_LVCableDist_mvgd_0_lvgd_1003_168,"[0.0011543396844115985, 0.0]","[-0.0011542497693357524, 0.0]","[0.0002892910795155795, 0.0]","[-0.0002892822602594957, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_167_LVCableDist_mvgd_0_lvgd_1003_169,"[0.0011543318015300725, 7.132946901654142e-15]","[-0.0011542962801939789, -7.13294690165414e-15]","[0.0002893084671650456, 3.642320494436238e-15]","[-0.00028929104768117943, -3.642320494436237e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_169_LVCableDist_mvgd_0_lvgd_1003_170,"[0.0011542962804370776, 0.0]","[-0.0011542497693344804, 0.0]","[0.0002892910471233233, 0.0]","[-0.0002892822604611136, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_171_LVCableDist_mvgd_0_lvgd_1003_172,"[0.0011542959646769582, 0.0]","[-0.001154249769390983, 0.0]","[0.00028929098750215263, 0.0]","[-0.00028928226050255727, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_171_LVCableDist_mvgd_0_lvgd_1003_173,"[0.016196456409067857, 7.163285719097872e-14]","[-0.016189508657259565, -7.16328571909786e-14]","[0.0040677321415891286, 6.067763488728144e-16]","[-0.004064324999182903, -6.067763488727492e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_171_LVStation_mvgd_0_lvgd_1003,"[0.017358725592619997, 8.592908981173099e-14]","[-0.017350752373604946, -8.592908981173084e-14]","[0.004360933155705327, 4.309774478196391e-15]","[-0.004357023129358689, -4.3097744781963135e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_173_LVCableDist_mvgd_0_lvgd_1003_174,"[0.0011543391607179649, 0.0]","[-0.0011542497693928164, 0.0]","[0.0002892910282134879, 0.0]","[-0.00028928226032911777, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_173_LVCableDist_mvgd_0_lvgd_1003_175,"[0.015035169496650628, 7.166319600842223e-14]","[-0.015029177101171659, -7.166319600842212e-14]","[0.0037750339705039655, -2.9748665106761808e-15]","[-0.003772095330017855, 2.9748665106762337e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_175_LVCableDist_mvgd_0_lvgd_1003_176,"[0.0011542960455401799, 0.0]","[-0.0011542497693831817, 0.0]","[0.0002892910027695628, 0.0]","[-0.00028928226049218807, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_175_LVCableDist_mvgd_0_lvgd_1003_177,"[0.01387488105579994, 5.0264355303459483e-14]","[-0.013869773715377662, -5.0264355303459414e-14]","[0.0034828043269110407, -1.3901827993984814e-14]","[-0.003480299712955918, 1.3901827993984844e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_177_LVCableDist_mvgd_0_lvgd_1003_178,"[0.0011543393056813083, 0.0]","[-0.0011542497693762086, 0.0]","[0.00028929104241486525, 0.0]","[-0.00028928226031023997, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_177_LVCableDist_mvgd_0_lvgd_1003_179,"[0.012715434409833606, 4.304039194947431e-14]","[-0.012711141771247469, -4.304039194947427e-14]","[0.003191008669995155, -6.799219909774266e-15]","[-0.003188903581706886, 6.799219909774291e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_179_LVCableDist_mvgd_0_lvgd_1003_180,"[0.0011542961145966117, 0.0]","[-0.0011542497693648765, 0.0]","[0.0002892910158101281, 0.0]","[-0.0002892822604834738, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_179_LVCableDist_mvgd_0_lvgd_1003_181,"[0.011556845656817272, 5.023401648601573e-14]","[-0.011553297204138892, -5.023401648601568e-14]","[0.0028996125655036944, -1.0320185134435953e-14]","[-0.002897872422227048, 1.032018513443598e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_17_LVCableDist_mvgd_0_lvgd_1003_18,"[0.0011542959976915278, 0.0]","[-0.0011542497693798957, 0.0]","[0.00028929099373724293, 0.0]","[-0.00028928226049859326, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_17_LVCableDist_mvgd_0_lvgd_1003_19,"[0.0023090190905089426, 1.51694087218205e-17]","[-0.0023087119686447917, -1.5169408721820326e-17]","[0.0005787702925945567, -1.790821429774468e-15]","[-0.0005786196815830956, 1.790821429774468e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_181_LVCableDist_mvgd_0_lvgd_1003_182,"[0.0011543394277616604, 0.0]","[-0.0011542497693730238, 0.0]","[0.000289291054374186, 0.0]","[-0.000289282260295084, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_181_LVCableDist_mvgd_0_lvgd_1003_183,"[0.010398957776570626, 2.1580873609624363e-14]","[-0.010396082950061574, -2.1580873609624348e-14]","[0.0026085813672368434, -1.0562895673984988e-14]","[-0.0026071715668323663, 1.0562895673984993e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_183_LVCableDist_mvgd_0_lvgd_1003_184,"[0.0011542961717735207, 0.0]","[-0.001154249769351511, 0.0]","[0.0002892910266061149, 0.0]","[-0.0002892822604753386, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_183_LVCableDist_mvgd_0_lvgd_1003_185,"[0.009241786778452495, 2.155053479218072e-14]","[-0.009239514883601812, -2.1550534792180712e-14]","[0.00231788053977913, -6.98125281443608e-15]","[-0.0023167664140155953, 6.981252814436087e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_185_LVCableDist_mvgd_0_lvgd_1003_186,"[0.001154339526771081, 0.0]","[-0.0011542497693514263, 0.0]","[0.00028929106407388704, 0.0]","[-0.00028928226028139824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_185_LVCableDist_mvgd_0_lvgd_1003_187,"[0.008085175357049763, 1.4387249073082888e-14]","[-0.008083435663764531, -1.4387249073082885e-14]","[0.002027475349272971, -7.041930449323331e-15]","[-0.0020266222124699453, 7.0419304493233336e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_187_LVCableDist_mvgd_0_lvgd_1003_188,"[0.0011542962169971732, 0.0]","[-0.0011542497693425742, 0.0]","[0.0002892910351444049, 0.0]","[-0.00028928226046849717, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_187_LVCableDist_mvgd_0_lvgd_1003_189,"[0.006929139446967918, 0.0]","[-0.006927861118523969, 0.0]","[0.0017373311768282614, 0.0]","[-0.0017367042910138794, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_189_LVCableDist_mvgd_0_lvgd_1003_190,"[0.0011543396026219078, 0.0]","[-0.001154249769350711, 0.0]","[0.00028929107150309083, 0.0]","[-0.00028928226027075777, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_189_LVCableDist_mvgd_0_lvgd_1003_191,"[0.0057735215161195804, -7.193624536541442e-15]","[-0.005772633688512378, 7.193624536541442e-15]","[0.0014474132188018476, 3.5209652246616668e-15]","[-0.001446977832626091, -3.5209652246616664e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_191_LVCableDist_mvgd_0_lvgd_1003_192,"[0.0011542962502080307, 0.0]","[-0.0011542497693365773, 0.0]","[0.00028929104141679686, 0.0]","[-0.00028928226046571483, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_191_LVCableDist_mvgd_0_lvgd_1003_193,"[0.0046183374385317085, 0.0]","[-0.0046177691694301, 0.0]","[0.0011576867906923122, 0.0]","[-0.001157408114394185, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_193_LVCableDist_mvgd_0_lvgd_1003_194,"[0.0011543396551846425, 0.0]","[-0.0011542497693388335, 0.0]","[0.0002892910766521153, 0.0]","[-0.00028928226026303874, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_193_LVCableDist_mvgd_0_lvgd_1003_195,"[0.003463429514454707, 1.432657143819564e-14]","[-0.003463109842605197, -1.4326571438195638e-14]","[0.0008681170369956826, 1.2135526977448797e-16]","[-0.0008679602715347686, -1.2135526977448676e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_195_LVCableDist_mvgd_0_lvgd_1003_196,"[0.00115429627136306, 0.0]","[-0.0011542497693331948, 0.0]","[0.0002892910454095616, 0.0]","[-0.0002892822604613303, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_195_LVCableDist_mvgd_0_lvgd_1003_197,"[0.0023088135714683477, 7.163285719097819e-15]","[-0.002308671485715719, -7.163285719097817e-15]","[0.0005786692255764879, 6.067763488724338e-17]","[-0.0005785995474408175, -6.067763488724277e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1003_197_LVCableDist_mvgd_0_lvgd_1003_198,"[0.0011543396844115985, 0.0]","[-0.0011542497693357524, 0.0]","[0.0002892910795155795, 0.0]","[-0.0002892822602594957, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_197_LVCableDist_mvgd_0_lvgd_1003_199,"[0.0011543318015300725, 0.0]","[-0.0011542962801939789, 0.0]","[0.0002893084671650456, 0.0]","[-0.00028929104768117943, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_199_LVCableDist_mvgd_0_lvgd_1003_200,"[0.0011542962804370776, 0.0]","[-0.0011542497693344804, 0.0]","[0.0002892910471233233, 0.0]","[-0.0002892822604611136, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_19_LVCableDist_mvgd_0_lvgd_1003_20,"[0.0011543391686846154, 0.0]","[-0.0011542497693968594, 0.0]","[0.0002892910289937336, 0.0]","[-0.0002892822603283568, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_19_LVCableDist_mvgd_0_lvgd_1003_21,"[0.0011543728001605314, -3.5740581551880265e-15]","[-0.0011542960169996011, 3.574058155188027e-15]","[0.0002893286519597674, -9.257495323308747e-16]","[-0.0002892909978853403, 9.257495323308751e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1003_1_LVCableDist_mvgd_0_lvgd_1003_2,"[0.08328247454015246, 0.0]","[-0.08199999991171635, 0.0]","[0.020676927732040544, 0.0]","[-0.02055113712281579, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_1_LVStation_mvgd_0_lvgd_1003,"[0.08377497623203563, -1.8059908384962937e-15]","[-0.08328247445518586, 1.8059908384962937e-15]","[0.02110860781329702, 1.7756520210526499e-15]","[-0.02067692786333231, -1.7756520210526497e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_21_LVCableDist_mvgd_0_lvgd_1003_22,"[0.0011542960171949481, 0.0]","[-0.001154249769386182, 0.0]","[0.0002892909974183779, 0.0]","[-0.0002892822604964199, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_23_LVCableDist_mvgd_0_lvgd_1003_24,"[0.0011542959569717215, 0.0]","[-0.0011542497693952255, 0.0]","[0.0002892909860473437, 0.0]","[-0.0002892822605041874, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_23_LVCableDist_mvgd_0_lvgd_1003_25,"[0.011558579201622229, 1.4417587890526694e-14]","[-0.011554580284330464, -1.4417587890526685e-14]","[0.0029004634484712842, -1.0623573308872257e-14]","[-0.0028985023996227184, 1.062357330887226e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_23_LVStation_mvgd_0_lvgd_1003,"[0.012717712594298195, 2.1535365383459127e-14]","[-0.012712875158449724, -2.1535365383459114e-14]","[0.0031921266889789377, -5.190431384661553e-15]","[-0.0031897544348640067, 5.19043138466156e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_25_LVCableDist_mvgd_0_lvgd_1003_26,"[0.0011543391301185415, 0.0]","[-0.0011542497693940972, 0.0]","[0.0002892910252160921, 0.0]","[-0.0002892822603331701, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_25_LVCableDist_mvgd_0_lvgd_1003_27,"[0.010400241154387719, 1.0835945030977743e-14]","[-0.010397001293357098, -1.0835945030977737e-14]","[0.002609211373868461, -1.0653912126315901e-14]","[-0.0026076225623777377, 1.0653912126315904e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_27_LVCableDist_mvgd_0_lvgd_1003_28,"[0.0011542960211896524, 0.0]","[-0.001154249769383902, 0.0]","[0.0002892909981736556, 0.0]","[-0.00028928226049660587, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_27_LVCableDist_mvgd_0_lvgd_1003_29,"[0.009242705272344557, 7.284640988872436e-15]","[-0.009240144841160185, -7.28464098887243e-15]","[0.0023183315638129033, -1.4265893803308482e-14]","[-0.0023170759412882063, 1.4265893803308485e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_29_LVCableDist_mvgd_0_lvgd_1003_30,"[0.0011543392413443621, 0.0]","[-0.0011542497693865948, 0.0]","[0.00028929103611267514, 0.0]","[-0.00028928226031951207, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_29_LVCableDist_mvgd_0_lvgd_1003_31,"[0.008085805600013965, 1.4402418481804854e-14]","[-0.00808384492085791, -1.4402418481804848e-14]","[0.0020277849045877002, -8.832751879097802e-15]","[-0.0020268233974294232, 8.832751879097805e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_31_LVCableDist_mvgd_0_lvgd_1003_32,"[0.0011542960719900714, 0.0]","[-0.001154249769372753, 0.0]","[0.00028929100776571397, 0.0]","[-0.0002892822604895779, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_31_LVCableDist_mvgd_0_lvgd_1003_33,"[0.006929548849050156, 2.1520195974737274e-14]","[-0.006928108114216318, -2.152019597473726e-14]","[0.0017375323892259201, -3.399609954887124e-15]","[-0.0017368258601379578, 3.399609954887131e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_33_LVCableDist_mvgd_0_lvgd_1003_34,"[0.0011543393265459395, 0.0]","[-0.001154249769373031, 0.0]","[0.0002892910444595835, 0.0]","[-0.000289282260308154, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_33_LVCableDist_mvgd_0_lvgd_1003_35,"[0.0057737687878766635, 1.4372079664361202e-14]","[-0.005772768150240825, -1.4372079664361196e-14]","[0.0014475348150288034, -5.251109019548868e-15]","[-0.0014470441073846042, 5.251109019548872e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_35_LVCableDist_mvgd_0_lvgd_1003_36,"[0.0011542961093009368, 0.0]","[-0.0011542497693631949, 0.0]","[0.00028929101481174624, 0.0]","[-0.00028928226048520857, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_35_LVCableDist_mvgd_0_lvgd_1003_37,"[0.0046184720411453165, 2.153536538345907e-14]","[-0.004617831558151865, -2.1535365383459054e-14]","[0.001157753092106836, -5.190431384661606e-15]","[-0.0011574390024807711, 5.19043138466161e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_37_LVCableDist_mvgd_0_lvgd_1003_38,"[0.001154339385616823, 0.0]","[-0.0011542497693702958, 0.0]","[0.0002892910502464404, 0.0]","[-0.00028928226030081717, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_37_LVCableDist_mvgd_0_lvgd_1003_39,"[0.0034634921727472318, 1.0775267396090435e-14]","[-0.0034631318744951516, -1.0775267396090433e-14]","[0.0008681479515584373, -3.490626407218039e-15]","[-0.0008679712631148337, 3.490626407218041e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_39_LVCableDist_mvgd_0_lvgd_1003_40,"[0.0011542961330771122, 0.0]","[-0.001154249769364156, 0.0]","[0.00028929101929918546, 0.0]","[-0.00028928226048114444, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_39_LVCableDist_mvgd_0_lvgd_1003_41,"[0.0023088357416290767, 1.0790436804812248e-14]","[-0.002308675597408819, -1.0790436804812245e-14]","[0.0005786802433133031, -5.2814478369925075e-15]","[-0.0005786017093962882, 5.281447836992511e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_3_LVCableDist_mvgd_0_lvgd_1003_4,"[0.0011542959522672415, 0.0]","[-0.0011542497693963099, 0.0]","[0.00028929098516050796, 0.0]","[-0.00028928226050630503, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_3_LVCableDist_mvgd_0_lvgd_1003_5,"[0.0046195732711031105, 1.60946387548875e-14]","[-0.004618345128889752, -1.609463875488749e-14]","[0.001158293416072995, 2.8227568231580973e-15]","[-0.0011576911413326955, -2.8227568231580906e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_3_LVStation_mvgd_0_lvgd_1003,"[0.005775787777613982, 1.2528165304060392e-14]","[-0.005773869223204039, -1.2528165304060383e-14]","[0.0014485252510390838, 1.0015965759399887e-15]","[-0.0014475844016436034, -1.0015965759399845e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_41_LVCableDist_mvgd_0_lvgd_1003_42,"[0.0011543394184596063, 0.0]","[-0.0011542497693666377, 0.0]","[0.0002892910534636753, 0.0]","[-0.0002892822602963323, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_41_LVCableDist_mvgd_0_lvgd_1003_43,"[0.0011543361791572998, -7.117777492932422e-15]","[-0.0011542961430476254, 7.117777492932423e-15]","[0.0002893106552392819, -5.43314192421066e-15]","[-0.0002892910217332479, 5.4331419242106605e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_43_LVCableDist_mvgd_0_lvgd_1003_44,"[0.0011542961432687688, 0.0]","[-0.0011542497693602998, 0.0]","[0.00028929102122457473, 0.0]","[-0.00028928226048044464, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_45_LVCableDist_mvgd_0_lvgd_1003_46,"[0.0011542959569716936, 0.0]","[-0.0011542497693951975, 0.0]","[0.00028929098604648127, 0.0]","[-0.00028928226050332494, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_45_LVCableDist_mvgd_0_lvgd_1003_47,"[0.011558579201602078, 1.4417587890526694e-14]","[-0.011554580284310322, -1.4417587890526685e-14]","[0.0029004634484892508, -1.0623573308872257e-14]","[-0.002898502399640689, 1.062357330887226e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_45_LVStation_mvgd_0_lvgd_1003,"[0.012717712594267492, 2.1535365383459127e-14]","[-0.01271287515841904, -2.1535365383459114e-14]","[0.0031921266889920552, -5.190431384661553e-15]","[-0.0031897544348771347, 5.19043138466156e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_47_LVCableDist_mvgd_0_lvgd_1003_48,"[0.0011543391301185421, 0.0]","[-0.001154249769394098, 0.0]","[0.00028929102521609414, 0.0]","[-0.00028928226033317215, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_47_LVCableDist_mvgd_0_lvgd_1003_49,"[0.010400241154367464, 1.0835945030977743e-14]","[-0.010397001293336854, -1.0835945030977737e-14]","[0.002609211373882977, -1.0653912126315901e-14]","[-0.002607622562392258, 1.0653912126315904e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_49_LVCableDist_mvgd_0_lvgd_1003_50,"[0.0011542960211861444, 0.0]","[-0.0011542497693803942, 0.0]","[0.00028929099817204696, 0.0]","[-0.0002892822604949973, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_49_LVCableDist_mvgd_0_lvgd_1003_51,"[0.009242705272324195, 7.284640988872436e-15]","[-0.009240144841139834, -7.28464098887243e-15]","[0.002318331563823969, -1.4265893803308482e-14]","[-0.0023170759412992764, 1.4265893803308485e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_51_LVCableDist_mvgd_0_lvgd_1003_52,"[0.0011543392413374473, 0.0]","[-0.0011542497693796806, 0.0]","[0.00028929103611247657, 0.0]","[-0.00028928226031931344, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_51_LVCableDist_mvgd_0_lvgd_1003_53,"[0.008085805599993383, 1.4402418481804854e-14]","[-0.008083844920837335, -1.4402418481804848e-14]","[0.002027784904591865, -8.832751879097802e-15]","[-0.0020268233974335926, 8.832751879097805e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_53_LVCableDist_mvgd_0_lvgd_1003_54,"[0.0011542960719935233, 0.0]","[-0.0011542497693762047, 0.0]","[0.00028929100776560376, 0.0]","[-0.0002892822604894677, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_53_LVCableDist_mvgd_0_lvgd_1003_55,"[0.006929548849046659, 2.1520195974737274e-14]","[-0.006928108114212823, -2.152019597473726e-14]","[0.0017375323892243365, -3.399609954887124e-15]","[-0.0017368258601363755, 3.399609954887131e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_55_LVCableDist_mvgd_0_lvgd_1003_56,"[0.0011543393265459844, 0.0]","[-0.0011542497693730759, 0.0]","[0.00028929104446088154, 0.0]","[-0.000289282260309452, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_55_LVCableDist_mvgd_0_lvgd_1003_57,"[0.005773768787863105, 1.4372079664361202e-14]","[-0.005772768150227272, -1.4372079664361196e-14]","[0.001447534815036184, -5.251109019548868e-15]","[-0.0014470441073919866, 5.251109019548872e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_57_LVCableDist_mvgd_0_lvgd_1003_58,"[0.0011542961093009105, 0.0]","[-0.0011542497693631684, 0.0]","[0.0002892910148108892, 0.0]","[-0.00028928226048435156, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_57_LVCableDist_mvgd_0_lvgd_1003_59,"[0.004618472041131244, 2.153536538345907e-14]","[-0.004617831558137796, -2.1535365383459054e-14]","[0.0011577530920986944, -5.190431384661606e-15]","[-0.0011574390024726318, 5.19043138466161e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_59_LVCableDist_mvgd_0_lvgd_1003_60,"[0.001154339385620274, 0.0]","[-0.0011542497693737466, 0.0]","[0.0002892910502463306, 0.0]","[-0.0002892822603007074, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_59_LVCableDist_mvgd_0_lvgd_1003_61,"[0.003463492172733218, 1.0775267396090435e-14]","[-0.00346313187448114, -1.0775267396090433e-14]","[0.0008681479515520169, -3.490626407218039e-15]","[-0.0008679712631084145, 3.490626407218041e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_5_LVCableDist_mvgd_0_lvgd_1003_6,"[0.0011543391058864228, 0.0]","[-0.0011542497693977612, 0.0]","[0.00028929102284209015, 0.0]","[-0.0002892822603363177, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_5_LVCableDist_mvgd_0_lvgd_1003_7,"[0.0034640060231893735, 8.954107148872345e-15]","[-0.0034633150880269046, -8.95410714887234e-15]","[0.00086840011789499, 7.584704360910416e-17]","[-0.0008680612867799821, -7.58470436091025e-17]" +Branch_LVCableDist_mvgd_0_lvgd_1003_61_LVCableDist_mvgd_0_lvgd_1003_62,"[0.0011542961330736966, 0.0]","[-0.0011542497693607405, 0.0]","[0.0002892910193001678, 0.0]","[-0.0002892822604821268, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_61_LVCableDist_mvgd_0_lvgd_1003_63,"[0.002308835741622188, 1.0790436804812248e-14]","[-0.002308675597401931, -1.0790436804812245e-14]","[0.000578680243313544, -5.2814478369925075e-15]","[-0.0005786017093965294, 5.281447836992511e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_63_LVCableDist_mvgd_0_lvgd_1003_64,"[0.0011543394184630714, 0.0]","[-0.0011542497693701026, 0.0]","[0.0002892910534639965, 0.0]","[-0.00028928226029665345, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_63_LVCableDist_mvgd_0_lvgd_1003_65,"[0.0011543361791677607, -7.117777492932422e-15]","[-0.001154296143058086, 7.117777492932423e-15]","[0.0002893106552423895, -5.43314192421066e-15]","[-0.0002892910217363551, 5.4331419242106605e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_65_LVCableDist_mvgd_0_lvgd_1003_66,"[0.0011542961432688004, 0.0]","[-0.0011542497693603317, 0.0]","[0.0002892910212254419, 0.0]","[-0.00028928226048131173, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_67_LVCableDist_mvgd_0_lvgd_1003_68,"[0.0011542959569716936, 0.0]","[-0.0011542497693951975, 0.0]","[0.00028929098604648127, 0.0]","[-0.00028928226050332494, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_67_LVCableDist_mvgd_0_lvgd_1003_69,"[0.011558579201602078, -1.7862706071579258e-14]","[-0.011554580284310322, 1.786270607157927e-14]","[0.0029004634484892508, -5.5241583765416375e-15]","[-0.002898502399640689, 5.524158376541642e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_67_LVStation_mvgd_0_lvgd_1003,"[0.012717712594267492, -1.7877875480301073e-14]","[-0.01271287515841904, 1.787787548030108e-14]","[0.0031921266889920552, -3.733336946767162e-15]","[-0.0031897544348771347, 3.733336946767165e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_69_LVCableDist_mvgd_0_lvgd_1003_70,"[0.0011543391301185421, 0.0]","[-0.001154249769394098, 0.0]","[0.00028929102521609414, 0.0]","[-0.00028928226033317215, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_69_LVCableDist_mvgd_0_lvgd_1003_71,"[0.010400241154367464, -1.7893044889022916e-14]","[-0.010397001293336854, 1.7893044889022922e-14]","[0.002609211373882977, -1.9425155169926957e-15]","[-0.002607622562392258, 1.942515516992699e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_71_LVCableDist_mvgd_0_lvgd_1003_72,"[0.0011542960211861444, 0.0]","[-0.0011542497693803942, 0.0]","[0.00028929099817204696, 0.0]","[-0.0002892822604949973, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_71_LVCableDist_mvgd_0_lvgd_1003_73,"[0.009242705272324195, -2.5056330608120822e-14]","[-0.009240144841139834, 2.5056330608120834e-14]","[0.002318331563823969, -2.0031931518799888e-15]","[-0.0023170759412992764, 2.003193151879996e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_73_LVCableDist_mvgd_0_lvgd_1003_74,"[0.0011543392413374473, 0.0]","[-0.0011542497693796806, 0.0]","[0.00028929103611247657, 0.0]","[-0.00028928226031931344, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_73_LVCableDist_mvgd_0_lvgd_1003_75,"[0.008085805599993383, -1.7847536662857465e-14]","[-0.008083844920837335, 1.7847536662857478e-14]","[0.002027784904591865, -7.314979806316132e-15]","[-0.0020268233974335926, 7.314979806316138e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_75_LVCableDist_mvgd_0_lvgd_1003_76,"[0.0011542960719935233, 0.0]","[-0.0011542497693762047, 0.0]","[0.00028929100776560376, 0.0]","[-0.0002892822604894677, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_75_LVCableDist_mvgd_0_lvgd_1003_77,"[0.006929548849046659, -2.1520195974737366e-14]","[-0.006928108114212823, 2.152019597473738e-14]","[0.0017375323892243365, 3.399609954887076e-15]","[-0.0017368258601363755, -3.3996099548870707e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_77_LVCableDist_mvgd_0_lvgd_1003_78,"[0.0011543393265459844, 0.0]","[-0.0011542497693730759, 0.0]","[0.00028929104446088154, 0.0]","[-0.000289282260309452, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_77_LVCableDist_mvgd_0_lvgd_1003_79,"[0.005773768787863105, -2.8698651102557115e-14]","[-0.005772768150227272, 2.8698651102557134e-14]","[0.001447534815036184, 5.1297537497742535e-15]","[-0.0014470441073919866, -5.129753749774243e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_79_LVCableDist_mvgd_0_lvgd_1003_80,"[0.0011542961093009105, 0.0]","[-0.0011542497693631684, 0.0]","[0.0002892910148108892, 0.0]","[-0.00028928226048435156, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_79_LVCableDist_mvgd_0_lvgd_1003_81,"[0.004618472041131244, -1.7923383706466612e-14]","[-0.004617831558137796, 1.7923383706466622e-14]","[0.0011577530920986944, 1.6391273425562331e-15]","[-0.0011574390024726318, -1.639127342556228e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_7_LVCableDist_mvgd_0_lvgd_1003_8,"[0.0011542959976915278, 0.0]","[-0.0011542497693798957, 0.0]","[0.00028929099373724293, 0.0]","[-0.00028928226049859326, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_7_LVCableDist_mvgd_0_lvgd_1003_9,"[0.0023090190905089426, 1.51694087218205e-17]","[-0.0023087119686447917, -1.5169408721820326e-17]","[0.0005787702925945567, -1.790821429774468e-15]","[-0.0005786196815830956, 1.790821429774468e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_81_LVCableDist_mvgd_0_lvgd_1003_82,"[0.001154339385620274, 0.0]","[-0.0011542497693737466, 0.0]","[0.0002892910502463306, 0.0]","[-0.0002892822603007074, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_81_LVCableDist_mvgd_0_lvgd_1003_83,"[0.003463492172733218, -1.4356910255639485e-14]","[-0.00346313187448114, 1.4356910255639495e-14]","[0.0008681479515520169, 3.460287589774358e-15]","[-0.0008679712631084145, -3.4602875897743547e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_83_LVCableDist_mvgd_0_lvgd_1003_84,"[0.0011542961330736966, 0.0]","[-0.0011542497693607405, 0.0]","[0.0002892910193001678, 0.0]","[-0.0002892822604821268, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_83_LVCableDist_mvgd_0_lvgd_1003_85,"[0.002308835741622188, -1.4387249073083147e-14]","[-0.002308675597401931, 1.438724907308315e-14]","[0.000578680243313544, 7.0419304493233155e-15]","[-0.0005786017093965294, -7.041930449323312e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_85_LVCableDist_mvgd_0_lvgd_1003_86,"[0.0011543394184630714, 0.0]","[-0.0011542497693701026, 0.0]","[0.0002892910534639965, 0.0]","[-0.00028928226029665345, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_85_LVCableDist_mvgd_0_lvgd_1003_87,"[0.0011543361791677607, -3.033881744365266e-17]","[-0.001154296143058086, 3.033881744365317e-17]","[0.0002893106552423895, 3.5816428595489615e-15]","[-0.0002892910217363551, -3.5816428595489615e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_87_LVCableDist_mvgd_0_lvgd_1003_88,"[0.0011542961432688004, 0.0]","[-0.0011542497693603317, 0.0]","[0.0002892910212254419, 0.0]","[-0.00028928226048131173, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_89_LVCableDist_mvgd_0_lvgd_1003_90,"[0.0011542959569716938, 0.0]","[-0.0011542497693951977, 0.0]","[0.00028929098604648106, 0.0]","[-0.0002892822605033247, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_89_LVCableDist_mvgd_0_lvgd_1003_91,"[0.011558579201601683, -2.1398840704962746e-14]","[-0.011554580284309928, 2.1398840704962758e-14]","[0.002900463448477158, -1.0926961483308699e-14]","[-0.002898502399628598, 1.0926961483308705e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_89_LVStation_mvgd_0_lvgd_1003,"[0.012717712594267207, -1.7832367254135606e-14]","[-0.012712875158418757, 1.783236725413562e-14]","[0.003192126688983416, -9.105801236090576e-15]","[-0.0031897544348684958, 9.105801236090581e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_91_LVCableDist_mvgd_0_lvgd_1003_92,"[0.0011543391301185712, 0.0]","[-0.001154249769394127, 0.0]","[0.0002892910252169569, 0.0]","[-0.00028928226033403485, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_91_LVCableDist_mvgd_0_lvgd_1003_93,"[0.010400241154367126, -1.4250724394586683e-14]","[-0.010397001293336516, 1.425072439458669e-14]","[0.0026092113738726127, -9.075462418646945e-15]","[-0.0026076225623818954, 9.075462418646946e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_93_LVCableDist_mvgd_0_lvgd_1003_94,"[0.001154296021189654, 0.0]","[-0.0011542497693839038, 0.0]","[0.00028929099817365787, 0.0]","[-0.0002892822604966081, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_93_LVCableDist_mvgd_0_lvgd_1003_95,"[0.009242705272327366, -1.0638742717594097e-14]","[-0.009240144841143006, 1.0638742717594105e-14]","[0.0023183315638152188, -1.2626766460752255e-14]","[-0.002317075941290526, 1.2626766460752257e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1003_95_LVCableDist_mvgd_0_lvgd_1003_96,"[0.0011543392413443645, 0.0]","[-0.0011542497693865972, 0.0]","[0.00028929103611267785, 0.0]","[-0.0002892822603195148, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_95_LVCableDist_mvgd_0_lvgd_1003_97,"[0.008085805599986203, -3.520965224661666e-15]","[-0.008083844920830158, 3.520965224661668e-15]","[0.0020277849045834593, -7.193624536541545e-15]","[-0.0020268233974251875, 7.193624536541547e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1003_97_LVCableDist_mvgd_0_lvgd_1003_98,"[0.0011542960719935534, 0.0]","[-0.0011542497693762346, 0.0]","[0.00028929100776646494, 0.0]","[-0.00028928226049032893, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1003_97_LVCableDist_mvgd_0_lvgd_1003_99,"[0.0069295488490465525, -7.148116310376083e-15]","[-0.006928108114212717, 7.148116310376084e-15]","[0.0017375323892208786, -1.85149906466176e-15]","[-0.0017368258601329184, 1.851499064661761e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_100_LVCableDist_mvgd_0_lvgd_1004_99,"[0.0008172457059894705, 0.0]","[-0.0008172004752275341, 0.0]","[0.00020481418120418777, 0.0]","[-0.00020480974477716333, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_101_LVCableDist_mvgd_0_lvgd_1004_102,"[0.0008172238809546407, 0.0]","[-0.0008172004752233919, 0.0]","[0.00020481416656637787, 0.0]","[-0.00020480974486397199, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_101_LVCableDist_mvgd_0_lvgd_1004_103,"[0.016367079647514975, -9.947598300641302e-14]","[-0.016363961807407887, 9.947598300641319e-14]","[0.004107259593528593, 7.815970093359293e-14]","[-0.004105730620482661, -7.815970093359285e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_101_LVCableDist_mvgd_0_lvgd_1004_99,"[0.01718774046999199, -9.947598300641285e-14]","[-0.017184303528388338, 9.947598300641302e-14]","[0.0043137592190675604, 7.815970093359301e-14]","[-0.0043120737602589205, -7.815970093359293e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_103_LVCableDist_mvgd_0_lvgd_1004_104,"[0.0008172457433273639, 0.0]","[-0.0008172004752241524, 0.0]","[0.0002048141848613974, 0.0]","[-0.00020480974477178073, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_103_LVCableDist_mvgd_0_lvgd_1004_105,"[0.015546716064155397, -1.1368683772161154e-13]","[-0.01554390184874451, 1.1368683772161169e-13]","[0.003900916435354813, 5.6843418860790307e-14]","[-0.0038995363583268373, -5.684341886079022e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_105_LVCableDist_mvgd_0_lvgd_1004_106,"[0.0008172238993308418, 0.0]","[-0.0008172004752155271, 0.0]","[0.0002048141700351905, 0.0]","[-0.00020480974485975192, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_105_LVCableDist_mvgd_0_lvgd_1004_107,"[0.014726677949500486, -9.947598300641257e-14]","[-0.014724151854518723, 9.947598300641273e-14]","[0.003694722188082908, 7.105427357599246e-14]","[-0.0036934834038585985, -7.105427357599237e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_107_LVCableDist_mvgd_0_lvgd_1004_108,"[0.0008172457770625191, 0.0]","[-0.0008172004752173558, 0.0]","[0.00020481418816626606, 0.0]","[-0.0002048097447670941, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_107_LVCableDist_mvgd_0_lvgd_1004_109,"[0.013906906077549472, -1.2789769243681172e-13]","[-0.013904652601663374, 1.2789769243681192e-13]","[0.003488669215409979, 4.973799150318819e-14]","[-0.003487564122213678, -4.973799150318809e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_109_LVCableDist_mvgd_0_lvgd_1004_110,"[0.0008172239158492792, 0.0]","[-0.0008172004752151292, 0.0]","[0.00020481417315460382, 0.0]","[-0.00020480974485850335, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_109_LVCableDist_mvgd_0_lvgd_1004_111,"[0.013087428685921318, -1.1368683772161203e-13]","[-0.013085432303113213, 1.1368683772161218e-13]","[0.0032827499488446593, 5.684341886079004e-14]","[-0.0032817709327956916, -5.6843418860789966e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_10_LVCableDist_mvgd_0_lvgd_1004_9,"[0.0008172446476331293, 0.0]","[-0.0008172004753100307, 0.0]","[0.0002048140774988523, 0.0]","[-0.00020480974488804642, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_111_LVCableDist_mvgd_0_lvgd_1004_112,"[0.0008172458071895571, 0.0]","[-0.0008172004752151608, 0.0]","[0.00020481419111743868, 0.0]","[-0.00020480974476306236, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_111_LVCableDist_mvgd_0_lvgd_1004_113,"[0.012268186496048498, -8.526512829120994e-14]","[-0.012266431682917056, 8.526512829121004e-14]","[0.003076956741360719, 4.973799150319283e-14]","[-0.0030760961898614546, -4.973799150319278e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_113_LVCableDist_mvgd_0_lvgd_1004_114,"[0.0008172239304925226, 0.0]","[-0.0008172004752113316, 0.0]","[0.00020481417591941645, 0.0]","[-0.0002048097448562648, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_113_LVCableDist_mvgd_0_lvgd_1004_115,"[0.011449207752527881, -9.947598300640914e-14]","[-0.011447678963781245, 9.947598300640925e-14]","[0.002871282013714053, 3.552713678799043e-14]","[-0.002870532303431855, -3.5527136787990374e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_115_LVCableDist_mvgd_0_lvgd_1004_116,"[0.0008172458336878965, 0.0]","[-0.000817200475208966, 0.0]","[0.00020481419371238434, 0.0]","[-0.00020480974475832963, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_115_LVCableDist_mvgd_0_lvgd_1004_117,"[0.01063043313016769, -7.105427357600778e-14]","[-0.010629114822813106, 7.105427357600786e-14]","[0.002665718109379865, 3.552713678799365e-14]","[-0.0026650716181095685, -3.552713678799362e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_117_LVCableDist_mvgd_0_lvgd_1004_118,"[0.0008172239432564554, 0.0]","[-0.000817200475205845, 0.0]","[0.0002048141783284896, 0.0]","[-0.00020480974485299831, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_117_LVCableDist_mvgd_0_lvgd_1004_119,"[0.009811890879683632, -7.105427357600868e-14]","[-0.009810767491641396, 7.105427357600874e-14]","[0.0024602574395404453, 4.263256414559399e-14]","[-0.002459706535716741, -4.263256414559396e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_119_LVCableDist_mvgd_0_lvgd_1004_120,"[0.0008172458565562674, 0.0]","[-0.0008172004752080529, 0.0]","[0.0002048141959524569, 0.0]","[-0.00020480974475528486, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_119_LVCableDist_mvgd_0_lvgd_1004_121,"[0.00899352163511672, -5.684341886080716e-14]","[-0.00899257760628906, 5.6843418860807213e-14]","[0.0022548923394320043, 3.552713678799524e-14]","[-0.0022544293924615048, -3.5527136787995215e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_11_LVCableDist_mvgd_0_lvgd_1004_12,"[0.0008172233350550544, 0.0]","[-0.0008172004753118195, 0.0]","[0.00020481406347852937, 0.0]","[-0.00020480974492165176, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_11_LVCableDist_mvgd_0_lvgd_1004_13,"[0.008179075674276772, 2.8421709430401114e-14]","[-0.008177326751130332, -2.8421709430401092e-14]","[0.0020514436410337764, 3.5527136788009e-15]","[-0.002050585977953417, -3.552713678800893e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_11_LVCableDist_mvgd_0_lvgd_1004_9,"[0.008998414866801932, 4.263256414560148e-14]","[-0.008996299009274648, -4.263256414560144e-14]","[0.0022572953104357378, 1.421085471520175e-14]","[-0.002256257704587736, -1.4210854715201728e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_121_LVCableDist_mvgd_0_lvgd_1004_122,"[0.0008172239541441963, 0.0]","[-0.0008172004752068741, 0.0]","[0.0002048141803839368, 0.0]","[-0.00020480974485177837, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_121_LVCableDist_mvgd_0_lvgd_1004_123,"[0.008175353652250823, -7.105427357600797e-14]","[-0.008174573406265262, 7.105427357600802e-14]","[0.0020496152118238574, 3.552713678799354e-14]","[-0.002049232583132153, -3.552713678799352e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_123_LVCableDist_mvgd_0_lvgd_1004_124,"[0.0008172458757815099, 0.0]","[-0.0008172004752083781, 0.0]","[0.00020481419783536874, 0.0]","[-0.00020480974475253435, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_123_LVCableDist_mvgd_0_lvgd_1004_125,"[0.007357327530622467, -4.263256414560649e-14]","[-0.0073566954927712785, 4.2632564145606535e-14]","[0.001844418384930142, 3.5527136787996875e-14]","[-0.0018441084367592025, -3.5527136787996856e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_125_LVCableDist_mvgd_0_lvgd_1004_126,"[0.0008172239631374381, 0.0]","[-0.000817200475200454, 0.0]","[0.00020481418208211322, 0.0]","[-0.0002048097448497803, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_125_LVCableDist_mvgd_0_lvgd_1004_127,"[0.006539471529704623, -4.263256414560569e-14]","[-0.006538972111825086, 4.263256414560571e-14]","[0.001639294254395263, 2.8421709430396475e-14]","[-0.001639049342388797, -2.8421709430396463e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_127_LVCableDist_mvgd_0_lvgd_1004_128,"[0.0008172458913506782, 0.0]","[-0.0008172004752046665, 0.0]","[0.00020481419936076563, 0.0]","[-0.00020480974475047643, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_127_LVCableDist_mvgd_0_lvgd_1004_129,"[0.00572172622060798, -1.4210854715203316e-14]","[-0.005721343835884955, 1.4210854715203326e-14]","[0.0014342351426628822, 2.1316282072799465e-14]","[-0.0014340476231254463, -2.1316282072799462e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_129_LVCableDist_mvgd_0_lvgd_1004_130,"[0.0008172239702456161, 0.0]","[-0.0008172004751996117, 0.0]","[0.0002048141834244505, 0.0]","[-0.00020480974484911435, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_129_LVCableDist_mvgd_0_lvgd_1004_131,"[0.004904119865737736, -2.842170943040495e-14]","[-0.004903838916726869, 2.842170943040496e-14]","[0.0012292334394252726, 2.842170943039815e-14]","[-0.0012290956634489097, -2.842170943039814e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_131_LVCableDist_mvgd_0_lvgd_1004_132,"[0.0008172459032663354, 0.0]","[-0.0008172004752056998, 0.0]","[0.00020481420052735004, 0.0]","[-0.00020480974474842344, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_131_LVCableDist_mvgd_0_lvgd_1004_133,"[0.00408659301360045, 1.4210854715197365e-14]","[-0.00408639790388787, -1.4210854715197356e-14]","[0.0010242814625395383, 2.8421709430403256e-14]","[-0.0010241857817216364, -2.8421709430403253e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_133_LVCableDist_mvgd_0_lvgd_1004_134,"[0.0008172239754670479, 0.0]","[-0.0008172004752055044, 0.0]","[0.00020481418441091253, 0.0]","[-0.00020480974485028087, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_133_LVCableDist_mvgd_0_lvgd_1004_135,"[0.0032691739285503865, -2.5627550453679493e-27]","[-0.0032690490539236143, 2.5675916283049795e-27]","[0.0008193715970452766, 2.131628207280116e-14]","[-0.0008193103591588237, -2.1316282072801156e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_135_LVCableDist_mvgd_0_lvgd_1004_136,"[0.0008172459115139907, 0.0]","[-0.0008172004752017486, 0.0]","[0.00020481420133509055, 0.0]","[-0.00020480974474681104, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_135_LVCableDist_mvgd_0_lvgd_1004_137,"[0.002451803142537582, -3.4234555044066396e-27]","[-0.0024517328994975436, 3.429944046002886e-27]","[0.0006144961574442356, 2.8421709430401543e-14]","[-0.0006144617106120715, -2.8421709430401537e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_137_LVCableDist_mvgd_0_lvgd_1004_138,"[0.0008172239787829139, 0.0]","[-0.000817200475201398, 0.0]","[0.00020481418503837034, 0.0]","[-0.00020480974485054485, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_137_LVCableDist_mvgd_0_lvgd_1004_139,"[0.0016345089208645541, 1.4210854715199912e-14]","[-0.0016344777009477255, -1.4210854715199909e-14]","[0.0004096475253008153, 7.105427357602098e-15]","[-0.0004096322152112381, -7.1054273576021e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_139_LVCableDist_mvgd_0_lvgd_1004_140,"[0.000817245916099895, 0.0]","[-0.0008172004752023622, 0.0]","[0.00020481420178440575, 0.0]","[-0.00020480974474638123, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_139_LVCableDist_mvgd_0_lvgd_1004_141,"[0.0008172317849499881, -1.4210854715201625e-14]","[-0.0008172239800891799, 1.4210854715201627e-14]","[0.00020481801304552858, 7.105427357598668e-15]","[-0.00020481418558119648, -7.105427357598667e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_13_LVCableDist_mvgd_0_lvgd_1004_14,"[0.0008172446895623491, 0.0]","[-0.0008172004753042135, 0.0]","[0.0002048140816089812, 0.0]","[-0.00020480974488500716, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_13_LVCableDist_mvgd_0_lvgd_1004_15,"[0.007360082061599696, 1.4210854715200314e-14]","[-0.007358665234887632, -1.4210854715200306e-14]","[0.0018457718962270734, 1.0658141036400818e-14]","[-0.0018450770915613114, -1.0658141036400812e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_141_LVCableDist_mvgd_0_lvgd_1004_142,"[0.0008172239802046621, 0.0]","[-0.0008172004752000668, 0.0]","[0.00020481418530417163, 0.0]","[-0.0002048097448475046, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_143_LVCableDist_mvgd_0_lvgd_1004_144,"[0.0008172232928933401, 0.0]","[-0.0008172004753057082, 0.0]","[0.00020481405551609272, 0.0]","[-0.00020480974492305648, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_143_LVCableDist_mvgd_0_lvgd_1004_145,"[0.04454929093870655, -2.8421709430409656e-14]","[-0.04452675180109616, 2.842170943041042e-14]","[0.011265254189667227, 2.7000623958881187e-13]","[-0.01125420111038761, -2.700062395888115e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_143_LVStation_mvgd_0_lvgd_1004,"[0.045389887430805576, -4.263256414560994e-14]","[-0.045366514231649266, 4.2632564145610763e-14]","[0.011481530343923607, 2.8421709430401256e-13]","[-0.01147006824507321, -2.842170943040121e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_145_LVCableDist_mvgd_0_lvgd_1004_146,"[0.0008172446352838792, 0.0]","[-0.0008172004753069519, 0.0]","[0.000204814076287543, 0.0]","[-0.00020480974488770251, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_145_LVCableDist_mvgd_0_lvgd_1004_147,"[0.04370950716579437, -5.684341886081125e-14]","[-0.04368778739053755, 5.684341886081197e-14]","[0.011049387034214528, 2.557953848736099e-13]","[-0.011038735766095976, -2.5579538487360956e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_147_LVCableDist_mvgd_0_lvgd_1004_148,"[0.0008172233412973543, 0.0]","[-0.0008172004752946783, 0.0]","[0.00020481406465843138, 0.0]","[-0.00020480974491904905, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_147_LVCableDist_mvgd_0_lvgd_1004_149,"[0.042870564049173616, -5.68434188608117e-14]","[-0.042849648865157464, 5.684341886081237e-14]","[0.010833921701552349, 2.4868995751600927e-13]","[-0.01082366500091568, -2.486899575160089e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_149_LVCableDist_mvgd_0_lvgd_1004_150,"[0.0008172447272909308, 0.0]","[-0.0008172004752996404, 0.0]","[0.00020481408530586556, 0.0]","[-0.0002048097448808619, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_149_LVCableDist_mvgd_0_lvgd_1004_151,"[0.04203240413778838, -4.263256414561229e-14]","[-0.04201227878223333, 4.2632564145613016e-14]","[0.010618850915679235, 2.629008122312101e-13]","[-0.010608981542931897, -2.6290081223120976e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_151_LVCableDist_mvgd_0_lvgd_1004_152,"[0.0008172233880637427, 0.0]","[-0.0008172004752953663, 0.0]","[0.00020481407348980937, 0.0]","[-0.00020480974491566745, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_151_LVCableDist_mvgd_0_lvgd_1004_153,"[0.04119505539412386, -5.684341886081334e-14]","[-0.041175705034746185, 5.684341886081402e-14]","[0.010404167469553634, 2.557953848736088e-13]","[-0.010394678151018572, -2.5579538487360845e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_153_LVCableDist_mvgd_0_lvgd_1004_154,"[0.0008172448160993078, 0.0]","[-0.0008172004752996364, 0.0]","[0.00020481409400931414, 0.0]","[-0.0002048097448736038, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_153_LVCableDist_mvgd_0_lvgd_1004_155,"[0.040358460218575254, -2.8421709430412477e-14]","[-0.04033987003110696, 2.8421709430413146e-14]","[0.01018986405705935, 2.4868995751600947e-13]","[-0.010180747522990393, -2.4868995751600917e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_155_LVCableDist_mvgd_0_lvgd_1004_156,"[0.0008172234331637088, 0.0]","[-0.0008172004752966326, 0.0]","[0.00020481408200650689, 0.0]","[-0.00020480974491252736, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_155_LVCableDist_mvgd_0_lvgd_1004_157,"[0.039522646597921866, -2.8421709430412805e-14]","[-0.03950480169103708, 2.842170943041339e-14]","[0.009975933441093822, 2.4158453015840887e-13]","[-0.009967182388859953, -2.4158453015840857e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_157_LVCableDist_mvgd_0_lvgd_1004_158,"[0.0008172449016562802, 0.0]","[-0.0008172004752878161, 0.0]","[0.00020481410239555438, 0.0]","[-0.00020480974486688998, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_157_LVCableDist_mvgd_0_lvgd_1004_159,"[0.03868755678934754, -4.263256414561326e-14]","[-0.038670442279418404, 4.263256414561381e-14]","[0.009762368286518207, 2.2737367544320727e-13]","[-0.009753975417263477, -2.2737367544320697e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_159_LVCableDist_mvgd_0_lvgd_1004_160,"[0.0008172234765616847, 0.0]","[-0.0008172004752800102, 0.0]","[0.0002048140902022629, 0.0]","[-0.00020480974490659842, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_159_LVCableDist_mvgd_0_lvgd_1004_161,"[0.037853218802789114, -4.263256414561343e-14]","[-0.03783681974160522, 4.2632564145613957e-14]","[0.009549161327127194, 2.2026824808560667e-13]","[-0.009541119310324682, -2.2026824808560642e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_15_LVCableDist_mvgd_0_lvgd_1004_16,"[0.0008172233546830541, 0.0]","[-0.0008172004753008193, 0.0]","[0.00020481406718819465, 0.0]","[-0.00020480974492120802, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_15_LVCableDist_mvgd_0_lvgd_1004_17,"[0.006541441880237009, 1.4210854715200306e-14]","[-0.006540322265719919, -1.42108547152003e-14]","[0.0016402630242835807, 1.0658141036400812e-14]","[-0.001639713970977553, -1.065814103640081e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_161_LVCableDist_mvgd_0_lvgd_1004_162,"[0.000817244983947385, 0.0]","[-0.0008172004752822338, 0.0]","[0.00020481411046023156, 0.0]","[-0.00020480974485955527, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_161_LVCableDist_mvgd_0_lvgd_1004_163,"[0.03701957475766925, -4.2632564145614745e-14]","[-0.03700387620440028, 4.263256414561531e-14]","[0.009336305199902282, 2.34479102800807e-13]","[-0.009328606708644244, -2.344791028008067e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_163_LVCableDist_mvgd_0_lvgd_1004_164,"[0.0008172235182831394, 0.0]","[-0.0008172004752874995, 0.0]","[0.00020481409808129723, 0.0]","[-0.00020480974490522347, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_163_LVCableDist_mvgd_0_lvgd_1004_165,"[0.03618665268607719, -4.263256414561407e-14]","[-0.036171639637813516, 4.263256414561457e-14]","[0.009123792610623805, 2.1316282072800587e-13]","[-0.009116430287559119, -2.1316282072800567e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_165_LVCableDist_mvgd_0_lvgd_1004_166,"[0.0008172450629373381, 0.0]","[-0.0008172004752790102, 0.0]","[0.00020481411820057256, 0.0]","[-0.0002048097448519069, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_165_LVCableDist_mvgd_0_lvgd_1004_167,"[0.03535439457485546, -7.105427357601524e-14]","[-0.03534005203574985, 7.105427357601572e-14]","[0.008911616169360839, 2.0605739337040363e-13]","[-0.00890458266060174, -2.060573933704034e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_167_LVCableDist_mvgd_0_lvgd_1004_168,"[0.0008172235582733961, 0.0]","[-0.0008172004752803739, 0.0]","[0.00020481410563402016, 0.0]","[-0.00020480974490182612, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_167_LVCableDist_mvgd_0_lvgd_1004_169,"[0.03452282847747779, -7.105427357601572e-14]","[-0.03450914139213377, 7.105427357601622e-14]","[0.008699768555017025, 2.060573933704034e-13]","[-0.008693056477473088, -2.0605739337040315e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_169_LVCableDist_mvgd_0_lvgd_1004_170,"[0.0008172451385909447, 0.0]","[-0.0008172004752732143, 0.0]","[0.00020481412561479777, 0.0]","[-0.00020480974484513362, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_169_LVCableDist_mvgd_0_lvgd_1004_171,"[0.033691896253486814, -8.526512829121722e-14]","[-0.033678849573252574, 8.526512829121775e-14]","[0.008488242351835155, 2.131628207280025e-13]","[-0.008481844325723525, -2.1316282072800224e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_171_LVCableDist_mvgd_0_lvgd_1004_172,"[0.0008172235965284948, 0.0]","[-0.0008172004752700254, 0.0]","[0.00020481411285810578, 0.0]","[-0.00020480974489698052, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_171_LVCableDist_mvgd_0_lvgd_1004_173,"[0.03286162597671741, -8.526512829121775e-14]","[-0.03284920459594804, 8.526512829121831e-14]","[0.00827703021287425, 2.1316282072800224e-13]","[-0.008270938830462935, -2.1316282072800198e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_173_LVCableDist_mvgd_0_lvgd_1004_174,"[0.0008172452108837093, 0.0]","[-0.0008172004752694461, 0.0]","[0.00020481413269727352, 0.0]","[-0.0002048097448364555, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_173_LVCableDist_mvgd_0_lvgd_1004_175,"[0.032031959385052884, -9.947598300641784e-14]","[-0.032020148204530356, 9.947598300641834e-14]","[0.008066124697726634, 1.9895196601280044e-13]","[-0.008060332554435352, -1.9895196601280018e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_175_LVCableDist_mvgd_0_lvgd_1004_176,"[0.0008172236330453189, 0.0]","[-0.0008172004752680782, 0.0]","[0.0002048141197538984, 0.0]","[-0.00020480974489381592, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_175_LVCableDist_mvgd_0_lvgd_1004_177,"[0.031202924571481796, -9.947598300641834e-14]","[-0.031191708437576144, 9.947598300641883e-14]","[0.007855518434689322, 1.9895196601280018e-13]","[-0.007850018099254442, -1.9895196601279993e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_177_LVCableDist_mvgd_0_lvgd_1004_178,"[0.0008172452797890562, 0.0]","[-0.0008172004752690334, 0.0]","[0.00020481413944896146, 0.0]","[-0.00020480974482957115, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_177_LVCableDist_mvgd_0_lvgd_1004_179,"[0.030374463157819952, -1.1368683772161883e-13]","[-0.030363826923010324, 1.1368683772161934e-13]","[0.0076452039597441, 1.9184653865519858e-13]","[-0.007639988003897893, -1.9184653865519832e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_179_LVCableDist_mvgd_0_lvgd_1004_180,"[0.0008172236677999998, 0.0]","[-0.0008172004752647826, 0.0]","[0.00020481412631655319, 0.0]","[-0.0002048097448901547, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_179_LVCableDist_mvgd_0_lvgd_1004_181,"[0.029546603255217036, -1.1368683772161823e-13]","[-0.02953653172017576, 1.136868377216187e-13]","[0.007435173877574244, 1.7763568393999778e-13]","[-0.007430234847643152, -1.776356839399976e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_17_LVCableDist_mvgd_0_lvgd_1004_18,"[0.0008172447235594408, 0.0]","[-0.000817200475305717, 0.0]","[0.00020481408494192507, 0.0]","[-0.00020480974488351796, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_17_LVCableDist_mvgd_0_lvgd_1004_19,"[0.00572307754220279, 1.4210854715200488e-14]","[-0.005722220243417862, -1.4210854715200481e-14]","[0.0014348998859254182, 3.552713678800519e-15]","[-0.0014344794709299584, -3.552713678800516e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_181_LVCableDist_mvgd_0_lvgd_1004_182,"[0.0008172453452690006, 0.0]","[-0.0008172004752606781, 0.0]","[0.00020481414586538316, 0.0]","[-0.0002048097448226197, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_181_LVCableDist_mvgd_0_lvgd_1004_183,"[0.02871928637494231, -1.2789769243681808e-13]","[-0.028709764346133038, 1.2789769243681851e-13]","[0.007225420701690019, 1.634248292247959e-13]","[-0.00722075114684054, -1.6342482922479568e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_183_LVCableDist_mvgd_0_lvgd_1004_184,"[0.0008172237007722951, 0.0]","[-0.0008172004752533789, 0.0]","[0.00020481413254264997, 0.0]","[-0.00020480974488512374, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_183_LVCableDist_mvgd_0_lvgd_1004_185,"[0.02789254064536984, -1.2789769243681733e-13]","[-0.02788355288007738, 1.2789769243681773e-13]","[0.007015937014252761, 1.4921397450959514e-13]","[-0.007011529459534323, -1.4921397450959494e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_185_LVCableDist_mvgd_0_lvgd_1004_186,"[0.0008172454073074482, 0.0]","[-0.0008172004752537303, 0.0]","[0.00020481415194352845, 0.0]","[-0.00020480974481508664, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_185_LVCableDist_mvgd_0_lvgd_1004_187,"[0.02706630747283581, -1.2789769243681773e-13]","[-0.027057838733818566, 1.2789769243681813e-13]","[0.006806715307478099, 1.4921397450959494e-13]","[-0.006802562280624366, -1.4921397450959476e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_187_LVCableDist_mvgd_0_lvgd_1004_188,"[0.0008172237319601232, 0.0]","[-0.0008172004752446204, 0.0]","[0.00020481413843300494, 0.0]","[-0.00020480974488196397, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_187_LVCableDist_mvgd_0_lvgd_1004_189,"[0.026240615001863938, -1.2789769243681564e-13]","[-0.02623265000535122, 1.2789769243681596e-13]","[0.006597748142141186, 1.2079226507919363e-13]","[-0.006593842148068173, -1.2079226507919345e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_189_LVCableDist_mvgd_0_lvgd_1004_190,"[0.0008172454658749943, 0.0]","[-0.0008172004752429682, 0.0]","[0.00020481415768278555, 0.0]","[-0.00020480974480873207, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_189_LVCableDist_mvgd_0_lvgd_1004_191,"[0.02541540453955814, -1.2789769243681596e-13]","[-0.025407928006935185, 1.278976924368163e-13]","[0.006389027990231785, 1.2079226507919345e-13]","[-0.006385361536383968, -1.2079226507919328e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_191_LVCableDist_mvgd_0_lvgd_1004_192,"[0.0008172237613566292, 0.0]","[-0.0008172004752438279, 0.0]","[0.00020481414398400467, 0.0]","[-0.00020480974487936215, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_191_LVCableDist_mvgd_0_lvgd_1004_193,"[0.02459070424559751, -1.136868377216157e-13]","[-0.02458370085439086, 1.1368683772161598e-13]","[0.006180547392338237, 1.207922650791946e-13]","[-0.006177112964651989, -1.2079226507919446e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_193_LVCableDist_mvgd_0_lvgd_1004_194,"[0.0008172455209634807, 0.0]","[-0.0008172004752431299, 0.0]","[0.00020481416307882247, 0.0]","[-0.00020480974480147, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_193_LVCableDist_mvgd_0_lvgd_1004_195,"[0.023766455333426254, -9.947598300641473e-14]","[-0.02375990976600079, 9.947598300641495e-14]","[0.00597229880141078, 1.136868377215955e-13]","[-0.0059690888881951815, -1.1368683772159537e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_195_LVCableDist_mvgd_0_lvgd_1004_196,"[0.0008172237889423935, 0.0]","[-0.0008172004752430884, 0.0]","[0.0002048141491911716, 0.0]","[-0.00020480974487501445, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_195_LVCableDist_mvgd_0_lvgd_1004_197,"[0.02294268597712114, -1.1368683772161555e-13]","[-0.022936582874672887, 1.136868377216158e-13]","[0.005764274738907488, 1.1368683772159402e-13]","[-0.005761281808282626, -1.1368683772159389e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_197_LVCableDist_mvgd_0_lvgd_1004_198,"[0.0008172455725322318, 0.0]","[-0.0008172004752351334, 0.0]","[0.0002048141681313237, 0.0]","[-0.00020480974479510273, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_197_LVCableDist_mvgd_0_lvgd_1004_199,"[0.02211933730217004, -9.947598300641658e-14]","[-0.022113661310415842, 9.947598300641684e-14]","[0.005556467639972215, 1.2789769243679587e-13]","[-0.00555368416227515, -1.2789769243679574e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_199_LVCableDist_mvgd_0_lvgd_1004_200,"[0.0008172238146959841, 0.0]","[-0.0008172004752317969, 0.0]","[0.00020481415405544155, 0.0]","[-0.00020480974487190214, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_199_LVCableDist_mvgd_0_lvgd_1004_201,"[0.02129643749577177, -9.947598300641475e-14]","[-0.021291173221967975, 9.947598300641499e-14]","[0.00534887000810718, 1.0658141036399482e-13]","[-0.00534628843481415, -1.0658141036399472e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_19_LVCableDist_mvgd_0_lvgd_1004_20,"[0.0008172233702075151, 0.0]","[-0.0008172004753011174, 0.0]","[0.00020481407011835732, 0.0]","[-0.00020480974491861775, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_19_LVCableDist_mvgd_0_lvgd_1004_21,"[0.004904996873231905, 2.1316282072800765e-14]","[-0.004904366957113852, -2.1316282072800762e-14]","[0.0012296654007058641, 3.552713678800702e-15]","[-0.001229356493022141, -3.552713678800697e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_1_LVCableDist_mvgd_0_lvgd_1004_2,"[0.06373631368929941, 0.0]","[-0.06299999998662043, 0.0]","[0.015861509126686872, 0.0]","[-0.015789288322324083, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_1_LVStation_mvgd_0_lvgd_1004,"[0.06396252372087333, 0.0]","[-0.0637363136740296, 0.0]","[0.016059783240772407, 0.0]","[-0.01586150915062065, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_201_LVCableDist_mvgd_0_lvgd_1004_202,"[0.0008172456205756285, 0.0]","[-0.0008172004752336261, 0.0]","[0.0002048141728369658, 0.0]","[-0.00020480974478829465, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_201_LVCableDist_mvgd_0_lvgd_1004_203,"[0.020473927601465512, -1.1368683772161701e-13]","[-0.020469059657071728, 1.1368683772161732e-13]","[0.005141474261765101, 1.207922650791939e-13]","[-0.005139087046413593, -1.2079226507919378e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_203_LVCableDist_mvgd_0_lvgd_1004_204,"[0.0008172238386224236, 0.0]","[-0.0008172004752251112, 0.0]","[0.00020481415857590994, 0.0]","[-0.0002048097448710353, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_203_LVCableDist_mvgd_0_lvgd_1004_205,"[0.019651835818517663, -1.1368683772161587e-13]","[-0.01964734877925859, 1.136868377216161e-13]","[0.004934272887699785, 1.0658141036399314e-13]","[-0.004932072466303074, -1.0658141036399302e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_205_LVCableDist_mvgd_0_lvgd_1004_206,"[0.0008172456650715705, 0.0]","[-0.0008172004752354334, 0.0]","[0.0002048141771956189, 0.0]","[-0.00020480974478277234, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_205_LVCableDist_mvgd_0_lvgd_1004_207,"[0.01883010311427033, -8.526512829121336e-14]","[-0.01882598155975643, 8.526512829121355e-14]","[0.004727258288891307, 9.237055564879533e-14]","[-0.004725237099368224, -9.237055564879525e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_207_LVCableDist_mvgd_0_lvgd_1004_208,"[0.0008172238607105397, 0.0]","[-0.000817200475221297, 0.0]","[0.00020481416274290907, 0.0]","[-0.00020480974486452924, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_207_LVCableDist_mvgd_0_lvgd_1004_209,"[0.01800875769907833, -9.947598300641493e-14]","[-0.0180049861759268, 9.947598300641511e-14]","[0.004520422936436035, 9.947598300639408e-14]","[-0.004518573400525685, -9.947598300639398e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_209_LVCableDist_mvgd_0_lvgd_1004_210,"[0.0008172457059894704, 0.0]","[-0.000817200475227534, 0.0]","[0.00020481418120418783, 0.0]","[-0.00020480974477716341, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_209_LVCableDist_mvgd_0_lvgd_1004_211,"[0.01718774046999199, -9.947598300641285e-14]","[-0.017184303528388338, 9.947598300641302e-14]","[0.004313759219067561, 7.815970093359301e-14]","[-0.004312073760258922, -7.815970093359293e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_211_LVCableDist_mvgd_0_lvgd_1004_212,"[0.0008172238809581258, 0.0]","[-0.0008172004752268769, 0.0]","[0.0002048141665679976, 0.0]","[-0.00020480974486559165, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_211_LVCableDist_mvgd_0_lvgd_1004_213,"[0.016367079647514975, -9.947598300641302e-14]","[-0.01636396180740788, 9.947598300641319e-14]","[0.004107259593528595, 7.815970093359293e-14]","[-0.004105730620482662, -7.815970093359285e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_213_LVCableDist_mvgd_0_lvgd_1004_214,"[0.0008172457433273638, 0.0]","[-0.0008172004752241524, 0.0]","[0.00020481418486139745, 0.0]","[-0.0002048097447717808, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_213_LVCableDist_mvgd_0_lvgd_1004_215,"[0.015546716064155395, -1.1368683772161154e-13]","[-0.015543901848744508, 1.1368683772161169e-13]","[0.0039009164353548138, 5.6843418860790307e-14]","[-0.003899536358326839, -5.684341886079022e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_215_LVCableDist_mvgd_0_lvgd_1004_216,"[0.0008172238993273826, 0.0]","[-0.000817200475212068, 0.0]","[0.00020481417003443054, 0.0]","[-0.00020480974485899197, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_215_LVCableDist_mvgd_0_lvgd_1004_217,"[0.014726677949514225, -9.947598300641257e-14]","[-0.014724151854532457, 9.947598300641273e-14]","[0.003694722188082515, 7.105427357599246e-14]","[-0.0036934834038582047, -7.105427357599237e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_217_LVCableDist_mvgd_0_lvgd_1004_218,"[0.0008172457770625313, 0.0]","[-0.0008172004752173681, 0.0]","[0.00020481418816669538, 0.0]","[-0.00020480974476752337, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_217_LVCableDist_mvgd_0_lvgd_1004_219,"[0.013906906077522, -1.2789769243681172e-13]","[-0.013904652601635906, 1.2789769243681192e-13]","[0.0034886692154107697, 4.973799150318819e-14]","[-0.00348756412221447, -4.973799150318809e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_219_LVCableDist_mvgd_0_lvgd_1004_220,"[0.0008172239158527373, 0.0]","[-0.0008172004752185872, 0.0]","[0.00020481417315536344, 0.0]","[-0.00020480974485926292, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_219_LVCableDist_mvgd_0_lvgd_1004_221,"[0.013087428685935052, -1.1368683772161203e-13]","[-0.013085432303126945, 1.1368683772161218e-13]","[0.0032827499488442655, 5.684341886079004e-14]","[-0.003281770932795297, -5.6843418860789966e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_21_LVCableDist_mvgd_0_lvgd_1004_22,"[0.0008172447495808063, 0.0]","[-0.0008172004753013231, 0.0]","[0.0002048140874923225, 0.0]","[-0.00020480974488119733, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_21_LVCableDist_mvgd_0_lvgd_1004_23,"[0.004087122207571442, 7.105427357600284e-15]","[-0.00408668473169077, -7.1054273576002824e-15]","[0.0010245424054036634, 1.8508816903411547e-28]","[-0.0010243278694406833, -1.845044846169419e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1004_221_LVCableDist_mvgd_0_lvgd_1004_222,"[0.000817245807189557, 0.0]","[-0.0008172004752151608, 0.0]","[0.00020481419111743876, 0.0]","[-0.00020480974476306244, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_221_LVCableDist_mvgd_0_lvgd_1004_223,"[0.012268186496034767, -8.526512829120994e-14]","[-0.012266431682903325, 8.526512829121004e-14]","[0.0030769567413611158, 4.973799150319283e-14]","[-0.003076096189861852, -4.973799150319278e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_223_LVCableDist_mvgd_0_lvgd_1004_224,"[0.0008172239304960044, 0.0]","[-0.0008172004752148133, 0.0]","[0.00020481417592103368, 0.0]","[-0.00020480974485788197, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_223_LVCableDist_mvgd_0_lvgd_1004_225,"[0.011449207752527881, -9.947598300640914e-14]","[-0.011447678963781245, 9.947598300640925e-14]","[0.002871282013714054, 3.552713678799043e-14]","[-0.0028705323034318563, -3.5527136787990374e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_225_LVCableDist_mvgd_0_lvgd_1004_226,"[0.0008172458336879088, 0.0]","[-0.0008172004752089782, 0.0]","[0.00020481419371281336, 0.0]","[-0.00020480974475875865, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_225_LVCableDist_mvgd_0_lvgd_1004_227,"[0.010630433130181418, -7.105427357600778e-14]","[-0.010629114822826833, 7.105427357600786e-14]","[0.0026657181093794695, 3.552713678799365e-14]","[-0.002665071618109173, -3.552713678799362e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_227_LVCableDist_mvgd_0_lvgd_1004_228,"[0.0008172239432564801, 0.0]","[-0.0008172004752058697, 0.0]","[0.00020481417832934754, 0.0]","[-0.00020480974485385622, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_227_LVCableDist_mvgd_0_lvgd_1004_229,"[0.009811890879683632, -7.105427357600868e-14]","[-0.009810767491641396, 7.105427357600874e-14]","[0.0024602574395404466, 4.263256414559399e-14]","[-0.0024597065357167417, -4.263256414559396e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_229_LVCableDist_mvgd_0_lvgd_1004_230,"[0.0008172458565562674, 0.0]","[-0.0008172004752080529, 0.0]","[0.000204814195952457, 0.0]","[-0.00020480974475528492, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_229_LVCableDist_mvgd_0_lvgd_1004_231,"[0.008993521635102997, -5.684341886080716e-14]","[-0.008992577606275339, 5.6843418860807213e-14]","[0.0022548923394324024, 3.552713678799524e-14]","[-0.002254429392461903, -3.5527136787995215e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_231_LVCableDist_mvgd_0_lvgd_1004_232,"[0.0008172239541476517, 0.0]","[-0.0008172004752103293, 0.0]","[0.0002048141803846952, 0.0]","[-0.00020480974485253672, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_231_LVCableDist_mvgd_0_lvgd_1004_233,"[0.008175353652278465, -7.105427357600797e-14]","[-0.0081745734062929, 7.105427357600802e-14]","[0.002049615211829925, 3.552713678799354e-14]","[-0.002049232583138219, -3.552713678799352e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_233_LVCableDist_mvgd_0_lvgd_1004_234,"[0.0008172458757797823, 0.0]","[-0.0008172004752066505, 0.0]","[0.00020481419783498973, 0.0]","[-0.00020480974475215534, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_233_LVCableDist_mvgd_0_lvgd_1004_235,"[0.007357327530608546, -4.263256414560649e-14]","[-0.00735669549275736, 4.2632564145606535e-14]","[0.0018444183849236795, 3.5527136787996875e-14]","[-0.001844108436752741, -3.5527136787996856e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_235_LVCableDist_mvgd_0_lvgd_1004_236,"[0.000817223963137438, 0.0]","[-0.000817200475200454, 0.0]","[0.00020481418208211327, 0.0]","[-0.00020480974484978038, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_235_LVCableDist_mvgd_0_lvgd_1004_237,"[0.0065394715297048215, -4.263256414560569e-14]","[-0.006538972111825285, 4.263256414560571e-14]","[0.0016392942544021236, 2.8421709430396475e-14]","[-0.0016390493423956568, -2.8421709430396463e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_237_LVCableDist_mvgd_0_lvgd_1004_238,"[0.0008172458913506532, 0.0]","[-0.0008172004752046416, 0.0]","[0.00020481419935990827, 0.0]","[-0.00020480974474961912, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_237_LVCableDist_mvgd_0_lvgd_1004_239,"[0.005721726220621697, -1.4210854715203316e-14]","[-0.005721343835898672, 1.4210854715203326e-14]","[0.0014342351426624845, 2.1316282072799465e-14]","[-0.0014340476231250484, -2.1316282072799462e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_239_LVCableDist_mvgd_0_lvgd_1004_240,"[0.0008172239702456159, 0.0]","[-0.0008172004751996116, 0.0]","[0.00020481418342445056, 0.0]","[-0.0002048097448491144, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_239_LVCableDist_mvgd_0_lvgd_1004_241,"[0.004904119865737735, -2.842170943040495e-14]","[-0.004903838916726868, 2.842170943040496e-14]","[0.0012292334394252728, 2.842170943039815e-14]","[-0.0012290956634489099, -2.842170943039814e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_23_LVCableDist_mvgd_0_lvgd_1004_24,"[0.0008172233816015951, 0.0]","[-0.0008172004752997548, 0.0]","[0.00020481407227129224, 0.0]","[-0.00020480974491877838, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_23_LVCableDist_mvgd_0_lvgd_1004_25,"[0.0032694613501036605, 9.225224230847095e-29]","[-0.0032691813451579226, -9.196040009988425e-29]","[0.0008195137970595201, -3.5527136788001412e-15]","[-0.0008193764840479299, 3.5527136788001412e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_241_LVCableDist_mvgd_0_lvgd_1004_242,"[0.0008172459032629061, 0.0]","[-0.0008172004752022708, 0.0]","[0.00020481420052744967, 0.0]","[-0.00020480974474852308, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_241_LVCableDist_mvgd_0_lvgd_1004_243,"[0.004086593013586732, 1.4210854715197365e-14]","[-0.004086397903874153, -1.4210854715197356e-14]","[0.0010242814625399368, 2.8421709430403256e-14]","[-0.0010241857817220351, -2.8421709430403253e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_243_LVCableDist_mvgd_0_lvgd_1004_244,"[0.0008172239754635939, 0.0]","[-0.0008172004752020505, 0.0]","[0.00020481418441015495, 0.0]","[-0.00020480974484952334, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_243_LVCableDist_mvgd_0_lvgd_1004_245,"[0.003269173928550386, -2.56275504536795e-27]","[-0.0032690490539236143, 2.5675916283049802e-27]","[0.0008193715970452768, 2.131628207280116e-14]","[-0.0008193103591588241, -2.1316282072801156e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_245_LVCableDist_mvgd_0_lvgd_1004_246,"[0.0008172459115139906, 0.0]","[-0.0008172004752017486, 0.0]","[0.00020481420133509063, 0.0]","[-0.00020480974474681112, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_245_LVCableDist_mvgd_0_lvgd_1004_247,"[0.0024518031425373823, -3.42345550440664e-27]","[-0.002451732899497344, 3.429944046002886e-27]","[0.0006144961574373781, 2.8421709430401543e-14]","[-0.0006144617106052143, -2.8421709430401537e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_247_LVCableDist_mvgd_0_lvgd_1004_248,"[0.0008172239787829139, 0.0]","[-0.000817200475201398, 0.0]","[0.00020481418503837042, 0.0]","[-0.00020480974485054493, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_247_LVCableDist_mvgd_0_lvgd_1004_249,"[0.0016345089208647534, 1.4210854715199912e-14]","[-0.001634477700947925, -1.4210854715199909e-14]","[0.000409647525307673, 7.105427357602098e-15]","[-0.0004096322152180956, -7.1054273576021e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_249_LVCableDist_mvgd_0_lvgd_1004_250,"[0.0008172459161033111, 0.0]","[-0.0008172004752057782, 0.0]","[0.0002048142017838775, 0.0]","[-0.00020480974474585306, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_249_LVCableDist_mvgd_0_lvgd_1004_251,"[0.0008172317849497887, -1.4210854715201625e-14]","[-0.0008172239800889805, 1.4210854715201627e-14]","[0.00020481801303867125, 7.105427357598668e-15]","[-0.00020481418557433923, -7.105427357598667e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_251_LVCableDist_mvgd_0_lvgd_1004_252,"[0.0008172239802046869, 0.0]","[-0.0008172004752000916, 0.0]","[0.00020481418530502888, 0.0]","[-0.00020480974484836183, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_25_LVCableDist_mvgd_0_lvgd_1004_26,"[0.0008172447676127394, 0.0]","[-0.0008172004753006165, 0.0]","[0.00020481408926052114, 0.0]","[-0.00020480974488067737, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_25_LVCableDist_mvgd_0_lvgd_1004_27,"[0.0024519365775902487, 1.4210854715200565e-14]","[-0.0024517790677855028, -1.4210854715200559e-14]","[0.0006145623946511095, 3.67841600399537e-28]","[-0.0006144851526381598, -3.643166293970461e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1004_27_LVCableDist_mvgd_0_lvgd_1004_28,"[0.0008172233888578603, 0.0]","[-0.0008172004752995008, 0.0]","[0.0002048140736409334, 0.0]","[-0.00020480974491755155, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_27_LVCableDist_mvgd_0_lvgd_1004_29,"[0.001634555678963143, 7.10542735760037e-15]","[-0.001634485671390748, -7.10542735760037e-15]","[0.00040967107889376876, -3.5527136787999574e-15]","[-0.00040963674753374823, 3.552713678799958e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_29_LVCableDist_mvgd_0_lvgd_1004_30,"[0.0008172447776313819, 0.0]","[-0.0008172004752958946, 0.0]","[0.00020481409024313268, 0.0]","[-0.00020480974488015438, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_29_LVCableDist_mvgd_0_lvgd_1004_31,"[0.0008172408937907158, 7.1054273576001885e-15]","[-0.0008172233919326132, -7.105427357600188e-15]","[0.00020482265716164244, 3.552713678800321e-15]","[-0.00020481407433879905, -3.5527136788003207e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_31_LVCableDist_mvgd_0_lvgd_1004_32,"[0.0008172233919783902, 0.0]","[-0.0008172004753089384, 0.0]","[0.00020481407422986408, 0.0]","[-0.00020480974491874902, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_33_LVCableDist_mvgd_0_lvgd_1004_34,"[0.0008172232928933626, 0.0]","[-0.0008172004753057308, 0.0]","[0.0002048140555169628, 0.0]","[-0.00020480974492392652, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_33_LVCableDist_mvgd_0_lvgd_1004_35,"[0.04454929093870655, -2.8421709430409656e-14]","[-0.04452675180109616, 2.842170943041042e-14]","[0.011265254189667227, 2.7000623958881187e-13]","[-0.01125420111038761, -2.700062395888115e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_33_LVStation_mvgd_0_lvgd_1004,"[0.045389887430805576, -4.263256414560994e-14]","[-0.045366514231649266, 4.2632564145610763e-14]","[0.011481530343923607, 2.8421709430401256e-13]","[-0.01147006824507321, -2.842170943040121e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_35_LVCableDist_mvgd_0_lvgd_1004_36,"[0.0008172446352838793, 0.0]","[-0.0008172004753069519, 0.0]","[0.00020481407628754298, 0.0]","[-0.0002048097448877025, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_35_LVCableDist_mvgd_0_lvgd_1004_37,"[0.04370950716579419, -5.684341886081125e-14]","[-0.043687787390537365, 5.684341886081197e-14]","[0.01104938703420757, 2.557953848736099e-13]","[-0.011038735766089021, -2.5579538487360956e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_37_LVCableDist_mvgd_0_lvgd_1004_38,"[0.0008172233413008308, 0.0]","[-0.0008172004752981547, 0.0]","[0.00020481406465834047, 0.0]","[-0.00020480974491895814, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_37_LVCableDist_mvgd_0_lvgd_1004_39,"[0.042870564049173436, -5.68434188608117e-14]","[-0.042849648865157276, 5.684341886081237e-14]","[0.010833921701545395, 2.4868995751600927e-13]","[-0.010823665000908731, -2.486899575160089e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_39_LVCableDist_mvgd_0_lvgd_1004_40,"[0.0008172447272909308, 0.0]","[-0.0008172004752996404, 0.0]","[0.00020481408530586556, 0.0]","[-0.00020480974488086188, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_39_LVCableDist_mvgd_0_lvgd_1004_41,"[0.04203240413778875, -4.263256414561229e-14]","[-0.04201227878223369, 4.2632564145613016e-14]","[0.010618850915693133, 2.629008122312101e-13]","[-0.010608981542945786, -2.6290081223120976e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_3_LVCableDist_mvgd_0_lvgd_1004_4,"[0.0008172232834995548, 0.0]","[-0.0008172004753050852, 0.0]","[0.00020481405374252326, 0.0]","[-0.0002048097449239997, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_3_LVCableDist_mvgd_0_lvgd_1004_5,"[0.011459024589506078, 4.263256414560171e-14]","[-0.011455599177234668, -4.2632564145601657e-14]","[0.002876100645138994, 1.0658141036401668e-14]","[-0.0028744208402566706, -1.0658141036401642e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_3_LVStation_mvgd_0_lvgd_1004,"[0.01228017924205187, 4.97379915032021e-14]","[-0.012276247872961575, -4.973799150320204e-14]","[0.003082842622480439, 1.0658141036401894e-14]","[-0.003080914698928811, -1.0658141036401863e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_41_LVCableDist_mvgd_0_lvgd_1004_42,"[0.0008172233880637655, 0.0]","[-0.0008172004752953892, 0.0]","[0.00020481407349067754, 0.0]","[-0.00020480974491653562, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_41_LVCableDist_mvgd_0_lvgd_1004_43,"[0.04119505539412368, -5.684341886081334e-14]","[-0.041175705034746, 5.684341886081402e-14]","[0.010404167469546687, 2.557953848736088e-13]","[-0.01039467815101163, -2.5579538487360845e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_43_LVCableDist_mvgd_0_lvgd_1004_44,"[0.0008172448160958482, 0.0]","[-0.0008172004752961768, 0.0]","[0.0002048140940098399, 0.0]","[-0.00020480974487412944, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_43_LVCableDist_mvgd_0_lvgd_1004_45,"[0.040358460218575254, -2.8421709430412477e-14]","[-0.04033987003110696, 2.8421709430413146e-14]","[0.01018986405705935, 2.4868995751600947e-13]","[-0.010180747522990391, -2.4868995751600917e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_45_LVCableDist_mvgd_0_lvgd_1004_46,"[0.0008172234331637088, 0.0]","[-0.0008172004752966326, 0.0]","[0.00020481408200650683, 0.0]","[-0.0002048097449125273, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_45_LVCableDist_mvgd_0_lvgd_1004_47,"[0.03952264659790781, -2.8421709430412805e-14]","[-0.039504801691023037, 2.842170943041339e-14]","[0.00997593344108725, 2.4158453015840887e-13]","[-0.009967182388853385, -2.4158453015840857e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_47_LVCableDist_mvgd_0_lvgd_1004_48,"[0.0008172449016597597, 0.0]","[-0.0008172004752912953, 0.0]","[0.00020481410239589536, 0.0]","[-0.0002048097448672309, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_47_LVCableDist_mvgd_0_lvgd_1004_49,"[0.038687556789347724, -4.263256414561326e-14]","[-0.0386704422794186, 4.263256414561381e-14]","[0.00976236828652514, 2.2737367544320727e-13]","[-0.009753975417270407, -2.2737367544320697e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_49_LVCableDist_mvgd_0_lvgd_1004_50,"[0.0008172234765651974, 0.0]","[-0.0008172004752835228, 0.0]","[0.00020481409020390315, 0.0]","[-0.0002048097449082386, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_49_LVCableDist_mvgd_0_lvgd_1004_51,"[0.037853218802802985, -4.263256414561343e-14]","[-0.03783681974161908, 4.2632564145613957e-14]","[0.009549161327126821, 2.2026824808560667e-13]","[-0.009541119310324305, -2.2026824808560642e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_51_LVCableDist_mvgd_0_lvgd_1004_52,"[0.0008172449839439087, 0.0]","[-0.0008172004752787579, 0.0]","[0.0002048141104598915, 0.0]","[-0.0002048097448592152, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_51_LVCableDist_mvgd_0_lvgd_1004_53,"[0.03701957475766907, -4.2632564145614745e-14]","[-0.03700387620440009, 4.263256414561531e-14]","[0.00933630519989535, 2.34479102800807e-13]","[-0.009328606708637313, -2.344791028008067e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_53_LVCableDist_mvgd_0_lvgd_1004_54,"[0.0008172235182796531, 0.0]","[-0.0008172004752840133, 0.0]","[0.00020481409808052473, 0.0]","[-0.00020480974490445103, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_53_LVCableDist_mvgd_0_lvgd_1004_55,"[0.03618665268609123, -4.263256414561407e-14]","[-0.03617163963782756, 4.263256414561457e-14]","[0.009123792610630352, 2.1316282072800587e-13]","[-0.009116430287565664, -2.1316282072800567e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_55_LVCableDist_mvgd_0_lvgd_1004_56,"[0.0008172450629338766, 0.0]","[-0.000817200475275549, 0.0]","[0.00020481411820066613, 0.0]","[-0.00020480974485200047, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_55_LVCableDist_mvgd_0_lvgd_1004_57,"[0.03535439457484161, -7.105427357601524e-14]","[-0.03534005203573602, 7.105427357601572e-14]","[0.00891161616936121, 2.0605739337040363e-13]","[-0.008904582660602112, -2.060573933704034e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_57_LVCableDist_mvgd_0_lvgd_1004_58,"[0.0008172235582664524, 0.0]","[-0.0008172004752734307, 0.0]","[0.00020481410563334291, 0.0]","[-0.00020480974490114887, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_57_LVCableDist_mvgd_0_lvgd_1004_59,"[0.03452282847746377, -7.105427357601572e-14]","[-0.03450914139211975, 7.105427357601622e-14]","[0.008699768555010477, 2.060573933704034e-13]","[-0.008693056477466545, -2.0605739337040315e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_59_LVCableDist_mvgd_0_lvgd_1004_60,"[0.0008172451385874862, 0.0]","[-0.0008172004752697561, 0.0]","[0.0002048141256148919, 0.0]","[-0.0002048097448452277, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_59_LVCableDist_mvgd_0_lvgd_1004_61,"[0.033691896253500844, -8.526512829121722e-14]","[-0.033678849573266605, 8.526512829121775e-14]","[0.008488242351841693, 2.131628207280025e-13]","[-0.008481844325730058, -2.1316282072800224e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_5_LVCableDist_mvgd_0_lvgd_1004_6,"[0.0008172445977937491, 0.0]","[-0.000817200475307733, 0.0]","[0.00020481407261363407, 0.0]","[-0.00020480974489106286, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_5_LVCableDist_mvgd_0_lvgd_1004_7,"[0.010638354579469541, 5.684341886080231e-14]","[-0.010635400440470252, -5.684341886080224e-14]","[0.0026696067675382636, 1.0658141036402027e-14]","[-0.002668158072689038, -1.0658141036401995e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_61_LVCableDist_mvgd_0_lvgd_1004_62,"[0.0008172235965319992, 0.0]","[-0.0008172004752735296, 0.0]","[0.00020481411285973986, 0.0]","[-0.00020480974489861455, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_61_LVCableDist_mvgd_0_lvgd_1004_63,"[0.032861625976731236, -8.526512829121775e-14]","[-0.03284920459596186, 8.526512829121831e-14]","[0.00827703021287387, 2.1316282072800224e-13]","[-0.008270938830462553, -2.1316282072800198e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_63_LVCableDist_mvgd_0_lvgd_1004_64,"[0.0008172452108837212, 0.0]","[-0.000817200475269458, 0.0]","[0.0002048141326977054, 0.0]","[-0.00020480974483688737, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_63_LVCableDist_mvgd_0_lvgd_1004_65,"[0.032031959385039055, -9.947598300641784e-14]","[-0.03202014820451654, 9.947598300641834e-14]","[0.00806612469772701, 1.9895196601280044e-13]","[-0.008060332554435728, -1.9895196601280018e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_65_LVCableDist_mvgd_0_lvgd_1004_66,"[0.0008172236330453189, 0.0]","[-0.0008172004752680782, 0.0]","[0.0002048141197538983, 0.0]","[-0.00020480974489381584, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_65_LVCableDist_mvgd_0_lvgd_1004_67,"[0.03120292457149561, -9.947598300641834e-14]","[-0.031191708437589956, 9.947598300641883e-14]","[0.007855518434688938, 1.9895196601280018e-13]","[-0.007850018099254058, -1.9895196601279993e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_67_LVCableDist_mvgd_0_lvgd_1004_68,"[0.0008172452797890562, 0.0]","[-0.0008172004752690335, 0.0]","[0.00020481413944896138, 0.0]","[-0.0002048097448295711, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_67_LVCableDist_mvgd_0_lvgd_1004_69,"[0.030374463157819952, -1.1368683772161883e-13]","[-0.030363826923010324, 1.1368683772161934e-13]","[0.007645203959744097, 1.9184653865519858e-13]","[-0.007639988003897889, -1.9184653865519832e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_69_LVCableDist_mvgd_0_lvgd_1004_70,"[0.0008172236677999998, 0.0]","[-0.0008172004752647826, 0.0]","[0.00020481412631655308, 0.0]","[-0.00020480974489015463, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_69_LVCableDist_mvgd_0_lvgd_1004_71,"[0.029546603255216845, -1.1368683772161823e-13]","[-0.029536531720175573, 1.136868377216187e-13]","[0.007435173877567339, 1.7763568393999778e-13]","[-0.0074302348476362485, -1.776356839399976e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_71_LVCableDist_mvgd_0_lvgd_1004_72,"[0.0008172453452724634, 0.0]","[-0.0008172004752641403, 0.0]","[0.00020481414586571875, 0.0]","[-0.0002048097448229553, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_71_LVCableDist_mvgd_0_lvgd_1004_73,"[0.028719286374928703, -1.2789769243681808e-13]","[-0.028709764346119434, 1.2789769243681851e-13]","[0.007225420701697302, 1.634248292247959e-13]","[-0.00722075114684782, -1.6342482922479568e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_73_LVCableDist_mvgd_0_lvgd_1004_74,"[0.0008172237007688218, 0.0]","[-0.0008172004752499057, 0.0]","[0.00020481413254188344, 0.0]","[-0.00020480974488435724, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_73_LVCableDist_mvgd_0_lvgd_1004_75,"[0.02789254064536965, -1.2789769243681733e-13]","[-0.027883552880077194, 1.2789769243681773e-13]","[0.00701593701424586, 1.4921397450959514e-13]","[-0.007011529459527424, -1.4921397450959494e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_75_LVCableDist_mvgd_0_lvgd_1004_76,"[0.0008172454073108964, 0.0]","[-0.0008172004752571784, 0.0]","[0.00020481415194343228, 0.0]","[-0.00020480974481499052, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_75_LVCableDist_mvgd_0_lvgd_1004_77,"[0.027066307472836004, -1.2789769243681773e-13]","[-0.02705783873381876, 1.2789769243681813e-13]","[0.006806715307484994, 1.4921397450959494e-13]","[-0.006802562280631257, -1.4921397450959476e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_77_LVCableDist_mvgd_0_lvgd_1004_78,"[0.0008172237319566761, 0.0]","[-0.0008172004752411735, 0.0]","[0.00020481413843310119, 0.0]","[-0.0002048097448820602, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_77_LVCableDist_mvgd_0_lvgd_1004_79,"[0.02624061500186394, -1.2789769243681564e-13]","[-0.026232650005351223, 1.2789769243681596e-13]","[0.006597748142141183, 1.2079226507919363e-13]","[-0.0065938421480681705, -1.2079226507919345e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_79_LVCableDist_mvgd_0_lvgd_1004_80,"[0.0008172454658749821, 0.0]","[-0.0008172004752429561, 0.0]","[0.00020481415768235474, 0.0]","[-0.00020480974480830127, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_79_LVCableDist_mvgd_0_lvgd_1004_81,"[0.02541540453955814, -1.2789769243681596e-13]","[-0.025407928006935185, 1.278976924368163e-13]","[0.006389027990231782, 1.2079226507919345e-13]","[-0.006385361536383965, -1.2079226507919328e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_7_LVCableDist_mvgd_0_lvgd_1004_8,"[0.0008172233113210595, 0.0]","[-0.0008172004753141291, 0.0]","[0.0002048140589967044, 0.0]","[-0.0002048097449239795, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_7_LVCableDist_mvgd_0_lvgd_1004_9,"[0.009818177129199746, 2.8421709430401168e-14]","[-0.009815659514410161, -2.8421709430401142e-14]","[0.0024633440136283577, 3.552713678800918e-15]","[-0.002462109388047476, -3.552713678800909e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1004_81_LVCableDist_mvgd_0_lvgd_1004_82,"[0.0008172237613532086, 0.0]","[-0.0008172004752404074, 0.0]","[0.00020481414398496254, 0.0]","[-0.00020480974488031997, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_81_LVCableDist_mvgd_0_lvgd_1004_83,"[0.02459070424559751, -1.136868377216157e-13]","[-0.02458370085439086, 1.1368683772161598e-13]","[0.006180547392338235, 1.207922650791946e-13]","[-0.006177112964651986, -1.2079226507919446e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_83_LVCableDist_mvgd_0_lvgd_1004_84,"[0.0008172455209634807, 0.0]","[-0.00081720047524313, 0.0]","[0.00020481416307882239, 0.0]","[-0.00020480974480146995, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_83_LVCableDist_mvgd_0_lvgd_1004_85,"[0.023766455333426258, -9.947598300641473e-14]","[-0.02375990976600079, 9.947598300641495e-14]","[0.005972298801410777, 1.136868377215955e-13]","[-0.005969088888195179, -1.1368683772159537e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_85_LVCableDist_mvgd_0_lvgd_1004_86,"[0.0008172237889389264, 0.0]","[-0.0008172004752396215, 0.0]","[0.00020481414919040788, 0.0]","[-0.00020480974487425082, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_85_LVCableDist_mvgd_0_lvgd_1004_87,"[0.02294268597712114, -1.1368683772161555e-13]","[-0.022936582874672887, 1.136868377216158e-13]","[0.005764274738907486, 1.1368683772159402e-13]","[-0.005761281808282623, -1.1368683772159389e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_87_LVCableDist_mvgd_0_lvgd_1004_88,"[0.0008172455725322318, 0.0]","[-0.0008172004752351335, 0.0]","[0.0002048141681313236, 0.0]","[-0.00020480974479510268, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_87_LVCableDist_mvgd_0_lvgd_1004_89,"[0.022119337302169844, -9.947598300641658e-14]","[-0.02211366131041565, 9.947598300641684e-14]","[0.00555646763996533, 1.2789769243679587e-13]","[-0.005553684162268266, -1.2789769243679574e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_89_LVCableDist_mvgd_0_lvgd_1004_90,"[0.0008172238147028904, 0.0]","[-0.0008172004752387028, 0.0]","[0.00020481415405610681, 0.0]","[-0.00020480974487256738, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_89_LVCableDist_mvgd_0_lvgd_1004_91,"[0.021296437495785726, -9.947598300641475e-14]","[-0.021291173221981933, 9.947598300641499e-14]","[0.005348870008113671, 1.0658141036399482e-13]","[-0.005346288434820638, -1.0658141036399472e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_91_LVCableDist_mvgd_0_lvgd_1004_92,"[0.0008172456205756285, 0.0]","[-0.0008172004752336262, 0.0]","[0.0002048141728369657, 0.0]","[-0.0002048097447882946, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_91_LVCableDist_mvgd_0_lvgd_1004_93,"[0.020473927601451752, -1.1368683772161701e-13]","[-0.020469059657057972, 1.1368683772161732e-13]","[0.0051414742617654895, 1.207922650791939e-13]","[-0.0051390870464139825, -1.2079226507919378e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_93_LVCableDist_mvgd_0_lvgd_1004_94,"[0.0008172238386189356, 0.0]","[-0.0008172004752216236, 0.0]","[0.00020481415857428808, 0.0]","[-0.0002048097448694135, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_93_LVCableDist_mvgd_0_lvgd_1004_95,"[0.019651835818517666, -1.1368683772161587e-13]","[-0.01964734877925859, 1.136868377216161e-13]","[0.0049342728876997834, 1.0658141036399314e-13]","[-0.0049320724663030726, -1.0658141036399302e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1004_95_LVCableDist_mvgd_0_lvgd_1004_96,"[0.0008172456650715705, 0.0]","[-0.0008172004752354334, 0.0]","[0.00020481417719561882, 0.0]","[-0.00020480974478277226, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_95_LVCableDist_mvgd_0_lvgd_1004_97,"[0.018830103114270132, -8.526512829121336e-14]","[-0.018825981559756236, 8.526512829121355e-14]","[0.004727258288884428, 9.237055564879533e-14]","[-0.004725237099361348, -9.237055564879525e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1004_97_LVCableDist_mvgd_0_lvgd_1004_98,"[0.0008172238607140018, 0.0]","[-0.0008172004752247589, 0.0]","[0.00020481416274367031, 0.0]","[-0.00020480974486529046, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1004_97_LVCableDist_mvgd_0_lvgd_1004_99,"[0.01800875769907853, -9.947598300641493e-14]","[-0.018004986175927003, 9.947598300641511e-14]","[0.004520422936442909, 9.947598300639408e-14]","[-0.004518573400532557, -9.947598300639398e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_100_LVCableDist_mvgd_0_lvgd_1005_99,"[0.0015170604567467725, 0.0]","[-0.0015168938856641315, 0.0]","[0.00038018575181069346, -0.0]","[-0.0003801694138048569, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_101_LVCableDist_mvgd_0_lvgd_1005_102,"[0.001516980091835654, 0.0]","[-0.0015168938847400166, 0.0]","[0.0003801857169545054, -0.0]","[-0.0003801694311090372, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_101_LVCableDist_mvgd_0_lvgd_1005_103,"[0.021267443189981354, 9.947598300640832e-14]","[-0.021261816089871828, -9.947598300640821e-14]","[0.0053368987387302225, 4.263256414559656e-14]","[-0.005334139237248841, -4.2632564145596526e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_101_LVCableDist_mvgd_0_lvgd_1005_99,"[0.022790881675967423, 5.684341886080762e-14]","[-0.022784423263735476, -5.6843418860807535e-14]","[0.005720251670466629, 7.105427357600079e-14]","[-0.005717084497717868, -7.105427357600075e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_103_LVCableDist_mvgd_0_lvgd_1005_104,"[0.0015170606492197966, 0.0]","[-0.0015168938850886671, 0.0]","[0.0003801857699923039, -0.0]","[-0.0003801694130514441, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_103_LVCableDist_mvgd_0_lvgd_1005_105,"[0.019744755459990913, 5.684341886080535e-14]","[-0.019739902667407234, -5.68434188608053e-14]","[0.004953953406013486, 3.5527136787998654e-14]","[-0.00495157362103315, -3.5527136787998616e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_105_LVCableDist_mvgd_0_lvgd_1005_106,"[0.0015169801843132418, 0.0]","[-0.0015168938841768555, 0.0]","[0.000380185734162558, -0.0]","[-0.00038016943074026217, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_105_LVCableDist_mvgd_0_lvgd_1005_107,"[0.018222922502113437, 7.105427357600651e-14]","[-0.01821878687343946, -7.105427357600646e-14]","[0.004571387842254693, 4.263256414559818e-14]","[-0.004569359750834575, -4.2632564145598154e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_107_LVCableDist_mvgd_0_lvgd_1005_108,"[0.0015170608154265587, 0.0]","[-0.0015168938845775556, 0.0]","[0.00038018578568547697, -0.0]","[-0.0003801694123922133, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_107_LVCableDist_mvgd_0_lvgd_1005_109,"[0.016701726078251725, 1.421085471520247e-14]","[-0.016698250484356213, -1.4210854715202458e-14]","[0.004189173901136889, 2.8421709430400732e-14]","[-0.0041874694874394856, -2.8421709430400723e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_109_LVCableDist_mvgd_0_lvgd_1005_110,"[0.0015169802632286414, 0.0]","[-0.0015168938837044402, 0.0]","[0.0003801857488415548, -0.0]","[-0.00038016943042168053, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_109_LVCableDist_mvgd_0_lvgd_1005_111,"[0.015181270241041794, 1.2589544330128497e-27]","[-0.015178397434146512, -1.2529311239345901e-27]","[0.0038072836917289205, 2.1316282072801172e-14]","[-0.003805874881732838, -2.1316282072801172e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_10_LVCableDist_mvgd_0_lvgd_1005_9,"[0.0015169744960959524, 0.0]","[-0.0015168939069610246, 0.0]","[0.0003801846703970221, -0.0]","[-0.0003801694458706866, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_111_LVCableDist_mvgd_0_lvgd_1005_112,"[0.0015170609552550248, 0.0]","[-0.0015168938841501809, 0.0]","[0.0003801857988819995, -0.0]","[-0.0003801694118318418, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_111_LVCableDist_mvgd_0_lvgd_1005_113,"[0.013661336499942982, -4.263256414560067e-14]","[-0.013659009244436207, 4.263256414560069e-14]","[0.003425689016504409, 2.842170943040407e-14]","[-0.0034245477421546546, -2.842170943040406e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_113_LVCableDist_mvgd_0_lvgd_1005_114,"[0.0015169803284969046, 0.0]","[-0.0015168938833004632, 0.0]","[0.00038018576098008017, -0.0]","[-0.00038016943015371026, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_113_LVCableDist_mvgd_0_lvgd_1005_115,"[0.012142028936502609, -5.6843418860801893e-14]","[-0.012140189898604893, 5.684341886080193e-14]","[0.0030443619323751885, 2.1316282072804492e-14]","[-0.003043460077475811, -2.1316282072804473e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_115_LVCableDist_mvgd_0_lvgd_1005_116,"[0.0015170610685836913, 0.0]","[-0.001516893883795821, 0.0]","[0.00038018580957411034, -0.0]","[-0.00038016941137343404, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_115_LVCableDist_mvgd_0_lvgd_1005_117,"[0.01062312885176225, -4.263256414560196e-14]","[-0.0106217207075426, 4.263256414560198e-14]","[0.0026632741996238728, 7.105427357602862e-15]","[-0.0026625836528085525, -7.10542735760285e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1005_117_LVCableDist_mvgd_0_lvgd_1005_118,"[0.0015169803800752038, 0.0]","[-0.0015168938829740043, 0.0]","[0.0003801857705744025, -0.0]","[-0.0003801694299424259, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_117_LVCableDist_mvgd_0_lvgd_1005_119,"[0.009104740348592632, -4.2632564145601575e-14]","[-0.009103705696520008, 4.263256414560159e-14]","[0.0022823978319308873, 1.4210854715203247e-14]","[-0.002281890443778634, -1.4210854715203237e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_119_LVCableDist_mvgd_0_lvgd_1005_120,"[0.0015170611553337989, 0.0]","[-0.0015168938835256542, 0.0]","[0.0003801858177556012, -0.0]","[-0.00038016941101960336, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_119_LVCableDist_mvgd_0_lvgd_1005_121,"[0.0075866445634141634, -5.6843418860801584e-14]","[-0.007585926009488331, 5.684341886080163e-14]","[0.0019017045562446044, 2.842170943040485e-14]","[-0.0019013521810274955, -2.8421709430404834e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_11_LVCableDist_mvgd_0_lvgd_1005_12,"[0.0015170500729212379, 0.0]","[-0.0015168939066876556, 0.0]","[0.00038018475858300944, -0.0]","[-0.0003801694411293717, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_11_LVCableDist_mvgd_0_lvgd_1005_13,"[0.09149435480043701, 4.2632564145626326e-14]","[-0.0913965440331923, -4.263256414562587e-14]","[0.023406991130335186, 2.0605739337042138e-13]","[-0.023359025223944094, -2.0605739337042113e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_11_LVCableDist_mvgd_0_lvgd_1005_9,"[0.09311248197159327, 7.105427357603112e-14]","[-0.09301140488510562, -7.10542735760306e-14]","[0.023836743558547643, 2.131628207280196e-13]","[-0.023787175865692102, -2.1316282072801935e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_121_LVCableDist_mvgd_0_lvgd_1005_122,"[0.0015169804179411479, 0.0]","[-0.0015168938827437581, 0.0]","[0.0003801857776157185, -0.0]","[-0.000380169429786786, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_121_LVCableDist_mvgd_0_lvgd_1005_123,"[0.006068945613107295, -5.684341886080324e-14]","[-0.0060684857063656025, 5.684341886080327e-14]","[0.0015211663519534764, 3.2168105589599488e-27]","[-0.0015209408160095088, -3.1969265741622992e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1005_123_LVCableDist_mvgd_0_lvgd_1005_124,"[0.0015170612154333748, 0.0]","[-0.0015168938833366424, 0.0]","[0.0003801858234232831, -0.0]","[-0.0003801694107739223, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_123_LVCableDist_mvgd_0_lvgd_1005_125,"[0.004551424513465078, -5.684341886080287e-14]","[-0.004551165808158318, 5.68434188608029e-14]","[0.0011407549217430138, 7.105427357603605e-15]","[-0.0011406280539668322, -7.10542735760359e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1005_125_LVCableDist_mvgd_0_lvgd_1005_126,"[0.0015169804420525595, 0.0]","[-0.0015168938825977389, 0.0]","[0.000380185782098202, -0.0]","[-0.00038016942968666795, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_125_LVCableDist_mvgd_0_lvgd_1005_127,"[0.0030341853880048075, -2.8421709430400855e-14]","[-0.003034070402110411, 2.8421709430400865e-14]","[0.0007604422196910245, 1.4210854715202414e-14]","[-0.0007603858311889991, -1.421085471520241e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_127_LVCableDist_mvgd_0_lvgd_1005_128,"[0.001517061248836551, 0.0]","[-0.0015168938832307208, 0.0]","[0.00038018582657245556, -0.0]","[-0.0003801694106363787, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_127_LVCableDist_mvgd_0_lvgd_1005_129,"[0.001517009175984218, -1.4210854715201224e-14]","[-0.0015169804303759137, 1.4210854715201226e-14]","[0.0003801999332027206, -7.105427357599623e-15]","[-0.00038018583650155027, 7.105427357599624e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1005_129_LVCableDist_mvgd_0_lvgd_1005_130,"[0.001516980452381006, 0.0]","[-0.0015168938825267536, 0.0]","[0.00038018578402011826, -0.0]","[-0.0003801694296439715, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_131_LVCableDist_mvgd_0_lvgd_1005_132,"[0.0015169744351398082, 0.0]","[-0.0015168939071253677, 0.0]","[0.00038018465895740176, -0.0]","[-0.0003801694459776657, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_131_LVCableDist_mvgd_0_lvgd_1005_133,"[0.10495233997539212, 1.1368683772160692e-12]","[-0.10487539583434016, -1.1368683772160591e-12]","[0.026732967608453728, -6.252776074690053e-13]","[-0.026695234590187883, 6.252776074690105e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_131_LVStation_mvgd_0_lvgd_1005,"[0.10654849671510577, 1.1652900866464835e-12]","[-0.1064693144176716, -1.1652900866464726e-12]","[0.0271519828496475, -6.252776074690034e-13]","[-0.027113152250792708, 6.252776074690085e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_133_LVCableDist_mvgd_0_lvgd_1005_134,"[0.0015170498385456285, 0.0]","[-0.001516893907013105, 0.0]","[0.0003801847359763491, -0.0]","[-0.0003801694415431972, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_133_LVCableDist_mvgd_0_lvgd_1005_135,"[0.10335834598909921, 1.165290086646457e-12]","[-0.10328360971830447, -1.1652900866464462e-12]","[0.026315049866060654, -6.67910171614619e-13]","[-0.026278399576220968, 6.679101716146243e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_135_LVCableDist_mvgd_0_lvgd_1005_136,"[0.001516974682855343, 0.0]","[-0.0015168939065880083, 0.0]","[0.00038018470549667404, -0.0]","[-0.00038016944561815037, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_135_LVCableDist_mvgd_0_lvgd_1005_137,"[0.10176663502879756, 1.1368683772160484e-12]","[-0.10169407603970121, -1.1368683772160381e-12]","[0.025898214886254163, -6.252776074690159e-13]","[-0.025862632324365854, 6.252776074690209e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_137_LVCableDist_mvgd_0_lvgd_1005_138,"[0.001517050312107468, 0.0]","[-0.0015168939064812265, 0.0]","[0.00038018478178394226, -0.0]","[-0.00038016944084964636, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_137_LVCableDist_mvgd_0_lvgd_1005_139,"[0.10017702572150167, 1.1368683772160343e-12]","[-0.1001066135337177, -1.1368683772160236e-12]","[0.025482447552925364, -6.53699316899424e-13]","[-0.025447917771561034, 6.536993168994292e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_139_LVCableDist_mvgd_0_lvgd_1005_140,"[0.0015169749244167223, 0.0]","[-0.0015168939060401956, 0.0]","[0.00038018475087134453, -0.0]","[-0.0003801694452546729, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_139_LVCableDist_mvgd_0_lvgd_1005_141,"[0.0985896386032383, 1.1368683772160296e-12]","[-0.09852134244127103, -1.1368683772160195e-12]","[0.02506773303506076, -6.110667527538248e-13]","[-0.025034240942072697, 6.110667527538299e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_13_LVCableDist_mvgd_0_lvgd_1005_14,"[0.0015169748631195103, 0.0]","[-0.0015168939060809534, 0.0]","[0.00038018473931596575, -0.0]","[-0.00038016944528697946, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_13_LVCableDist_mvgd_0_lvgd_1005_15,"[0.08987956915841383, 4.2632564145625165e-14]","[-0.08978497451962901, -4.263256414562476e-14]","[0.022978840511877142, 1.9895196601282025e-13]","[-0.02293245177864391, -1.9895196601282008e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_141_LVCableDist_mvgd_0_lvgd_1005_142,"[0.0015170507736806458, 0.0]","[-0.001516893905938177, 0.0]","[0.00038018482640435976, -0.0]","[-0.0003801694401437231, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_141_LVCableDist_mvgd_0_lvgd_1005_143,"[0.09700429166211179, 1.1084466677856103e-12]","[-0.09693808085578759, -1.1084466677856002e-12]","[0.024654056124417463, -6.536993168994299e-13]","[-0.0246215866793074, 6.536993168994346e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_143_LVCableDist_mvgd_0_lvgd_1005_144,"[0.001516975159718481, 0.0]","[-0.0015168939054779895, 0.0]","[0.00038018479505835595, -0.0]","[-0.00038016944488335593, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_143_LVCableDist_mvgd_0_lvgd_1005_145,"[0.09542110569064505, 1.1084466677856046e-12]","[-0.09535694928214102, -1.1084466677855945e-12]","[0.024241401897245916, -6.252776074690321e-13]","[-0.024209939918453813, 6.252776074690371e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_145_LVCableDist_mvgd_0_lvgd_1005_146,"[0.001517051223077836, 0.0]","[-0.0015168939053910742, 0.0]","[0.0003801848698182135, -0.0]","[-0.00038016943942511194, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_145_LVCableDist_mvgd_0_lvgd_1005_147,"[0.09383989805433103, 1.0231815394943872e-12]","[-0.09377776518826074, -1.0231815394943783e-12]","[0.023829755055649254, -6.252776074690231e-13]","[-0.023799285411849388, 6.252776074690273e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_147_LVCableDist_mvgd_0_lvgd_1005_148,"[0.0015169753886755592, 0.0]","[-0.001516893904915887, 0.0]","[0.0003801848380399831, -0.0]","[-0.0003801694445052819, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_147_LVCableDist_mvgd_0_lvgd_1005_149,"[0.09226078979490375, 1.0516032489247829e-12]","[-0.09220064933582585, -1.051603248924774e-12]","[0.023419100585376, -6.110667527538311e-13]","[-0.023389608007905145, 6.110667527538355e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_149_LVCableDist_mvgd_0_lvgd_1005_150,"[0.0015170516600998879, 0.0]","[-0.0015168939048313187, 0.0]","[0.0003801849120114833, -0.0]","[-0.0003801694386984822, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_149_LVCableDist_mvgd_0_lvgd_1005_151,"[0.09068359767159977, 9.947598300639722e-13]","[-0.09062541858359, -9.947598300639638e-13]","[0.023009423101047657, -5.968558980386241e-13]","[-0.02298089237004527, 5.968558980386283e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_151_LVCableDist_mvgd_0_lvgd_1005_152,"[0.0015169756111800185, 0.0]","[-0.0015168939043434485, 0.0]","[0.00038018487980218634, -0.0]","[-0.00038016944412483004, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_151_LVCableDist_mvgd_0_lvgd_1005_153,"[0.08910844296845921, 1.0231815394943686e-12]","[-0.08905219394326364, -1.0231815394943597e-12]","[0.022600707500256424, -5.826450433234326e-13]","[-0.02257312326231285, 5.826450433234366e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_153_LVCableDist_mvgd_0_lvgd_1005_154,"[0.0015170520845724698, 0.0]","[-0.001516893904271057, 0.0]","[0.0003801849529663576, -0.0]","[-0.0003801694379643132, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_153_LVCableDist_mvgd_0_lvgd_1005_155,"[0.08753514185533236, 9.94759830063955e-13]","[-0.08748079168126141, -9.94759830063947e-13]","[0.022192938312534993, -5.968558980386322e-13]","[-0.02216628526159528, 5.968558980386362e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_155_LVCableDist_mvgd_0_lvgd_1005_156,"[0.0015169758271394468, 0.0]","[-0.001516893903763609, 0.0]","[0.0003801849203248464, -0.0]","[-0.000380169443739894, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_155_LVCableDist_mvgd_0_lvgd_1005_157,"[0.08596381585093349, 9.379164112031517e-13]","[-0.08591133305182182, -9.379164112031444e-13]","[0.02178610034966832, -5.542233338930222e-13]","[-0.021760363049979883, 5.542233338930259e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_157_LVCableDist_mvgd_0_lvgd_1005_158,"[0.0015170524963096848, 0.0]","[-0.0015168939037066257, 0.0]","[0.00038018499266693275, -0.0]","[-0.0003801694372245754, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_157_LVCableDist_mvgd_0_lvgd_1005_159,"[0.08439428055293491, 9.379164112031386e-13]","[-0.08434363374619644, -9.379164112031311e-13]","[0.021380178058431766, -5.826450433234276e-13]","[-0.021355341120132872, 5.826450433234313e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_159_LVCableDist_mvgd_0_lvgd_1005_160,"[0.001516976036475311, 0.0]","[-0.0015168939031909399, 0.0]","[0.00038018495959424157, -0.0]","[-0.0003801694433543407, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_159_LVCableDist_mvgd_0_lvgd_1005_161,"[0.08282665770729142, 8.810729923423339e-13]","[-0.0827778152538436, -8.810729923423271e-13]","[0.020975156167155586, -5.542233338930177e-13]","[-0.020951204074599883, 5.542233338930209e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_15_LVCableDist_mvgd_0_lvgd_1005_16,"[0.001517050774056306, 0.0]","[-0.0015168939058004293, 0.0]","[0.0003801848262942759, -0.0]","[-0.00038016943998328204, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_15_LVCableDist_mvgd_0_lvgd_1005_17,"[0.0882679237343933, 4.263256414562406e-14]","[-0.08817649510104628, -4.2632564145623656e-14]","[0.02255226697406778, 1.918465386552192e-13]","[-0.022507430833915473, -1.9184653865521897e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_161_LVCableDist_mvgd_0_lvgd_1005_162,"[0.0015170528951344473, 0.0]","[-0.0015168939031387498, 0.0]","[0.00038018503109943716, -0.0]","[-0.0003801694364829378, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_161_LVCableDist_mvgd_0_lvgd_1005_163,"[0.08126076235701739, 8.526512829119224e-13]","[-0.08121369270834007, -8.52651282911916e-13]","[0.020571019042509405, -5.684341886082156e-13]","[-0.02054793632446192, 5.684341886082186e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_163_LVCableDist_mvgd_0_lvgd_1005_164,"[0.0015169762390767685, 0.0]","[-0.0015168939026053753, 0.0]","[0.00038018499759158724, -0.0]","[-0.00038016944296653473, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_163_LVCableDist_mvgd_0_lvgd_1005_165,"[0.0796967164677055, 8.526512829119222e-13]","[-0.07965138782688402, -8.526512829119162e-13]","[0.02016775133164097, -5.400124791778172e-13]","[-0.020145522395055293, 5.400124791778203e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_165_LVCableDist_mvgd_0_lvgd_1005_166,"[0.0015170532808756344, 0.0]","[-0.0015168939025695279, 0.0]","[0.00038018506824835007, -0.0]","[-0.0003801694357408698, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_165_LVCableDist_mvgd_0_lvgd_1005_167,"[0.07813433454512626, 8.526512829119129e-13]","[-0.07809071520276097, -8.526512829119066e-13]","[0.019765337323569665, -5.54223333893021e-13]","[-0.019743946618316327, 5.542233338930242e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_167_LVCableDist_mvgd_0_lvgd_1005_168,"[0.001516976434875966, 0.0]","[-0.001516893902027417, 0.0]","[0.0003801850343039822, -0.0]","[-0.00038016944258026646, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_167_LVCableDist_mvgd_0_lvgd_1005_169,"[0.07657373876711922, 8.526512829119199e-13]","[-0.07653179677363692, -8.526512829119138e-13]","[0.019363761586896608, -4.973799150322217e-13]","[-0.019343193445066218, 4.973799150322246e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_169_LVCableDist_mvgd_0_lvgd_1005_170,"[0.001517053653372076, 0.0]","[-0.001516893902006249, 0.0]","[0.00038018510409963365, -0.0]","[-0.0003801694350008567, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_169_LVCableDist_mvgd_0_lvgd_1005_171,"[0.07501474312030247, 8.526512829119138e-13]","[-0.07497444661056768, -8.526512829119079e-13]","[0.018963008335433212, -4.973799150322246e-13]","[-0.018943247130524227, 4.973799150322275e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_171_LVCableDist_mvgd_0_lvgd_1005_172,"[0.0015169766237842768, 0.0]","[-0.0015168939014542923, 0.0]","[0.0003801850697148796, -0.0]","[-0.0003801694421952081, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_171_LVCableDist_mvgd_0_lvgd_1005_173,"[0.07345746998691119, 7.958078640511024e-13]","[-0.07341878686395192, -7.958078640510968e-13]","[0.018563062061712533, -5.115907697474141e-13]","[-0.01854409205353197, 5.115907697474167e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_173_LVCableDist_mvgd_0_lvgd_1005_174,"[0.0015170540124543584, 0.0]","[-0.0015168939014430383, 0.0]","[0.0003801851386383703, -0.0]","[-0.00038016943426402174, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_173_LVCableDist_mvgd_0_lvgd_1005_175,"[0.07190173285235667, 7.958078640510933e-13]","[-0.07186463110053268, -7.958078640510876e-13]","[0.01816390690695064, -5.258016244626171e-13]","[-0.018145712395190177, 5.258016244626198e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_175_LVCableDist_mvgd_0_lvgd_1005_176,"[0.0015169768057165206, 0.0]","[-0.0015168939008840861, 0.0]","[0.00038018510380920885, -0.0]","[-0.0003801694418120193, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_175_LVCableDist_mvgd_0_lvgd_1005_177,"[0.07034765429583706, 7.958078640510914e-13]","[-0.07031210167612094, -7.958078640510859e-13]","[0.01776552729028667, -5.115907697474195e-13]","[-0.01774809246509002, 5.115907697474222e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_177_LVCableDist_mvgd_0_lvgd_1005_178,"[0.0015170543579666716, 0.0]","[-0.0015168939008825377, 0.0]","[0.00038018517185352615, -0.0]","[-0.0003801694335348724, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_177_LVCableDist_mvgd_0_lvgd_1005_179,"[0.06879504731991878, 7.105427357598838e-13]","[-0.0687610116714809, -7.105427357598789e-13]","[0.017367907282933897, -5.115907697473998e-13]","[-0.017351216372792605, 5.115907697474021e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_179_LVCableDist_mvgd_0_lvgd_1005_180,"[0.001516976980586867, 0.0]","[-0.001516893900311563, 0.0]","[0.00038018513657478366, -0.0]","[-0.00038016944143373925, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_179_LVCableDist_mvgd_0_lvgd_1005_181,"[0.06724403469277984, 7.105427357598789e-13]","[-0.06721148363996188, -7.105427357598743e-13]","[0.01697103123301491, -5.115907697474021e-13]","[-0.016955068361069615, 5.115907697474044e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_17_LVCableDist_mvgd_0_lvgd_1005_18,"[0.001516975220378061, 0.0]","[-0.0015168939051556814, 0.0]","[0.0003801848063703617, -0.0]","[-0.0003801694446749456, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_17_LVCableDist_mvgd_0_lvgd_1005_19,"[0.08665951986963731, 8.526512829122878e-14]","[-0.08657120659108722, -8.526512829122833e-14]","[0.022127246053687693, 1.9184653865521486e-13]","[-0.022083937667797735, -1.9184653865521466e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_181_LVCableDist_mvgd_0_lvgd_1005_182,"[0.001517054689768744, 0.0]","[-0.0015168939003376862, 0.0]","[0.0003801852037317021, -0.0]","[-0.0003801694328150373, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_181_LVCableDist_mvgd_0_lvgd_1005_183,"[0.06569442895287636, 6.252776074686648e-13]","[-0.06566333019505677, -6.252776074686606e-13]","[0.016574883144584232, -5.400124791777817e-13]","[-0.016559632470773224, 5.400124791777838e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_183_LVCableDist_mvgd_0_lvgd_1005_184,"[0.001516977148341318, 0.0]","[-0.001516893899760567, 0.0]","[0.00038018516799771687, -0.0]","[-0.0003801694410611864, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_183_LVCableDist_mvgd_0_lvgd_1005_185,"[0.06414635304953092, 6.252776074686606e-13]","[-0.06411667407992332, -6.252776074686565e-13]","[0.016179447297458925, -5.400124791777838e-13]","[-0.016164892880618287, 5.400124791777858e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_185_LVCableDist_mvgd_0_lvgd_1005_186,"[0.0015170550076956224, 0.0]","[-0.0015168938997913509, 0.0]","[0.0003801852342596859, -0.0]","[-0.0003801694321058031, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_185_LVCableDist_mvgd_0_lvgd_1005_187,"[0.06259961907580766, 6.252776074686565e-13]","[-0.06257132745947548, -6.252776074686522e-13]","[0.015784707631142213, -5.400124791777858e-13]","[-0.015770833565342823, 5.400124791777879e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_187_LVCableDist_mvgd_0_lvgd_1005_188,"[0.0015169773088888432, 0.0]","[-0.0015168938992150866, 0.0]","[0.0003801851980660874, -0.0]","[-0.00038016944069661204, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_187_LVCableDist_mvgd_0_lvgd_1005_189,"[0.06105435015428543, 5.96855898038256e-13]","[-0.06102741325889259, -5.968558980382521e-13]","[0.015390648359854556, -5.258016244625795e-13]","[-0.015377438642363565, 5.258016244625814e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_189_LVCableDist_mvgd_0_lvgd_1005_190,"[0.0015170553116244491, 0.0]","[-0.0015168938992629454, 0.0]","[0.0003801852634279667, -0.0]","[-0.00038016943141161344, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_189_LVCableDist_mvgd_0_lvgd_1005_191,"[0.05951035795178711, 5.968558980382437e-13]","[-0.05948474321363539, -5.968558980382397e-13]","[0.014997253361276854, -5.542233338929817e-13]","[-0.014984692023021077, 5.542233338929838e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_191_LVCableDist_mvgd_0_lvgd_1005_192,"[0.001516977462151168, 0.0]","[-0.0015168938986689594, 0.0]","[0.0003801852267633289, -0.0]","[-0.0003801694403370727, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_191_LVCableDist_mvgd_0_lvgd_1005_193,"[0.0579677657560715, 5.115907697470474e-13]","[-0.05794344042292628, -5.115907697470439e-13]","[0.014604506786672956, -5.258016244625579e-13]","[-0.014592577766121911, 5.258016244625596e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_193_LVCableDist_mvgd_0_lvgd_1005_194,"[0.0015170556014126244, 0.0]","[-0.0015168938987464603, 0.0]","[0.0003801852912241158, -0.0]","[-0.00038016943073343706, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_193_LVCableDist_mvgd_0_lvgd_1005_195,"[0.05642638482689746, 4.2632564145583464e-13]","[-0.0564033162119261, -4.2632564145583166e-13]","[0.01421239245478049, -5.542233338929339e-13]","[-0.014201079722476483, 5.542233338929353e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_195_LVCableDist_mvgd_0_lvgd_1005_196,"[0.0015169776080869491, 0.0]","[-0.0015168938981499763, 0.0]","[0.00038018525408180833, -0.0]","[-0.00038016943998799615, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_195_LVCableDist_mvgd_0_lvgd_1005_197,"[0.05488633860931835, 4.2632564145584483e-13]","[-0.05486449384610846, -4.263256414558421e-13]","[0.013820894456699147, -5.11590769747335e-13]","[-0.013810181895119497, 5.115907697473365e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_197_LVCableDist_mvgd_0_lvgd_1005_198,"[0.0015170558769289776, 0.0]","[-0.0015168938982414886, 0.0]","[0.0003801853176380376, -0.0]","[-0.00038016943007400405, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_197_LVCableDist_mvgd_0_lvgd_1005_199,"[0.0533474379755159, 3.979039320254464e-13]","[-0.05332678425979833, -3.9790393202544396e-13]","[0.013429996554952788, -4.973799150321274e-13]","[-0.01341986807704955, 4.973799150321286e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_199_LVCableDist_mvgd_0_lvgd_1005_200,"[0.0015169777466146083, 0.0]","[-0.0015168938976426486, 0.0]","[0.00038018528000979823, -0.0]","[-0.0003801694396501397, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_199_LVCableDist_mvgd_0_lvgd_1005_201,"[0.05180980651951604, 3.410605131646572e-13]","[-0.05179031087648832, -3.4106051316465523e-13]","[0.013039682783241323, -4.547473508865104e-13]","[-0.013030122218337844, 4.547473508865114e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_19_LVCableDist_mvgd_0_lvgd_1005_20,"[0.001517051456125028, 0.0]","[-0.0015168939048792744, 0.0]","[0.0003801848920874953, -0.0]","[-0.0003801694387859265, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_19_LVCableDist_mvgd_0_lvgd_1005_21,"[0.08505415512454557, 5.68434188608263e-14]","[-0.08496890661561814, -5.684341886082586e-14]","[0.021703752795550223, 2.0605739337041906e-13]","[-0.021661947357208625, -2.0605739337041878e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_1_LVCableDist_mvgd_0_lvgd_1005_2,"[0.16159645639515474, 0.0]","[-0.15999996890179055, 0.0]","[0.040607279970517475, -0.0]","[-0.04009978138337938, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_1_LVStation_mvgd_0_lvgd_1005,"[0.1722397086453353, -3.55271367880055e-15]","[-0.16159645864898176, 3.552713678800554e-15]","[0.04399059623232267, -8.881784196997388e-16]","[-0.040607272305164914, 8.881784196997402e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1005_201_LVCableDist_mvgd_0_lvgd_1005_202,"[0.0015170561380571912, 0.0]","[-0.0015168938977565159, 0.0]","[0.0003801853426607549, -0.0]","[-0.0003801694294365786, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_201_LVCableDist_mvgd_0_lvgd_1005_203,"[0.05027325474562564, 2.842170943038505e-13]","[-0.05025488425934791, -2.842170943038486e-13]","[0.012649936850781043, -4.689582056016932e-13]","[-0.012640928057066623, 4.689582056016941e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_203_LVCableDist_mvgd_0_lvgd_1005_204,"[0.001516977877679516, 0.0]","[-0.0015168938971553197, 0.0]","[0.00038018530453626557, -0.0]","[-0.00038016943932436755, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_203_LVCableDist_mvgd_0_lvgd_1005_205,"[0.04873790638883275, 2.557953848734531e-13]","[-0.04872062798196355, -2.5579538487345144e-13]","[0.012260742736650145, -4.547473508864847e-13]","[-0.012252269493163557, 4.547473508864855e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_205_LVCableDist_mvgd_0_lvgd_1005_206,"[0.0015170563846738912, 0.0]","[-0.0015168938972868868, 0.0]","[0.0003801853662809463, -0.0]","[-0.00038016942882148366, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_205_LVCableDist_mvgd_0_lvgd_1005_207,"[0.04720357160538315, 2.557953848734561e-13]","[-0.04718735225614238, -2.5579538487345446e-13]","[0.011872084099665971, -4.4053649617128554e-13]","[-0.011864130212692961, 4.4053649617128635e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_207_LVCableDist_mvgd_0_lvgd_1005_208,"[0.0015169780012112433, 0.0]","[-0.001516893896677355, 0.0]","[0.00038018532764810126, -0.0]","[-0.0003801694390088662, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_207_LVCableDist_mvgd_0_lvgd_1005_209,"[0.04567037426285847, 2.2737367544306384e-13]","[-0.045655180797277296, -2.2737367544306242e-13]","[0.011483944867154726, -4.121147867408768e-13]","[-0.0114764940683485, 4.121147867408774e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_209_LVCableDist_mvgd_0_lvgd_1005_210,"[0.001517056616666414, 0.0]","[-0.0015168938968324465, 0.0]","[0.00038018538849106555, -0.0]","[-0.0003801694282322083, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_209_LVCableDist_mvgd_0_lvgd_1005_211,"[0.04413812418945752, 2.273736754430672e-13]","[-0.04412392348580758, -2.273736754430659e-13]","[0.011096308650331281, -3.9790393202567736e-13]","[-0.011089344696963483, 3.9790393202567797e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_211_LVCableDist_mvgd_0_lvgd_1005_212,"[0.0015169781171747439, 0.0]","[-0.0015168938962302583, 0.0]","[0.00038018534933973136, -0.0]","[-0.0003801694387087452, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_211_LVCableDist_mvgd_0_lvgd_1005_213,"[0.04260694537740149, 2.5579538487348526e-13]","[-0.04259370417105525, -2.557953848734842e-13]","[0.01070915932777079, -3.4106051316488747e-13]","[-0.010702665907036035, 3.410605131648881e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_213_LVCableDist_mvgd_0_lvgd_1005_214,"[0.001517056833937318, 0.0]","[-0.001516893896401933, 0.0]","[0.00038018540928305743, -0.0]","[-0.000380169427671112, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_213_LVCableDist_mvgd_0_lvgd_1005_215,"[0.04107664734666272, 1.7053025658228887e-13]","[-0.04106433242189386, -1.70530256582288e-13]","[0.01032248046602751, -3.268496584496589e-13]","[-0.010316441289101329, 3.268496584496593e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_215_LVCableDist_mvgd_0_lvgd_1005_216,"[0.001516978225515322, 0.0]","[-0.0015168938958125854, 0.0]","[0.0003801853696024322, -0.0]","[-0.0003801694384253407, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_215_LVCableDist_mvgd_0_lvgd_1005_217,"[0.0395473542059045, 2.2737367544310279e-13]","[-0.03953593221344936, -2.2737367544310193e-13]","[0.009936255897784366, -2.8421709430407875e-13]","[-0.009930654610356237, 2.842170943040792e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_217_LVCableDist_mvgd_0_lvgd_1005_218,"[0.0015170570363899924, 0.0]","[-0.0015168938959984795, 0.0]","[0.0003801854286491135, -0.0]","[-0.00038016942714016934, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_217_LVCableDist_mvgd_0_lvgd_1005_219,"[0.03801887518742276, 2.8421709430389215e-13]","[-0.038008312823562145, -2.8421709430389114e-13]","[0.009550469147896229, -3.126388037344989e-13]","[-0.009545289417990425, 3.1263880373449947e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_219_LVCableDist_mvgd_0_lvgd_1005_220,"[0.0015169783261542204, 0.0]","[-0.001516893895395477, 0.0]","[0.00038018538842292003, -0.0]","[-0.0003801694381547954, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_219_LVCableDist_mvgd_0_lvgd_1005_221,"[0.03649133450760719, 2.8421709430390103e-13]","[-0.03648159834451438, -2.8421709430389997e-13]","[0.009165104006011554, -2.8421709430409945e-13]","[-0.009160329440790635, 2.842170943040999e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_21_LVCableDist_mvgd_0_lvgd_1005_22,"[0.0015169755676385124, 0.0]","[-0.0015168939041985366, 0.0]","[0.00038018487151641897, -0.0]","[-0.00038016944403734647, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_21_LVCableDist_mvgd_0_lvgd_1005_23,"[0.08345193103776302, 8.526512829122785e-14]","[-0.08336969619982161, -8.52651282912274e-14]","[0.021281762510400426, 1.9184653865521448e-13]","[-0.021241434961093746, -1.9184653865521425e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_221_LVCableDist_mvgd_0_lvgd_1005_222,"[0.0015170572239224076, 0.0]","[-0.0015168938956132611, 0.0]","[0.0003801854465819737, -0.0]","[-0.0003801694266412625, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_221_LVCableDist_mvgd_0_lvgd_1005_223,"[0.03496454113167418, 2.8421709430389497e-13]","[-0.03495559778369392, -2.84217094303894e-13]","[0.008780143958388322, -2.984279490192999e-13]","[-0.008775758185695521, 2.984279490193004e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_223_LVCableDist_mvgd_0_lvgd_1005_224,"[0.0015169784190957449, 0.0]","[-0.0015168938950297205, 0.0]","[0.00038018540579875203, -0.0]","[-0.00038016943790344774, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_223_LVCableDist_mvgd_0_lvgd_1005_225,"[0.03343861937548372, 2.5579538487350914e-13]","[-0.03343043534234615, -2.5579538487350833e-13]","[0.00839557275464764, -2.557953848736904e-13]","[-0.008391559346119758, 2.557953848736908e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_225_LVCableDist_mvgd_0_lvgd_1005_226,"[0.0015170573964628411, 0.0]","[-0.0015168938952611168, 0.0]","[0.00038018546307441714, -0.0]","[-0.00038016942617566076, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_225_LVCableDist_mvgd_0_lvgd_1005_227,"[0.03191337795761114, 2.557953848734982e-13]","[-0.03190591977782989, -2.557953848734973e-13]","[0.008011373845350464, -2.842170943040907e-13]","[-0.008007716391643542, 2.8421709430409117e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_227_LVCableDist_mvgd_0_lvgd_1005_228,"[0.0015169785042538231, 0.0]","[-0.0015168938946722766, 0.0]","[0.00038018542172077354, -0.0]","[-0.0003801694376702727, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_227_LVCableDist_mvgd_0_lvgd_1005_229,"[0.030388941285083425, 2.2737367544310756e-13]","[-0.030382175392108836, -2.2737367544310685e-13]","[0.007627530943047816, -2.55795384873681e-13]","[-0.007624212983295398, 2.557953848736814e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_229_LVCableDist_mvgd_0_lvgd_1005_230,"[0.001517057553920158, 0.0]","[-0.001516893894930746, 0.0]","[0.0003801854781199179, -0.0]","[-0.00038016942574466877, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_229_LVCableDist_mvgd_0_lvgd_1005_231,"[0.028865117850563324, 1.9895196601269666e-13]","[-0.028859010713227468, -1.9895196601269595e-13]","[0.007244027465707722, -2.84217094304071e-13]","[-0.0072410325563943495, 2.842170943040714e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_231_LVCableDist_mvgd_0_lvgd_1005_232,"[0.0015169785816130199, 0.0]","[-0.0015168938943472346, 0.0]","[0.00038018543617969475, -0.0]","[-0.0003801694374534472, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_231_LVCableDist_mvgd_0_lvgd_1005_233,"[0.02734203214371362, 1.7053025658230636e-13]","[-0.027336550135390363, -1.7053025658230575e-13]","[0.006860847091867512, -2.5579538487366116e-13]","[-0.006858158742665519, 2.557953848736614e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_233_LVCableDist_mvgd_0_lvgd_1005_234,"[0.001517057696228788, 0.0]","[-0.0015168938946295944, 0.0]","[0.00038018549171407897, -0.0]","[-0.000380169425351051, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_233_LVCableDist_mvgd_0_lvgd_1005_235,"[0.025819492452083936, 1.7053025658230055e-13]","[-0.025814601978114422, -1.7053025658229992e-13]","[0.006477973209854077, -2.7000623958886135e-13]","[-0.006475574946112386, 2.7000623958886165e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_235_LVCableDist_mvgd_0_lvgd_1005_236,"[0.0015169786511448334, 0.0]","[-0.0015168938940620725, 0.0]","[0.00038018544917569393, -0.0]","[-0.0003801694372599465, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_235_LVCableDist_mvgd_0_lvgd_1005_237,"[0.024297623339637565, 1.989519660127155e-13]","[-0.024293290719558734, -1.9895196601271499e-13]","[0.006095389467198952, -2.273736754432723e-13]","[-0.006093264772188542, 2.273736754432726e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_237_LVCableDist_mvgd_0_lvgd_1005_238,"[0.0015170578233203488, 0.0]","[-0.0015168938943554053, 0.0]","[0.00038018550385268224, -0.0]","[-0.0003801694249970756, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_237_LVCableDist_mvgd_0_lvgd_1005_239,"[0.022776232909591354, 1.1368683772150484e-13]","[-0.022772424491481532, -1.1368683772150434e-13]","[0.005713079225791233, -2.557953848736409e-13]","[-0.005711211596779624, 2.5579538487364117e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_239_LVCableDist_mvgd_0_lvgd_1005_240,"[0.0015169787127975664, 0.0]","[-0.0015168938937974935, 0.0]","[0.00038018546069916556, -0.0]","[-0.0003801694370862861, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_239_LVCableDist_mvgd_0_lvgd_1005_241,"[0.02125544579184147, 1.4210854715190422e-13]","[-0.021252127847672837, -1.4210854715190374e-13]","[0.005331026105119108, -2.557953848736517e-13]","[-0.005329399002051763, 2.5579538487365197e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_23_LVCableDist_mvgd_0_lvgd_1005_24,"[0.0015170521186542382, 0.0]","[-0.0015168939039232729, 0.0]","[0.00038018495592256283, -0.0]","[-0.0003801694375435204, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_23_LVCableDist_mvgd_0_lvgd_1005_25,"[0.08185264407164615, 9.947598300642968e-14]","[-0.0817733718692216, -9.947598300642917e-14]","[0.020861250022822696, 1.989519660128138e-13]","[-0.020822375335014548, -1.9895196601281354e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_241_LVCableDist_mvgd_0_lvgd_1005_242,"[0.001517057935143254, 0.0]","[-0.0015168938941157524, 0.0]","[0.00038018551452944564, -0.0]","[-0.00038016942468226285, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_241_LVCableDist_mvgd_0_lvgd_1005_243,"[0.019735069926307178, 1.1368683772150917e-13]","[-0.019732208753157145, -1.1368683772150871e-13]","[0.004949213443642667, -2.4158453015844143e-13]","[-0.004947810338776514, 2.4158453015844164e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_243_LVCableDist_mvgd_0_lvgd_1005_244,"[0.0015169787665525126, 0.0]","[-0.0015168938935635717, 0.0]","[0.0003801854707444275, -0.0]","[-0.0003801694369322209, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_243_LVCableDist_mvgd_0_lvgd_1005_245,"[0.018215230000174533, 8.526512829110884e-14]","[-0.01821279182875163, -8.526512829110842e-14]","[0.004567624835982666, -2.41584530158431e-13]","[-0.0045664291690276785, 2.415845301584312e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_245_LVCableDist_mvgd_0_lvgd_1005_246,"[0.0015170580316418208, 0.0]","[-0.0015168938939070886, 0.0]","[0.00038018552374031984, -0.0]","[-0.0003801694244076774, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_245_LVCableDist_mvgd_0_lvgd_1005_247,"[0.016695733811352163, 1.1368683772151367e-13]","[-0.016693684894024903, -1.1368683772151328e-13]","[0.004186243600236158, -2.2737367544324195e-13]","[-0.004185238821524257, 2.273736754432421e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_247_LVCableDist_mvgd_0_lvgd_1005_248,"[0.0015169788123967829, 0.0]","[-0.0015168938933725479, 0.0]","[0.0003801854793089713, -0.0]","[-0.0003801694367999903, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_247_LVCableDist_mvgd_0_lvgd_1005_249,"[0.015176706095532469, 5.684341886072431e-14]","[-0.015175012628072014, -5.6843418860724036e-14]","[0.003805053309263428, -1.989519660128207e-13]","[-0.0038042228413714685, 1.989519660128208e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_249_LVCableDist_mvgd_0_lvgd_1005_250,"[0.0015170581127701042, 0.0]","[-0.0015168938937285218, 0.0]","[0.0003801855314839413, -0.0]","[-0.0003801694241763744, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_249_LVCableDist_mvgd_0_lvgd_1005_251,"[0.013657954529878667, 5.6843418860724036e-14]","[-0.013656582726263128, -5.6843418860723765e-14]","[0.003424037263836714, -1.989519660128208e-13]","[-0.0034233645382701597, 1.9895196601282096e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_251_LVCableDist_mvgd_0_lvgd_1005_252,"[0.0015169788502839953, 0.0]","[-0.0015168938931995008, 0.0]","[0.0003801854863886491, -0.0]","[-0.0003801694366894998, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_251_LVCableDist_mvgd_0_lvgd_1005_253,"[0.012139603890175278, 5.6843418860734626e-14]","[-0.012138519917586079, -5.684341886073445e-14]","[0.0030431790181028352, -1.7053025658242107e-13]","[-0.003042647443418282, 1.7053025658242117e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_253_LVCableDist_mvgd_0_lvgd_1005_254,"[0.0015170581784901271, 0.0]","[-0.0015168938935799991, 0.0]","[0.000380185537755321, -0.0]","[-0.0003801694239870848, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_253_LVCableDist_mvgd_0_lvgd_1005_255,"[0.010621461753937385, -5.445494901423586e-26]","[-0.010620631794303335, 5.458520807189891e-26]","[0.0026624618588581067, -1.421085471519995e-13]","[-0.002662054850844196, 1.4210854715199954e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_255_LVCableDist_mvgd_0_lvgd_1005_256,"[0.001516978880227785, 0.0]","[-0.0015168938930758202, 0.0]","[0.00038018549198317626, -0.0]","[-0.0003801694366038197, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_255_LVCableDist_mvgd_0_lvgd_1005_257,"[0.009103652928590967, -3.8209645650329235e-26]","[-0.009103043126869027, 3.8274912366157485e-26]","[0.002281869324466842, -9.947598300639968e-14]","[-0.0022815702807814117, 9.947598300639971e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_257_LVCableDist_mvgd_0_lvgd_1005_258,"[0.0015170582287841671, 0.0]","[-0.0015168938934745466, 0.0]","[0.00038018554255461306, -0.0]","[-0.00038016942384297853, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_257_LVCableDist_mvgd_0_lvgd_1005_259,"[0.007585984913090704, -5.68434188608381e-14]","[-0.007585561425520362, 5.684341886083819e-14]","[0.0019013846907944135, -9.947598300637784e-14]","[-0.0019011770146281893, 9.947598300637788e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_259_LVCableDist_mvgd_0_lvgd_1005_260,"[0.0015169789021850471, 0.0]","[-0.0015168938929724467, 0.0]","[0.00038018549608698253, -0.0]","[-0.0003801694365400328, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_259_LVCableDist_mvgd_0_lvgd_1005_261,"[0.006068582537969189, -1.136868377216271e-13]","[-0.00606831149366203, 1.1368683772162721e-13]","[0.001520991483661117, -7.105427357595606e-14]","[-0.0015208585649014426, 7.10542735759561e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_25_LVCableDist_mvgd_0_lvgd_1005_26,"[0.0015169759046487134, 0.0]","[-0.0015168939031992871, 0.0]","[0.0003801849347099753, -0.0]","[-0.00038016944337572196, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_25_LVCableDist_mvgd_0_lvgd_1005_27,"[0.0802563959553014, 9.94759830064279e-14]","[-0.08018003485402259, -9.947598300642747e-14]","[0.020442190423186197, 1.8474111129761194e-13]","[-0.02040474332468122, -1.847411112976117e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_261_LVCableDist_mvgd_0_lvgd_1005_262,"[0.0015170582636126412, 0.0]","[-0.001516893893396132, 0.0]","[0.00038018554587783366, -0.0]","[-0.0003801694237423818, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_261_LVCableDist_mvgd_0_lvgd_1005_263,"[0.004551253245294618, -5.684341886081635e-14]","[-0.004551100781175775, 5.684341886081638e-14]","[0.0011406729711803585, -4.263256414557804e-14]","[-0.0011405982035462997, 4.2632564145578054e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_263_LVCableDist_mvgd_0_lvgd_1005_264,"[0.0015169789161731794, 0.0]","[-0.0015168938929170843, 0.0]","[0.0003801854986985236, -0.0]","[-0.0003801694364985419, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_263_LVCableDist_mvgd_0_lvgd_1005_265,"[0.0030341218797159293, -8.526512829120541e-14]","[-0.0030340541154406644, 8.526512829120543e-14]","[0.0007604126697009197, -1.4210854715167123e-14]","[-0.0007603794384424848, 1.4210854715167141e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_265_LVCableDist_mvgd_0_lvgd_1005_266,"[0.0015170582829751357, 0.0]","[-0.0015168938933606579, 0.0]","[0.0003801855477237966, -0.0]","[-0.000380169423685709, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_265_LVCableDist_mvgd_0_lvgd_1005_267,"[0.001516995847817682, -5.475547034777153e-27]","[-0.0015169789073830086, 5.47617697305979e-27]","[0.00038019384265182475, -1.4210854715199994e-14]","[-0.0003801855351481964, 1.4210854715199997e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_267_LVCableDist_mvgd_0_lvgd_1005_268,"[0.0015169789221572841, 0.0]","[-0.0015168938928814032, 0.0]","[0.00038018549981694874, -0.0]","[-0.000380169436479737, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_27_LVCableDist_mvgd_0_lvgd_1005_28,"[0.001517052761183267, 0.0]","[-0.0015168939029349454, 0.0]","[0.00038018501775731743, -0.0]","[-0.0003801694362593339, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_27_LVCableDist_mvgd_0_lvgd_1005_29,"[0.07866298208434154, 8.526512829122588e-14]","[-0.07858948061070126, -8.526512829122544e-14]","[0.020024558322035566, 1.8474111129761297e-13]","[-0.019988513570485703, -1.8474111129761274e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_29_LVCableDist_mvgd_0_lvgd_1005_30,"[0.0015169762311867854, 0.0]","[-0.0015168939021731023, 0.0]","[0.00038018499591218957, -0.0]","[-0.00038016944269601307, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_29_LVCableDist_mvgd_0_lvgd_1005_31,"[0.07707250437129534, 9.947598300642638e-14]","[-0.07700181056784122, -9.947598300642595e-14]","[0.019608328595347325, 1.7763568394001073e-13]","[-0.01957366071108028, -1.7763568394001056e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_31_LVCableDist_mvgd_0_lvgd_1005_32,"[0.0015170533832603113, 0.0]","[-0.001516893901915914, 0.0]","[0.00038018507755258654, -0.0]","[-0.00038016943493866893, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_31_LVCableDist_mvgd_0_lvgd_1005_33,"[0.07548475717720471, 9.947598300642595e-14]","[-0.0754168191450409, -9.947598300642552e-14]","[0.01919347564570964, 1.7763568394001056e-13]","[-0.019160159177768935, -1.7763568394001035e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_33_LVCableDist_mvgd_0_lvgd_1005_34,"[0.0015169765470294787, 0.0]","[-0.0015168939011285518, 0.0]","[0.0003801850550795036, -0.0]","[-0.0003801694419984558, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_33_LVCableDist_mvgd_0_lvgd_1005_35,"[0.07389984259099895, 8.526512829122343e-14]","[-0.07383460796262936, -8.526512829122305e-14]","[0.01877997414108011, 1.705302565824108e-13]","[-0.018747983408710076, -1.705302565824106e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_35_LVCableDist_mvgd_0_lvgd_1005_36,"[0.0015170539844539073, 0.0]","[-0.0015168939008776783, 0.0]","[0.00038018513527193895, -0.0]","[-0.0003801694335885417, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_35_LVCableDist_mvgd_0_lvgd_1005_37,"[0.07231755397205186, 1.13686837721626e-13]","[-0.07225497043622649, -1.136868377216256e-13]","[0.018367798282409722, 1.7053025658240822e-13]","[-0.018337107632437476, -1.7053025658240801e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_37_LVCableDist_mvgd_0_lvgd_1005_38,"[0.0015169768519368073, 0.0]","[-0.0015168939000518807, 0.0]","[0.0003801851121723003, -0.0]","[-0.0003801694412861717, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_37_LVCableDist_mvgd_0_lvgd_1005_39,"[0.07073799357852499, 9.947598300642238e-14]","[-0.07067800837111776, -9.947598300642204e-14]","[0.01795692253591509, 1.49213974509607e-13]","[-0.017927506093079644, -1.4921397450960683e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_39_LVCableDist_mvgd_0_lvgd_1005_40,"[0.0015170545643367933, 0.0]","[-0.0015168938998247855, 0.0]","[0.0003801851908798284, -0.0]","[-0.0003801694322157596, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_39_LVCableDist_mvgd_0_lvgd_1005_41,"[0.06916095380203052, 8.526512829121947e-14]","[-0.06910351421284804, -8.52651282912192e-14]","[0.017547320907690123, 1.3500311979440657e-13]","[-0.017519152823178754, -1.3500311979440644e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_3_LVCableDist_mvgd_0_lvgd_1005_4,"[0.1615964563951515, 0.0]","[-0.15999996890178736, 0.0]","[0.04060727997051682, -0.0]","[-0.04009978138337873, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_3_LVStation_mvgd_0_lvgd_1005,"[0.17223970864533486, -3.55271367880055e-15]","[-0.16159645864898137, 3.552713678800554e-15]","[0.04399059623232269, -8.881784196997388e-16]","[-0.040607272305164935, 8.881784196997402e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1005_41_LVCableDist_mvgd_0_lvgd_1005_42,"[0.0015169771457087641, 0.0]","[-0.0015168938989633654, 0.0]","[0.00038018516715331474, -0.0]","[-0.0003801694405635106, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_41_LVCableDist_mvgd_0_lvgd_1005_43,"[0.06758653706274527, 9.947598300642117e-14]","[-0.06753158994481233, -9.947598300642088e-14]","[0.017138967668670416, 1.42108547152006e-13]","[-0.017112021879474866, -1.4210854715200588e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_43_LVCableDist_mvgd_0_lvgd_1005_44,"[0.001517055122489694, 0.0]","[-0.0015168938987579349, 0.0]","[0.0003801852443412726, -0.0]","[-0.00038016943082653333, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_43_LVCableDist_mvgd_0_lvgd_1005_45,"[0.06601453481900471, 8.526512829121895e-14]","[-0.06596202707696301, -8.526512829121867e-14]","[0.016731836636840376, 1.3500311979440634e-13]","[-0.016706087105264993, -1.3500311979440616e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_45_LVCableDist_mvgd_0_lvgd_1005_46,"[0.001516977428144318, 0.0]","[-0.0015168938978759605, 0.0]","[0.0003801852199867684, -0.0]","[-0.00038016943983511936, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_45_LVCableDist_mvgd_0_lvgd_1005_47,"[0.06444504964589821, 1.1368683772162247e-13]","[-0.06439492776406149, -1.1368683772162214e-13]","[0.01632590189474778, 1.4921397450960529e-13]","[-0.01630132237697024, -1.4921397450960514e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_47_LVCableDist_mvgd_0_lvgd_1005_48,"[0.0015170556585109183, 0.0]","[-0.0015168938976828999, 0.0]","[0.00038018529562287785, -0.0]","[-0.00038016942942743504, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_47_LVCableDist_mvgd_0_lvgd_1005_49,"[0.06287787210379837, 8.526512829121894e-14]","[-0.06283008261577967, -8.526512829121865e-14]","[0.01592113707903802, 1.4210854715200666e-13]","[-0.01589770135541213, -1.421085471520065e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_49_LVCableDist_mvgd_0_lvgd_1005_50,"[0.0015169776990182637, 0.0]","[-0.0015168938967718116, 0.0]","[0.0003801852706376339, -0.0]","[-0.0003801694391051421, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_49_LVCableDist_mvgd_0_lvgd_1005_51,"[0.06131310491540199, 1.1368683772162126e-13]","[-0.061267593951289216, -1.1368683772162093e-13]","[0.01551751609079012, 1.4210854715200436e-13]","[-0.015495197743782984, -1.4210854715200418e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_51_LVCableDist_mvgd_0_lvgd_1005_52,"[0.0015170561720110245, 0.0]","[-0.0015168938966045348, 0.0]","[0.00038018534469325376, -0.0]","[-0.00038016942802574877, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_51_LVCableDist_mvgd_0_lvgd_1005_53,"[0.05975053777911043, 8.526512829121677e-14]","[-0.059707251515971727, -8.526512829121653e-14]","[0.015115012392580897, 1.207922650792044e-13]","[-0.015093785027698498, -1.207922650792043e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_53_LVCableDist_mvgd_0_lvgd_1005_54,"[0.001516977958152696, 0.0]","[-0.0015168938956733806, 0.0]","[0.00038018531906840576, -0.0]","[-0.000380169438373926, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_53_LVCableDist_mvgd_0_lvgd_1005_55,"[0.058190273558044986, 8.526512829121759e-14]","[-0.05814915778656377, -8.526512829121734e-14]","[0.014713599711010248, 1.3500311979440556e-13]","[-0.014693436744277437, -1.3500311979440543e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_55_LVCableDist_mvgd_0_lvgd_1005_56,"[0.001517056662617635, 0.0]","[-0.0015168938955309422, 0.0]","[0.00038018539152433157, -0.0]","[-0.0003801694266307244, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_55_LVCableDist_mvgd_0_lvgd_1005_57,"[0.056632101125407536, 7.105427357601557e-14]","[-0.05659310168092709, -7.105427357601536e-14]","[0.014313251341873709, 1.2789769243680587e-13]","[-0.014294126211216332, -1.2789769243680577e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_57_LVCableDist_mvgd_0_lvgd_1005_58,"[0.0015169782053569016, 0.0]","[-0.0015168938945830164, 0.0]","[0.0003801853652494321, -0.0]","[-0.00038016943764829155, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_57_LVCableDist_mvgd_0_lvgd_1005_59,"[0.055076123477403885, 4.263256414561293e-14]","[-0.055039185826348876, -4.2632564145612745e-14]","[0.01391394084455716, 1.278976924368078e-13]","[-0.01389582680698522, -1.2789769243680773e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_59_LVCableDist_mvgd_0_lvgd_1005_60,"[0.0015170571299710006, 0.0]","[-0.0015168938944684124, 0.0]","[0.0003801854360860781, -0.0]","[-0.00038016942524823194, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_59_LVCableDist_mvgd_0_lvgd_1005_61,"[0.05352212869952776, 2.842170943041154e-14]","[-0.05348719835066146, -2.842170943041137e-14]","[0.0135156413554983, 1.2789769243680874e-13]","[-0.013498511688784432, -1.2789769243680867e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_5_LVCableDist_mvgd_0_lvgd_1005_6,"[0.03016824524804845, 0.0]","[-0.029999999809070508, 0.0]","[0.007535210758981286, -0.0]","[-0.007518708525097618, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_5_LVStation_mvgd_0_lvgd_1005,"[0.03021993323297774, 1.7763568394000404e-15]","[-0.030168244926704627, -1.77635683940004e-15]","[0.007580516285668913, -1.7763568394004157e-15]","[-0.007535211260358225, 1.7763568394004153e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1005_61_LVCableDist_mvgd_0_lvgd_1005_62,"[0.0015169784404468185, 0.0]","[-0.0015168938935020897, 0.0]","[0.0003801854091498136, -0.0]","[-0.00038016943693237036, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_61_LVCableDist_mvgd_0_lvgd_1005_63,"[0.051970219913711584, 5.684341886081274e-14]","[-0.05193724202465786, -5.684341886081256e-14]","[0.013118326274336923, 1.1368683772160548e-13]","[-0.01310215408405679, -1.1368683772160539e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_63_LVCableDist_mvgd_0_lvgd_1005_64,"[0.001517057573722432, 0.0]","[-0.0015168938934192384, 0.0]","[0.00038018547835218225, -0.0]","[-0.000380169423886386, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_63_LVCableDist_mvgd_0_lvgd_1005_65,"[0.0504201844557369, 4.2632564145611887e-14]","[-0.050389104224136436, -4.2632564145611735e-14]","[0.012721968585689287, 1.2079226507920696e-13]","[-0.012706726997042594, -1.2079226507920688e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_65_LVCableDist_mvgd_0_lvgd_1005_66,"[0.001516978663256681, 0.0]","[-0.0015168938924423273, 0.0]","[0.00038018545073720457, -0.0]","[-0.0003801694362273482, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_65_LVCableDist_mvgd_0_lvgd_1005_67,"[0.048872125566022065, 8.526512829121374e-14]","[-0.04884288785645525, -8.526512829121356e-14]","[0.012326541537026323, 9.947598300640222e-14]","[-0.012312203511881671, -9.947598300640216e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_67_LVCableDist_mvgd_0_lvgd_1005_68,"[0.0015170579935508853, 0.0]","[-0.0015168938923977118, 0.0]","[0.00038018551829739616, -0.0]","[-0.0003801694225528298, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_67_LVCableDist_mvgd_0_lvgd_1005_69,"[0.047325829869427474, 7.105427357601243e-14]","[-0.047298379584169305, -7.105427357601227e-14]","[0.011932017968946515, 9.947598300640312e-14]","[-0.011918556487657769, -9.947598300640303e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_69_LVCableDist_mvgd_0_lvgd_1005_70,"[0.001516978873615622, 0.0]","[-0.001516893891402116, 0.0]","[0.0003801854899884626, -0.0]","[-0.00038016943554205676, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_69_LVCableDist_mvgd_0_lvgd_1005_71,"[0.04578140071734325, 8.526512829121433e-14]","[-0.04575568244397395, -8.526512829121414e-14]","[0.01153837098436776, 1.1368683772160319e-13]","[-0.011525758872964056, -1.136868377216031e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_71_LVCableDist_mvgd_0_lvgd_1005_72,"[0.0015170583891388084, 0.0]","[-0.0015168938914054005, 0.0]","[0.0003801855558988081, -0.0]","[-0.0003801694212559523, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_71_LVCableDist_mvgd_0_lvgd_1005_73,"[0.04423862406304646, 9.947598300641477e-14]","[-0.04421458242451853, -9.947598300641454e-14]","[0.011145573287797157, 1.0658141036400161e-13]","[-0.011133783389653998, -1.0658141036400151e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_73_LVCableDist_mvgd_0_lvgd_1005_74,"[0.0015169790713873959, 0.0]","[-0.0015168938904059311, 0.0]","[0.0003801855268703816, -0.0]","[-0.0003801694348736531, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_73_LVCableDist_mvgd_0_lvgd_1005_75,"[0.04269760336155255, 7.105427357601286e-14]","[-0.042675182684761316, -7.105427357601268e-14]","[0.010753597845466343, 1.1368683772160391e-13]","[-0.010742602858774309, -1.1368683772160384e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1005_75_LVCableDist_mvgd_0_lvgd_1005_76,"[0.001517058760178463, 0.0]","[-0.0015168938904369222, 0.0]","[0.00038018559113379464, -0.0]","[-0.00038016942000278643, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_75_LVCableDist_mvgd_0_lvgd_1005_77,"[0.04115812393440907, 5.68434188608107e-14]","[-0.04113726857929981, -5.684341886081056e-14]","[0.01036241723375902, 9.94759830064037e-14]","[-0.010352189872916206, -9.947598300640363e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_77_LVCableDist_mvgd_0_lvgd_1005_78,"[0.0015169792564080312, 0.0]","[-0.0015168938894417193, 0.0]","[0.0003801855613633427, -0.0]","[-0.00038016943423121785, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_77_LVCableDist_mvgd_0_lvgd_1005_79,"[0.039620289332977975, 7.105427357601161e-14]","[-0.03960094338233374, -7.105427357601144e-14]","[0.009972004290244413, 9.947598300640272e-14]","[-0.009962517133729977, -9.947598300640265e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_79_LVCableDist_mvgd_0_lvgd_1005_80,"[0.0015170591064028987, 0.0]","[-0.0015168938895103934, 0.0]","[0.00038018562398125285, -0.0]","[-0.0003801694188001899, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_79_LVCableDist_mvgd_0_lvgd_1005_81,"[0.038083884287333614, 8.526512829121202e-14]","[-0.0380659918546654, -8.526512829121185e-14]","[0.009582331471355897, 9.237055564880122e-14]","[-0.009573557112717799, -9.237055564880115e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_7_LVCableDist_mvgd_0_lvgd_1005_8,"[0.001516974329313322, 0.0]","[-0.001516893907356284, 0.0]","[0.0003801846390747061, -0.0]","[-0.0003801694461308435, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_7_LVStation_mvgd_0_lvgd_1005,"[0.0015171559132629421, 1.8758221070566613e-28]","[-0.0015169743247505213, -1.8736227628529054e-28]","[0.0003802737000410339, 1.776356839400228e-15]","[-0.000380184649951419, -1.776356839400228e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1005_81_LVCableDist_mvgd_0_lvgd_1005_82,"[0.0015169794285379704, 0.0]","[-0.0015168938885127714, 0.0]","[0.0003801855934444878, -0.0]","[-0.000380169433618879, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_81_LVCableDist_mvgd_0_lvgd_1005_83,"[0.03654901243769862, 8.526512829121185e-14]","[-0.036532517378492405, -8.52651282912117e-14]","[0.009193371494081708, 9.237055564880115e-14]","[-0.009185282400333762, -9.237055564880106e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_83_LVCableDist_mvgd_0_lvgd_1005_84,"[0.001517059427548549, 0.0]","[-0.0015168938886295313, 0.0]","[0.0003801856544241879, -0.0]","[-0.0003801694176573842, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_83_LVCableDist_mvgd_0_lvgd_1005_85,"[0.03501545796390024, 8.52651282912117e-14]","[-0.035000304162048024, -8.526512829121153e-14]","[0.008805096703132237, 9.237055564880106e-14]","[-0.008797665355218419, -9.237055564880098e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_85_LVCableDist_mvgd_0_lvgd_1005_86,"[0.0015169795876662038, 0.0]","[-0.0015168938876416037, 0.0]","[0.00038018562309363925, -0.0]","[-0.00038016943304168413, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_85_LVCableDist_mvgd_0_lvgd_1005_87,"[0.03348332458746447, 5.684341886080872e-14]","[-0.033469455688197064, -5.684341886080862e-14]","[0.008417479703188159, 7.815970093360178e-14]","[-0.008410678465014209, -7.815970093360172e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_87_LVCableDist_mvgd_0_lvgd_1005_88,"[0.0015170597233768576, 0.0]","[-0.001516893887804814, 0.0]","[0.00038018568244382834, -0.0]","[-0.00038016941658002425, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_87_LVCableDist_mvgd_0_lvgd_1005_89,"[0.03195239597924562, 8.526512829121008e-14]","[-0.03193975565387851, -8.526512829120995e-14]","[0.008030492735590805, 7.105427357599948e-14]","[-0.00802429398385425, -7.105427357599944e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_89_LVCableDist_mvgd_0_lvgd_1005_90,"[0.001516979733670467, 0.0]","[-0.0015168938868299268, 0.0]","[0.000380185650282721, -0.0]","[-0.00038016943249497833, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_89_LVCableDist_mvgd_0_lvgd_1005_91,"[0.030422775934684156, 1.1368683772161138e-13]","[-0.030411307635445948, -1.1368683772161122e-13]","[0.007644108300992862, 6.394884621839723e-14]","[-0.007638484304952137, -6.394884621839715e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_91_LVCableDist_mvgd_0_lvgd_1005_92,"[0.0015170599936525108, 0.0]","[-0.0015168938870312716, 0.0]","[0.00038018570802317775, -0.0]","[-0.0003801694155737065, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_91_LVCableDist_mvgd_0_lvgd_1005_93,"[0.02889424765760235, 8.52651282912107e-14]","[-0.02888389486048528, -8.526512829121056e-14]","[0.00725829854595982, 8.526512829120027e-14]","[-0.007253221586526905, -8.526512829120018e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_93_LVCableDist_mvgd_0_lvgd_1005_94,"[0.0015169798664183068, 0.0]","[-0.001516893886059492, 0.0]","[0.0003801856750007137, -0.0]","[-0.00038016943198931636, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_93_LVCableDist_mvgd_0_lvgd_1005_95,"[0.027366915009866016, 9.947598300641015e-14]","[-0.0273576209915438, -9.947598300641e-14]","[0.0068730358755460476, 6.394884621839799e-14]","[-0.006868478135888151, -6.394884621839791e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_95_LVCableDist_mvgd_0_lvgd_1005_96,"[0.0015170602381733946, 0.0]","[-0.0015168938863180327, 0.0]","[0.00038018573115046613, -0.0]","[-0.00038016941464738086, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_95_LVCableDist_mvgd_0_lvgd_1005_97,"[0.02584056077050646, 7.105427357600868e-14]","[-0.025832268829096006, -7.105427357600858e-14]","[0.006488292350024751, 7.105427357600007e-14]","[-0.006484226023824699, -7.105427357600002e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_97_LVCableDist_mvgd_0_lvgd_1005_98,"[0.0015169799858399924, 0.0]","[-0.00151689388536479, 0.0]","[0.0003801856972298781, -0.0]","[-0.0003801694315266491, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1005_97_LVCableDist_mvgd_0_lvgd_1005_99,"[0.02431528886020455, 8.526512829121029e-14]","[-0.024307942114449792, -8.526512829121014e-14]","[0.006104040287443308, 8.526512829120002e-14]","[-0.0061004374804203305, -8.526512829119994e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1005_9_LVStation_mvgd_0_lvgd_1005,"[0.09473384953501715, 7.105427357603088e-14]","[-0.09462945647986798, -7.105427357603038e-14]","[0.02426812202807272, 2.0605739337041896e-13]","[-0.024216928200928536, -2.060573933704187e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_100_LVCableDist_mvgd_0_lvgd_1006_99,"[0.001182412980875103, 0.0]","[-0.0011823616913147815, 0.0]","[0.00029633745929846984, -0.0]","[-0.0002963277699121455, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_101_LVCableDist_mvgd_0_lvgd_1006_102,"[0.001182460911659227, 0.0]","[-0.0011823616913662818, 0.0]","[0.00029633749814730913, -0.0]","[-0.000296327766195643, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_101_LVCableDist_mvgd_0_lvgd_1006_103,"[0.022508573350028937, 1.1368683772159311e-13]","[-0.022502396774937077, -1.1368683772159291e-13]","[0.00565115164543724, 8.526512829116844e-14]","[-0.005648122684198926, -8.526512829116833e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_101_LVCableDist_mvgd_0_lvgd_1006_99,"[0.023697876763739825, 9.947598300639253e-14]","[-0.023691034258131224, -9.947598300639238e-14]","[0.00595084468513845, 6.394884621837427e-14]","[-0.005947489154937143, -6.394884621837422e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_103_LVCableDist_mvgd_0_lvgd_1006_104,"[0.0011824130417993376, 0.0]","[-0.0011823616911562443, 0.0]","[0.00029633747073512474, -0.0]","[-0.00029632776980932586, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_103_LVCableDist_mvgd_0_lvgd_1006_105,"[0.021319983736715998, 8.526512829119468e-14]","[-0.021314439162130525, -8.526512829119455e-14]","[0.005351785205391819, 6.394884621837625e-14]","[-0.005349066174010748, -6.394884621837619e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_105_LVCableDist_mvgd_0_lvgd_1006_106,"[0.0011824610236663411, 0.0]","[-0.0011823616912202408, 0.0]","[0.000296337508959045, -0.0]","[-0.0002963277660069166, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_105_LVCableDist_mvgd_0_lvgd_1006_107,"[0.020131978142256864, 8.526512829119561e-14]","[-0.0201270316479477, -8.526512829119548e-14]","[0.005052728652906779, 7.105427357597494e-14]","[-0.005050302917073381, -7.105427357597487e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_107_LVCableDist_mvgd_0_lvgd_1006_108,"[0.001182413096579244, 0.0]","[-0.0011823616910159108, 0.0]","[0.00029633748101632, -0.0]","[-0.0002963277697152436, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_107_LVCableDist_mvgd_0_lvgd_1006_109,"[0.018944618555164827, 9.947598300638983e-14]","[-0.018940236138862483, -9.94759830063897e-14]","[0.004753965427354569, 4.9737991503176525e-14]","[-0.004751816312527579, -4.9737991503176475e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_109_LVCableDist_mvgd_0_lvgd_1006_110,"[0.0011824611237400626, 0.0]","[-0.0011823616910887076, 0.0]","[0.0002963375186155421, -0.0]","[-0.00029632776583485277, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_109_LVCableDist_mvgd_0_lvgd_1006_111,"[0.017757775019174964, 5.684341886079622e-14]","[-0.01775392268733226, -5.684341886079617e-14]","[0.0044554787810670285, 4.263256414558404e-14]","[-0.004453589616982542, -4.263256414558401e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_10_LVCableDist_mvgd_0_lvgd_1006_9,"[0.0011824111877341782, 0.0]","[-0.001182361694736918, 0.0]","[0.0002963371222131315, -0.0]","[-0.00029632777222518477, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_111_LVCableDist_mvgd_0_lvgd_1006_112,"[0.0011824131451812978, 0.0]","[-0.00118236169089326, 0.0]","[0.00029633749013619246, -0.0]","[-0.00029632776963027047, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_111_LVCableDist_mvgd_0_lvgd_1006_113,"[0.01657150954615265, 7.105427357599154e-14]","[-0.01656815323242092, -7.105427357599148e-14]","[0.004157252117528285, 2.842170943038444e-14]","[-0.004155606198220932, -2.8421709430384415e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_113_LVCableDist_mvgd_0_lvgd_1006_114,"[0.0011824612118241967, 0.0]","[-0.0011823616909757766, 0.0]","[0.0002963375271128832, -0.0]","[-0.00029632776568144765, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_113_LVCableDist_mvgd_0_lvgd_1006_115,"[0.015385692024896418, 8.526512829119208e-14]","[-0.0153827976705915, -8.526512829119199e-14]","[0.0038592686576171065, 4.97379915031785e-14]","[-0.0038578492808801377, -4.9737991503178456e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_115_LVCableDist_mvgd_0_lvgd_1006_116,"[0.0011824131875600764, 0.0]","[-0.0011823616907722153, 0.0]","[0.00029633749809034526, -0.0]","[-0.0002963277695555534, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_115_LVCableDist_mvgd_0_lvgd_1006_117,"[0.014200384487195992, 5.684341886079291e-14]","[-0.01419791797012014, -5.684341886079287e-14]","[0.0035615117729586926, 2.1316282072787768e-14]","[-0.0035603022054386205, -2.131628207278775e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_117_LVCableDist_mvgd_0_lvgd_1006_118,"[0.0011824612878598832, 0.0]","[-0.0011823616908757627, 0.0]","[0.0002963375344455949, -0.0]","[-0.0002963277655464435, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_117_LVCableDist_mvgd_0_lvgd_1006_119,"[0.01301545668672542, 7.105427357599135e-14]","[-0.013013383891287781, -7.105427357599129e-14]","[0.0032639646569420843, 2.8421709430384362e-14]","[-0.0032629481685254153, -2.8421709430384333e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_119_LVCableDist_mvgd_0_lvgd_1006_120,"[0.0011824132237263903, 0.0]","[-0.0011823616906892287, 0.0]","[0.00029633750487404495, -0.0]","[-0.00029632776949120305, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_119_LVCableDist_mvgd_0_lvgd_1006_121,"[0.011830970671968304, 5.684341886079177e-14]","[-0.011829257428395934, -5.684341886079173e-14]","[0.0029666106533555846, 1.4210854715189017e-14]","[-0.0029657704873581963, -1.4210854715189e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_11_LVCableDist_mvgd_0_lvgd_1006_12,"[0.0011824574456708364, 0.0]","[-0.0011823616947551265, 0.0]","[0.0002963371623552976, -0.0]","[-0.000296327770695023, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_11_LVCableDist_mvgd_0_lvgd_1006_13,"[0.010652693974296627, 7.1054273575994e-14]","[-0.01064962353141325, -7.105427357599389e-14]","[0.0026723340859383412, 3.552713678786946e-15]","[-0.0026708283562516012, -3.552713678786893e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_11_LVCableDist_mvgd_0_lvgd_1006_9,"[0.011838941291467134, 7.815970093359285e-14]","[-0.01183515141838914, -7.81597009335927e-14]","[0.0029705297880320176, -1.3924278580072042e-26]","[-0.002968671253410381, 1.399496727192347e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1006_121_LVCableDist_mvgd_0_lvgd_1006_122,"[0.0011824613517977419, 0.0]","[-0.0011823616907852695, 0.0]","[0.00029633754061319845, -0.0]","[-0.00029632776543387176, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_121_LVCableDist_mvgd_0_lvgd_1006_123,"[0.010646796081186675, 7.105427357599019e-14]","[-0.010645408225256165, -7.105427357599014e-14]","[0.002669432932199225, 2.13162820727856e-14]","[-0.0026687523346584606, -2.1316282072785575e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_123_LVCableDist_mvgd_0_lvgd_1006_124,"[0.0011824132536191274, 0.0]","[-0.0011823616906051, 0.0]","[0.00029633751048416333, -0.0]","[-0.00029632776943823067, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_123_LVCableDist_mvgd_0_lvgd_1006_125,"[0.009462994976158748, 7.105427357598698e-14]","[-0.009461898298833388, -7.105427357598693e-14]","[0.00237241481348369, -1.0519212721629396e-26]","[-0.0023718770084606715, 1.053881821693781e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1006_125_LVCableDist_mvgd_0_lvgd_1006_126,"[0.0011824614036142686, 0.0]","[-0.001182361690719522, 0.0]","[0.00029633754560809243, -0.0]","[-0.0002963277653399299, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_125_LVCableDist_mvgd_0_lvgd_1006_127,"[0.008279436899952933, 2.8421709430394775e-14]","[-0.008278597196688282, -2.8421709430394762e-14]","[0.0020755394479232323, -4.2155272867751245e-27]","[-0.0020751276616820732, 4.223409249245363e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1006_127_LVCableDist_mvgd_0_lvgd_1006_128,"[0.0011824132772404329, 0.0]","[-0.0011823616905401165, 0.0]","[0.00029633751491355703, -0.0]","[-0.0002963277693929203, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_127_LVCableDist_mvgd_0_lvgd_1006_129,"[0.0070961839240908835, 5.684341886078741e-14]","[-0.007095566954928931, -5.684341886078738e-14]","[0.0017787901357478014, -1.4210854715205828e-14]","[-0.0017784875771859783, 1.4210854715205847e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_129_LVCableDist_mvgd_0_lvgd_1006_130,"[0.001182461443262685, 0.0]","[-0.0011823616906631656, 0.0]","[0.00029633754943016063, -0.0]","[-0.00029632776526758377, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_129_LVCableDist_mvgd_0_lvgd_1006_131,"[0.005913105516536005, 4.2632564145590007e-14]","[-0.005912677044953873, -4.263256414558999e-14]","[0.0014821500125252042, -1.4210854715203727e-14]","[-0.0014819398922247633, 1.4210854715203736e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_131_LVCableDist_mvgd_0_lvgd_1006_132,"[0.001182413294579199, 0.0]","[-0.001182361690497521, 0.0]","[0.0002963375181665426, -0.0]","[-0.00029632776936229944, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_131_LVCableDist_mvgd_0_lvgd_1006_133,"[0.004730263755093675, 2.8421709430391556e-14]","[-0.004729989518579098, -2.8421709430391543e-14]","[0.0011856023628111726, -2.1316282072800298e-14]","[-0.0011854678786090977, 2.1316282072800308e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_133_LVCableDist_mvgd_0_lvgd_1006_134,"[0.0011824614707273895, 0.0]","[-0.0011823616906246693, 0.0]","[0.0002963375520786357, -0.0]","[-0.000296327765218427, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_133_LVCableDist_mvgd_0_lvgd_1006_135,"[0.003547528052798846, 2.8421709430392607e-14]","[-0.003547373791217644, -2.8421709430392597e-14]","[0.0008891303111047453, -1.4210854715201622e-14]","[-0.0008890546620042207, 1.4210854715201625e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_135_LVCableDist_mvgd_0_lvgd_1006_136,"[0.0011824133056024375, 0.0]","[-0.001182361690454868, 0.0]","[0.00029633752023658876, -0.0]","[-0.0002963277693418286, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_135_LVCableDist_mvgd_0_lvgd_1006_137,"[0.0023649604903469715, -1.4210854715197364e-14]","[-0.0023648919270177105, 1.4210854715197365e-14]","[0.0005927171303719073, 2.130653034779849e-27]","[-0.0005926835072614273, -2.1315685881857604e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1006_137_LVCableDist_mvgd_0_lvgd_1006_138,"[0.0011824614859939522, 0.0]","[-0.0011823616906062883, 0.0]","[0.0002963375535498654, -0.0]","[-0.00029632776519044387, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_137_LVCableDist_mvgd_0_lvgd_1006_139,"[0.0011824304459997288, -1.0657842940928802e-27]","[-0.001182413305562102, 1.0662321297091181e-27]","[0.00029634593815658816, -7.105427357598683e-15]","[-0.00029633753257252127, 7.105427357598683e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_139_LVCableDist_mvgd_0_lvgd_1006_140,"[0.0011824133103448245, 0.0]","[-0.0011823616904535457, 0.0]","[0.00029633752112389667, -0.0]","[-0.000296327769332977, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_13_LVCableDist_mvgd_0_lvgd_1006_14,"[0.0011824112513477679, 0.0]","[-0.0011823616946721285, 0.0]","[0.00029633713419458034, -0.0]","[-0.00029632777217680897, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_13_LVCableDist_mvgd_0_lvgd_1006_15,"[0.00946721228169144, 7.105427357599452e-14]","[-0.009464785777254372, -7.105427357599442e-14]","[0.002374491218292246, 7.1054273575865554e-15]","[-0.0023733012727682043, -7.105427357586497e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_141_LVCableDist_mvgd_0_lvgd_1006_142,"[0.001182411051693867, 0.0]","[-0.001182361694868667, 0.0]","[0.0002963370965765454, -0.0]","[-0.00029632777231359387, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_141_LVCableDist_mvgd_0_lvgd_1006_143,"[0.06476811178758932, 3.5527136788001324e-13]","[-0.06471885845354867, -3.5527136788001127e-13]","[0.01645169235548474, 2.557953848735169e-13]","[-0.01642753876916093, -2.55795384873516e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_141_LVStation_mvgd_0_lvgd_1006,"[0.06600158945484447, 3.552713678800152e-13]","[-0.0659505228412521, -3.5527136788001324e-13]","[0.016773072256494232, 2.557953848735179e-13]","[-0.016748029447033873, -2.557953848735169e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_143_LVCableDist_mvgd_0_lvgd_1006_144,"[0.001182457271202607, 0.0]","[-0.0011823616948168497, 0.0]","[0.0002963371453213672, -0.0]","[-0.0002963277707797386, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_143_LVCableDist_mvgd_0_lvgd_1006_145,"[0.06353640118056841, 3.1263880373441515e-13]","[-0.06348892983225814, -3.126388037344135e-13]","[0.016131201627180264, 2.557953848735233e-13]","[-0.016107921917661028, -2.5579538487352247e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_145_LVCableDist_mvgd_0_lvgd_1006_146,"[0.0011824112090245721, 0.0]","[-0.0011823616946594927, 0.0]","[0.00029633712619719986, -0.0]","[-0.0002963277721725436, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_145_LVCableDist_mvgd_0_lvgd_1006_147,"[0.06230651862152228, 2.700062395888128e-13]","[-0.06226079773188578, -2.7000623958881146e-13]","[0.015811584796040997, 2.273736754431324e-13]","[-0.015789163502616988, -2.2737367544313177e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_147_LVCableDist_mvgd_0_lvgd_1006_148,"[0.0011824575706819245, 0.0]","[-0.0011823616946097866, 0.0]","[0.0002963371744418534, -0.0]","[-0.0002963277705056999, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_147_LVCableDist_mvgd_0_lvgd_1006_149,"[0.061078340159625454, 2.4158453015841665e-13]","[-0.061034338229382375, -2.415845301584155e-13]","[0.015492826330920414, 2.4158453015833516e-13]","[-0.015471248006503565, -2.415845301583346e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_149_LVCableDist_mvgd_0_lvgd_1006_150,"[0.0011824113612486835, 0.0]","[-0.001182361694446365, 0.0]","[0.00029633715484868436, -0.0]","[-0.0002963277720262905, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_149_LVCableDist_mvgd_0_lvgd_1006_151,"[0.05985192686666673, 2.2737367544321696e-13]","[-0.05980961217069073, -2.2737367544321585e-13]","[0.015174910855737626, 2.41584530158337e-13]","[-0.01515415994248618, -2.415845301583364e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_151_LVCableDist_mvgd_0_lvgd_1006_152,"[0.0011824578602081114, 0.0]","[-0.0011823616943977737, 0.0]","[0.00029633720257810314, -0.0]","[-0.000296327770223185, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_151_LVCableDist_mvgd_0_lvgd_1006_153,"[0.05862715430916779, 1.989519660128177e-13]","[-0.05858649514905227, -1.9895196601281672e-13]","[0.014857822741988862, 2.344791028007419e-13]","[-0.01483788369516427, -2.3447910280074133e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_153_LVCableDist_mvgd_0_lvgd_1006_154,"[0.0011824115082703312, 0.0]","[-0.0011823616942181964, 0.0]","[0.0002963371825194342, -0.0]","[-0.00029632777187928655, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_153_LVCableDist_mvgd_0_lvgd_1006_155,"[0.057404083639507913, 2.1316282072801398e-13]","[-0.057365048098532295, -2.1316282072801302e-13]","[0.014541546516173605, 2.273736754431398e-13]","[-0.014522403683977244, -2.2737367544313937e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_155_LVCableDist_mvgd_0_lvgd_1006_156,"[0.001182458139622795, 0.0]","[-0.001182361694184139, 0.0]","[0.000296337229718642, -0.0]","[-0.00029632776993657964, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_155_LVCableDist_mvgd_0_lvgd_1006_157,"[0.05618258995795027, 1.847411112976151e-13]","[-0.05614514614505626, -1.847411112976142e-13]","[0.014226066455623161, 2.2026824808554483e-13]","[-0.014207704198841075, -2.2026824808554435e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_157_LVCableDist_mvgd_0_lvgd_1006_158,"[0.001182411650034818, 0.0]","[-0.0011823616940027316, 0.0]","[0.00029633720919214655, -0.0]","[-0.0002963277717298037, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_157_LVCableDist_mvgd_0_lvgd_1006_159,"[0.05496273449407216, 2.2737367544320808e-13]","[-0.05492685030755836, -2.2737367544320712e-13]","[0.01391136699253994, 2.1316282072793827e-13]","[-0.013893769568659857, -2.1316282072793782e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_159_LVCableDist_mvgd_0_lvgd_1006_160,"[0.0011824584087651684, 0.0]","[-0.0011823616939651603, 0.0]","[0.0002963372558482694, -0.0]","[-0.00029632776964609104, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_159_LVCableDist_mvgd_0_lvgd_1006_161,"[0.053744391898096176, 1.7053025658241162e-13]","[-0.053710035260865686, -1.7053025658241092e-13]","[0.013597432313421283, 1.9895196601274869e-13]","[-0.013580583991996836, -1.989519660127483e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_15_LVCableDist_mvgd_0_lvgd_1006_16,"[0.0011824575558827587, 0.0]","[-0.0011823616946959924, 0.0]","[0.0002963371730869105, -0.0]","[-0.0002963277706107781, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_15_LVCableDist_mvgd_0_lvgd_1006_17,"[0.008282328223066238, 5.6843418860795784e-14]","[-0.008280470125710704, -5.684341886079571e-14]","[0.0020769640942193655, 7.10542735758906e-15]","[-0.0020760528926581077, -7.105427357589022e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_161_LVCableDist_mvgd_0_lvgd_1006_162,"[0.0011824117864380438, 0.0]","[-0.0011823616937758775, 0.0]","[0.00029633723485068803, -0.0]","[-0.0002963277715768229, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_161_LVCableDist_mvgd_0_lvgd_1006_163,"[0.05252762347377736, 1.847411112976069e-13]","[-0.0524947621058955, -1.8474111129760618e-13]","[0.013284246759387667, 1.8474111129754777e-13]","[-0.013268131710501885, -1.8474111129754747e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_163_LVCableDist_mvgd_0_lvgd_1006_164,"[0.0011824586674871673, 0.0]","[-0.0011823616937450402, 0.0]","[0.00029633728095359126, -0.0]","[-0.00029632776935325974, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_163_LVCableDist_mvgd_0_lvgd_1006_165,"[0.051312303438075704, 1.421085471520138e-13]","[-0.05128090508315397, -1.421085471520132e-13]","[0.012971794429313694, 1.9895196601275245e-13]","[-0.012956396834596519, -1.9895196601275214e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_165_LVCableDist_mvgd_0_lvgd_1006_166,"[0.0011824119174103731, 0.0]","[-0.0011823616935454633, 0.0]","[0.0002963372594843561, -0.0]","[-0.000296327771424276, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_165_LVCableDist_mvgd_0_lvgd_1006_167,"[0.050098493165368456, 1.5631940186720803e-13]","[-0.050068525372116805, -1.5631940186720745e-13]","[0.012660059576650739, 1.7763568393995262e-13]","[-0.012645363522153378, -1.7763568393995237e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_167_LVCableDist_mvgd_0_lvgd_1006_168,"[0.0011824589156437227, 0.0]","[-0.0011823616935259715, 0.0]","[0.00029633730502166334, -0.0]","[-0.00029632776905958596, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_167_LVCableDist_mvgd_0_lvgd_1006_169,"[0.04888606645645275, 1.7053025658240448e-13]","[-0.04885749679606852, -1.705302565824039e-13]","[0.012349026216020393, 1.7053025658235107e-13]","[-0.012335015798821774, -1.705302565823508e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_169_LVCableDist_mvgd_0_lvgd_1006_170,"[0.0011824120428954288, 0.0]","[-0.001182361693329935, 0.0]","[0.0002963372830779389, -0.0]","[-0.00029632777127108637, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_169_LVCableDist_mvgd_0_lvgd_1006_171,"[0.0476750847531825, 1.5631940186720467e-13]","[-0.047647880610023875, -1.5631940186720414e-13]","[0.012038678516546086, 1.6342482922475393e-13]","[-0.012025337742100137, -1.6342482922475365e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_171_LVCableDist_mvgd_0_lvgd_1006_172,"[0.0011824591530832484, 0.0]","[-0.0011823616932984328, 0.0]","[0.00029633732803949827, -0.0]","[-0.0002963277687660164, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_171_LVCableDist_mvgd_0_lvgd_1006_173,"[0.04646542145723756, 1.7053025658240001e-13]","[-0.04643955023709122, -1.7053025658239946e-13]","[0.011729000412019606, 1.4921397450955336e-13]","[-0.011716313296288696, -1.492139745095531e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_173_LVCableDist_mvgd_0_lvgd_1006_174,"[0.001182412162794784, 0.0]","[-0.0011823616931029603, 0.0]","[0.0002963373056207545, -0.0]","[-0.0002963277711201917, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_173_LVCableDist_mvgd_0_lvgd_1006_175,"[0.04525713807463588, 1.9895196601279554e-13]","[-0.045232567004633475, -1.989519660127949e-13]","[0.011419975990679246, 1.4921397450954874e-13]","[-0.011407926462014207, -1.4921397450954841e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_175_LVCableDist_mvgd_0_lvgd_1006_176,"[0.0011824593796867114, 0.0]","[-0.001182361693080077, 0.0]","[0.00029633734999636455, -0.0]","[-0.0002963277684752262, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_175_LVCableDist_mvgd_0_lvgd_1006_177,"[0.04405010762558344, 1.9895196601279382e-13]","[-0.04402680395322599, -1.9895196601279324e-13]","[0.01111158910904763, 1.4210854715194943e-13]","[-0.011100161105788339, -1.4210854715194915e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_177_LVCableDist_mvgd_0_lvgd_1006_178,"[0.0011824122770542193, 0.0]","[-0.0011823616928795812, 0.0]","[0.0002963373270977446, -0.0]","[-0.00029632777096961853, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_177_LVCableDist_mvgd_0_lvgd_1006_179,"[0.04284439167685977, 1.847411112975931e-13]","[-0.04282232247929456, -1.8474111129759258e-13]","[0.010803823777896572, 1.2789769243675336e-13]","[-0.010793001154842287, -1.278976924367531e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_179_LVCableDist_mvgd_0_lvgd_1006_180,"[0.0011824595953199978, 0.0]","[-0.0011823616928679215, 0.0]","[0.0002963373708797787, -0.0]","[-0.0002963277681875943, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_179_LVCableDist_mvgd_0_lvgd_1006_181,"[0.04163986288495259, 1.705302565823925e-13]","[-0.041618995258637013, -1.7053025658239206e-13]","[0.010496663780049967, 1.1368683772155736e-13]","[-0.010486430401469534, -1.1368683772155712e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_17_LVCableDist_mvgd_0_lvgd_1006_18,"[0.0011824113016511146, 0.0]","[-0.0011823616946074406, 0.0]","[0.00029633714367000924, -0.0]","[-0.0002963277721369419, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_17_LVCableDist_mvgd_0_lvgd_1006_19,"[0.0070980588257687546, 4.9737991503196404e-14]","[-0.007096693485395043, -4.973799150319634e-14]","[0.0017797157449413493, 7.105427357590307e-15]","[-0.0017790461889159517, -7.105427357590277e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_181_LVCableDist_mvgd_0_lvgd_1006_182,"[0.0011824123856085686, 0.0]","[-0.0011823616926609787, 0.0]","[0.00029633734749819426, -0.0]","[-0.00029632777082118567, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_181_LVCableDist_mvgd_0_lvgd_1006_183,"[0.04043658287405164, 1.5631940186719306e-13]","[-0.040416883753502934, -1.563194018671927e-13]","[0.010190093052323344, 1.0658141036396035e-13]","[-0.010180432703070976, -1.0658141036396015e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_183_LVCableDist_mvgd_0_lvgd_1006_184,"[0.0011824597998453133, 0.0]","[-0.0011823616926495794, 0.0]","[0.0002963373906792446, -0.0]","[-0.0002963277679049244, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_183_LVCableDist_mvgd_0_lvgd_1006_185,"[0.0392344239549956, 1.5631940186719054e-13]","[-0.03921586029298176, -1.563194018671902e-13]","[0.009884095307483173, 9.237055564876228e-14]","[-0.009874991781363156, -9.237055564876216e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_185_LVCableDist_mvgd_0_lvgd_1006_186,"[0.001182412488388525, 0.0]","[-0.001182361692441187, 0.0]","[0.0002963373668109232, -0.0]","[-0.00029632777067567886, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_185_LVCableDist_mvgd_0_lvgd_1006_187,"[0.03803344780597834, 1.2789769243679239e-13]","[-0.03801598640184809, -1.2789769243679213e-13]","[0.00957865441206754, 7.815970093356864e-14]","[-0.009570091427648116, -7.81597009335685e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_187_LVCableDist_mvgd_0_lvgd_1006_188,"[0.0011824599931610266, 0.0]","[-0.0011823616924429305, 0.0]","[0.0002963374093850233, -0.0]","[-0.0002963277676292004, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_187_LVCableDist_mvgd_0_lvgd_1006_189,"[0.036833526410346235, 1.4210854715199103e-13]","[-0.03681713408063977, -1.4210854715199078e-13]","[0.009273754012386618, 8.526512829116525e-14]","[-0.009265715296666647, -8.526512829116512e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_189_LVCableDist_mvgd_0_lvgd_1006_190,"[0.0011824125853432705, 0.0]","[-0.0011823616922296404, 0.0]","[0.0002963373850265389, -0.0]","[-0.00029632777053508846, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_189_LVCableDist_mvgd_0_lvgd_1006_191,"[0.03563472149700131, 1.2789769243679082e-13]","[-0.03561936491346246, -1.278976924367906e-13]","[0.00896937790830327, 7.10542735759695e-14]","[-0.008961847117274211, -7.105427357596939e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_191_LVCableDist_mvgd_0_lvgd_1006_192,"[0.0011824601751492581, 0.0]","[-0.0011823616922435598, 0.0]","[0.0002963374269867203, -0.0]","[-0.00029632776736115637, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_191_LVCableDist_mvgd_0_lvgd_1006_193,"[0.03443690474035651, 1.1368683772159284e-13]","[-0.034422550590861294, -1.1368683772159265e-13]","[0.008665509683436719, 7.105427357597155e-14]","[-0.008658470481001178, -7.105427357597145e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_193_LVCableDist_mvgd_0_lvgd_1006_194,"[0.0011824126764148858, 0.0]","[-0.0011823616920255047, 0.0]","[0.00029633740213176005, -0.0]","[-0.0002963277703969172, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_193_LVCableDist_mvgd_0_lvgd_1006_195,"[0.033240137916504445, 1.2789769243679145e-13]","[-0.033226752752852334, -1.2789769243679125e-13]","[0.008362133074694581, 7.815970093356817e-14]","[-0.008355569058023897, -7.815970093356806e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_195_LVCableDist_mvgd_0_lvgd_1006_196,"[0.001182460345701338, 0.0]","[-0.0011823616920500612, 0.0]","[0.00029633744347681856, -0.0]","[-0.0002963277671037962, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_195_LVCableDist_mvgd_0_lvgd_1006_197,"[0.032044292409507305, 1.1368683772159353e-13]","[-0.032031842798570895, -1.1368683772159332e-13]","[0.008059231606735082, 7.815970093357021e-14]","[-0.00805312638039239, -7.815970093357011e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_197_LVCableDist_mvgd_0_lvgd_1006_198,"[0.0011824127615542982, 0.0]","[-0.0011823616918335477, 0.0]","[0.0002963374181224374, -0.0]","[-0.00029632777026718726, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_197_LVCableDist_mvgd_0_lvgd_1006_199,"[0.030849430039403186, 8.526512829119902e-14]","[-0.03083788242078952, -8.526512829119887e-14]","[0.007756788957250814, 8.526512829117325e-14]","[-0.007751126063388864, -8.526512829117317e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_199_LVCableDist_mvgd_0_lvgd_1006_200,"[0.0011824605047146026, 0.0]","[-0.0011823616918606899, 0.0]","[0.0002963374588446412, -0.0]","[-0.00029632776685634187, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_199_LVCableDist_mvgd_0_lvgd_1006_201,"[0.029655421918727685, 9.947598300639654e-14]","[-0.029644742746058, -9.947598300639638e-14]","[0.007454788595793804, 8.526512829117103e-14]","[-0.007449551583437822, -8.526512829117098e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_19_LVCableDist_mvgd_0_lvgd_1006_20,"[0.0011824576402975732, 0.0]","[-0.0011823616946443098, 0.0]","[0.0002963371813070661, -0.0]","[-0.0002963277705460975, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_19_LVCableDist_mvgd_0_lvgd_1006_21,"[0.005914235846890947, 3.5527136787998395e-14]","[-0.005913287583022376, -3.552713678799837e-14]","[0.0014827090018734673, 1.06581410363925e-14]","[-0.0014822439780602906, -1.0658141036392481e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_1_LVCableDist_mvgd_0_lvgd_1006_2,"[0.0011824110209943985, 0.0]","[-0.00118236169492765, 0.0]","[0.00029633709080013784, -0.0]","[-0.00029632777234793066, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_1_LVCableDist_mvgd_0_lvgd_1006_3,"[0.016592537400981183, 7.815970093359346e-14]","[-0.016585117284069247, -7.815970093359332e-14]","[0.004167578824598902, -1.3576941262536299e-26]","[-0.004163940036730912, 1.3654050482976644e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1006_1_LVStation_mvgd_0_lvgd_1006,"[0.017783463610315662, 9.947598300639068e-14]","[-0.017774948420825214, -9.947598300639045e-14]","[0.00446809172390992, -7.105427357616579e-15]","[-0.0044639159179786616, 7.105427357616686e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_201_LVCableDist_mvgd_0_lvgd_1006_202,"[0.001182412840702999, 0.0]","[-0.0011823616916457847, 0.0]","[0.000296337432985319, -0.0]","[-0.0002963277701421913, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_201_LVCableDist_mvgd_0_lvgd_1006_203,"[0.02846232990807127, 9.947598300639638e-14]","[-0.028452485516598076, -9.94759830063962e-14]","[0.00715321414463038, 8.526512829117098e-14]","[-0.007148386504758186, -8.526512829117089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_203_LVCableDist_mvgd_0_lvgd_1006_204,"[0.0011824606521044178, 0.0]","[-0.0011823616916852495, 0.0]","[0.000296337473083737, -0.0]","[-0.00029632776662160483, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_203_LVCableDist_mvgd_0_lvgd_1006_205,"[0.02727002486749564, 8.526512829119751e-14]","[-0.02726098160542689, -8.526512829119737e-14]","[0.006852049022011533, 7.815970093357419e-14]","[-0.006847614251954216, -7.815970093357413e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_205_LVCableDist_mvgd_0_lvgd_1006_206,"[0.0011824129138281816, 0.0]","[-0.0011823616914765469, 0.0]","[0.00029633744671223375, -0.0]","[-0.00029632777002266345, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_205_LVCableDist_mvgd_0_lvgd_1006_207,"[0.026078568694586718, 8.526512829119737e-14]","[-0.026070292800738585, -8.526512829119723e-14]","[0.00655127679861256, 7.815970093357413e-14]","[-0.006547218342056045, -7.815970093357405e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_207_LVCableDist_mvgd_0_lvgd_1006_208,"[0.0011824607877804578, 0.0]","[-0.0011823616915212444, 0.0]","[0.000296337486187407, -0.0]","[-0.00029632776640150095, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_207_LVCableDist_mvgd_0_lvgd_1006_209,"[0.024887832016229544, 9.947598300639586e-14]","[-0.024880289741315002, -9.94759830063957e-14]","[0.006250880845327167, 8.526512829117074e-14]","[-0.006247182151791497, -8.526512829117064e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_209_LVCableDist_mvgd_0_lvgd_1006_210,"[0.001182412980875103, 0.0]","[-0.0011823616913147815, 0.0]","[0.00029633745929846984, -0.0]","[-0.0002963277699121455, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_209_LVCableDist_mvgd_0_lvgd_1006_211,"[0.023697876763739825, 9.947598300639253e-14]","[-0.023691034258131224, -9.947598300639238e-14]","[0.00595084468513845, 6.394884621837427e-14]","[-0.005947489154937143, -6.394884621837422e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_211_LVCableDist_mvgd_0_lvgd_1006_212,"[0.001182460911659227, 0.0]","[-0.0011823616913662818, 0.0]","[0.00029633749814730913, -0.0]","[-0.000296327766195643, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_211_LVCableDist_mvgd_0_lvgd_1006_213,"[0.022508573350028937, 1.1368683772159311e-13]","[-0.022502396774937077, -1.1368683772159291e-13]","[0.00565115164543724, 8.526512829116844e-14]","[-0.005648122684198926, -8.526512829116833e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_213_LVCableDist_mvgd_0_lvgd_1006_214,"[0.0011824130417993376, 0.0]","[-0.0011823616911562443, 0.0]","[0.00029633747073512474, -0.0]","[-0.00029632776980932586, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_213_LVCableDist_mvgd_0_lvgd_1006_215,"[0.021319983736715998, 8.526512829119468e-14]","[-0.021314439162130525, -8.526512829119455e-14]","[0.005351785205391819, 6.394884621837625e-14]","[-0.005349066174010748, -6.394884621837619e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_215_LVCableDist_mvgd_0_lvgd_1006_216,"[0.0011824610236663411, 0.0]","[-0.0011823616912202408, 0.0]","[0.000296337508959045, -0.0]","[-0.0002963277660069166, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_215_LVCableDist_mvgd_0_lvgd_1006_217,"[0.020131978142256864, 8.526512829119561e-14]","[-0.0201270316479477, -8.526512829119548e-14]","[0.005052728652906779, 7.105427357597494e-14]","[-0.005050302917073381, -7.105427357597487e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_217_LVCableDist_mvgd_0_lvgd_1006_218,"[0.001182413096579244, 0.0]","[-0.0011823616910159108, 0.0]","[0.00029633748101632, -0.0]","[-0.0002963277697152436, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_217_LVCableDist_mvgd_0_lvgd_1006_219,"[0.018944618555164827, 9.947598300638983e-14]","[-0.018940236138862483, -9.94759830063897e-14]","[0.004753965427354569, 4.9737991503176525e-14]","[-0.004751816312527579, -4.9737991503176475e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_219_LVCableDist_mvgd_0_lvgd_1006_220,"[0.0011824611237400626, 0.0]","[-0.0011823616910887076, 0.0]","[0.0002963375186155421, -0.0]","[-0.00029632776583485277, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_219_LVCableDist_mvgd_0_lvgd_1006_221,"[0.017757775019174964, 5.684341886079622e-14]","[-0.01775392268733226, -5.684341886079617e-14]","[0.0044554787810670285, 4.263256414558404e-14]","[-0.004453589616982542, -4.263256414558401e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_21_LVCableDist_mvgd_0_lvgd_1006_22,"[0.0011824113386009207, 0.0]","[-0.001182361694566944, 0.0]","[0.0002963371506298026, -0.0]","[-0.00029632777210869847, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_21_LVCableDist_mvgd_0_lvgd_1006_23,"[0.004730876246217011, 3.5527136787997077e-14]","[-0.004730269291153281, -3.5527136787997045e-14]","[0.0011859068231757153, 3.5527136787931945e-15]","[-0.0011856091754770973, -3.55271367879318e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_221_LVCableDist_mvgd_0_lvgd_1006_222,"[0.0011824131451812978, 0.0]","[-0.00118236169089326, 0.0]","[0.00029633749013619246, -0.0]","[-0.00029632776963027047, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_221_LVCableDist_mvgd_0_lvgd_1006_223,"[0.01657150954615265, 7.105427357599154e-14]","[-0.01656815323242092, -7.105427357599148e-14]","[0.004157252117528285, 2.842170943038444e-14]","[-0.004155606198220932, -2.8421709430384415e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_223_LVCableDist_mvgd_0_lvgd_1006_224,"[0.0011824612118241967, 0.0]","[-0.0011823616909757766, 0.0]","[0.0002963375271128832, -0.0]","[-0.00029632776568144765, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_223_LVCableDist_mvgd_0_lvgd_1006_225,"[0.015385692024896418, 8.526512829119208e-14]","[-0.0153827976705915, -8.526512829119199e-14]","[0.0038592686576171065, 4.97379915031785e-14]","[-0.0038578492808801377, -4.9737991503178456e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_225_LVCableDist_mvgd_0_lvgd_1006_226,"[0.0011824131875600764, 0.0]","[-0.0011823616907722153, 0.0]","[0.00029633749809034526, -0.0]","[-0.0002963277695555534, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_225_LVCableDist_mvgd_0_lvgd_1006_227,"[0.014200384487195992, 5.684341886079291e-14]","[-0.01419791797012014, -5.684341886079287e-14]","[0.0035615117729586926, 2.1316282072787768e-14]","[-0.0035603022054386205, -2.131628207278775e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_227_LVCableDist_mvgd_0_lvgd_1006_228,"[0.0011824612878598832, 0.0]","[-0.0011823616908757627, 0.0]","[0.0002963375344455949, -0.0]","[-0.0002963277655464435, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_227_LVCableDist_mvgd_0_lvgd_1006_229,"[0.01301545668672542, 7.105427357599135e-14]","[-0.013013383891287781, -7.105427357599129e-14]","[0.0032639646569420843, 2.8421709430384362e-14]","[-0.0032629481685254153, -2.8421709430384333e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_229_LVCableDist_mvgd_0_lvgd_1006_230,"[0.0011824132237263903, 0.0]","[-0.0011823616906892287, 0.0]","[0.00029633750487404495, -0.0]","[-0.00029632776949120305, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_229_LVCableDist_mvgd_0_lvgd_1006_231,"[0.011830970671968304, 5.684341886079177e-14]","[-0.011829257428395934, -5.684341886079173e-14]","[0.0029666106533555846, 1.4210854715189017e-14]","[-0.0029657704873581963, -1.4210854715189e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_231_LVCableDist_mvgd_0_lvgd_1006_232,"[0.0011824613517977419, 0.0]","[-0.0011823616907852695, 0.0]","[0.00029633754061319845, -0.0]","[-0.00029632776543387176, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_231_LVCableDist_mvgd_0_lvgd_1006_233,"[0.010646796081186675, 7.105427357599019e-14]","[-0.010645408225256165, -7.105427357599014e-14]","[0.002669432932199225, 2.13162820727856e-14]","[-0.0026687523346584606, -2.1316282072785575e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_233_LVCableDist_mvgd_0_lvgd_1006_234,"[0.0011824132536191274, 0.0]","[-0.0011823616906051, 0.0]","[0.00029633751048416333, -0.0]","[-0.00029632776943823067, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_233_LVCableDist_mvgd_0_lvgd_1006_235,"[0.009462994976158748, 7.105427357598698e-14]","[-0.009461898298833388, -7.105427357598693e-14]","[0.00237241481348369, -1.0519212721629396e-26]","[-0.0023718770084606715, 1.0538818216937814e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1006_235_LVCableDist_mvgd_0_lvgd_1006_236,"[0.0011824614036142686, 0.0]","[-0.001182361690719522, 0.0]","[0.00029633754560809243, -0.0]","[-0.0002963277653399299, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_235_LVCableDist_mvgd_0_lvgd_1006_237,"[0.008279436899952933, 2.8421709430394775e-14]","[-0.008278597196688282, -2.8421709430394762e-14]","[0.0020755394479232323, -4.215527286775125e-27]","[-0.0020751276616820732, 4.223409249245363e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1006_237_LVCableDist_mvgd_0_lvgd_1006_238,"[0.0011824132772404329, 0.0]","[-0.0011823616905401165, 0.0]","[0.00029633751491355703, -0.0]","[-0.0002963277693929203, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_237_LVCableDist_mvgd_0_lvgd_1006_239,"[0.0070961839240908835, 5.684341886078741e-14]","[-0.007095566954928931, -5.684341886078738e-14]","[0.0017787901357478014, -1.4210854715205828e-14]","[-0.0017784875771859783, 1.4210854715205847e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_239_LVCableDist_mvgd_0_lvgd_1006_240,"[0.001182461443262685, 0.0]","[-0.0011823616906631656, 0.0]","[0.00029633754943016063, -0.0]","[-0.00029632776526758377, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_239_LVCableDist_mvgd_0_lvgd_1006_241,"[0.005913105516536005, 4.2632564145590007e-14]","[-0.005912677044953873, -4.263256414558999e-14]","[0.0014821500125252042, -1.4210854715203727e-14]","[-0.0014819398922247633, 1.4210854715203736e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_23_LVCableDist_mvgd_0_lvgd_1006_24,"[0.0011824576988108794, 0.0]","[-0.0011823616946088121, 0.0]","[0.00029633718700349334, -0.0]","[-0.0002963277704998071, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_23_LVCableDist_mvgd_0_lvgd_1006_25,"[0.0035478115942045273, 3.5527136787997045e-14]","[-0.003547470159173392, -3.552713678799702e-14]","[0.0008892719825563592, 3.55271367879318e-15]","[-0.0008891045445410621, -3.5527136787931657e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_241_LVCableDist_mvgd_0_lvgd_1006_242,"[0.001182413294579199, 0.0]","[-0.001182361690497521, 0.0]","[0.0002963375181665426, -0.0]","[-0.00029632776936229944, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_241_LVCableDist_mvgd_0_lvgd_1006_243,"[0.004730263755093675, 2.8421709430391556e-14]","[-0.004729989518579098, -2.8421709430391543e-14]","[0.0011856023628111726, -2.1316282072800298e-14]","[-0.0011854678786090977, 2.1316282072800308e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_243_LVCableDist_mvgd_0_lvgd_1006_244,"[0.0011824614707273895, 0.0]","[-0.0011823616906246693, 0.0]","[0.0002963375520786357, -0.0]","[-0.000296327765218427, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_243_LVCableDist_mvgd_0_lvgd_1006_245,"[0.003547528052798846, 2.8421709430392607e-14]","[-0.003547373791217644, -2.8421709430392597e-14]","[0.0008891303111047453, -1.4210854715201622e-14]","[-0.0008890546620042207, 1.4210854715201625e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_245_LVCableDist_mvgd_0_lvgd_1006_246,"[0.0011824133056024375, 0.0]","[-0.001182361690454868, 0.0]","[0.00029633752023658876, -0.0]","[-0.0002963277693418286, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_245_LVCableDist_mvgd_0_lvgd_1006_247,"[0.0023649604903469715, -1.4210854715197364e-14]","[-0.0023648919270177105, 1.4210854715197365e-14]","[0.0005927171303719073, 2.1306530347798493e-27]","[-0.0005926835072614273, -2.1315685881857608e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1006_247_LVCableDist_mvgd_0_lvgd_1006_248,"[0.0011824614859939522, 0.0]","[-0.0011823616906062883, 0.0]","[0.0002963375535498654, -0.0]","[-0.00029632776519044387, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_247_LVCableDist_mvgd_0_lvgd_1006_249,"[0.0011824304459997288, -1.0657842940928804e-27]","[-0.001182413305562102, 1.0662321297091181e-27]","[0.00029634593815658816, -7.105427357598683e-15]","[-0.00029633753257252127, 7.105427357598683e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_249_LVCableDist_mvgd_0_lvgd_1006_250,"[0.0011824133103448245, 0.0]","[-0.0011823616904535457, 0.0]","[0.00029633752112389667, -0.0]","[-0.000296327769332977, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_25_LVCableDist_mvgd_0_lvgd_1006_26,"[0.0011824113621361726, 0.0]","[-0.0011823616945392087, 0.0]","[0.00029633715506152865, -0.0]","[-0.00029632777208901407, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_25_LVCableDist_mvgd_0_lvgd_1006_27,"[0.002365058798863805, 7.105427357598627e-15]","[-0.0023649070395203157, -7.105427357598625e-15]","[0.0005927673850774911, -3.552713678800932e-15]","[-0.0005926929630617066, 3.552713678800932e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_27_LVCableDist_mvgd_0_lvgd_1006_28,"[0.001182457731349062, 0.0]","[-0.0011823616945944295, 0.0]","[0.0002963371901704375, -0.0]","[-0.00029632777047385614, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_27_LVCableDist_mvgd_0_lvgd_1006_29,"[0.0011824493100898413, 7.105427357598625e-15]","[-0.0011824113703676343, -7.105427357598624e-15]","[0.00029635576686207107, -3.552713678800932e-15]","[-0.00029633716141386576, 3.552713678800932e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_29_LVCableDist_mvgd_0_lvgd_1006_30,"[0.0011824113722295531, 0.0]","[-0.0011823616945285454, 0.0]","[0.000296337156962978, -0.0]","[-0.0002963277720816542, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_31_LVCableDist_mvgd_0_lvgd_1006_32,"[0.001182411051693867, 0.0]","[-0.001182361694868667, 0.0]","[0.0002963370965765454, -0.0]","[-0.00029632777231359387, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_31_LVCableDist_mvgd_0_lvgd_1006_33,"[0.06476811178758932, 3.5527136788001324e-13]","[-0.06471885845354867, -3.5527136788001127e-13]","[0.01645169235548474, 2.557953848735169e-13]","[-0.01642753876916093, -2.55795384873516e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_31_LVStation_mvgd_0_lvgd_1006,"[0.06600158945484447, 3.552713678800152e-13]","[-0.0659505228412521, -3.5527136788001324e-13]","[0.016773072256494232, 2.557953848735179e-13]","[-0.016748029447033873, -2.557953848735169e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_33_LVCableDist_mvgd_0_lvgd_1006_34,"[0.001182457271202607, 0.0]","[-0.0011823616948168497, 0.0]","[0.0002963371453213672, -0.0]","[-0.0002963277707797386, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_33_LVCableDist_mvgd_0_lvgd_1006_35,"[0.06353640118056841, 3.1263880373441515e-13]","[-0.06348892983225814, -3.126388037344135e-13]","[0.016131201627180264, 2.557953848735233e-13]","[-0.016107921917661028, -2.5579538487352247e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_35_LVCableDist_mvgd_0_lvgd_1006_36,"[0.0011824112090245721, 0.0]","[-0.0011823616946594927, 0.0]","[0.00029633712619719986, -0.0]","[-0.0002963277721725436, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_35_LVCableDist_mvgd_0_lvgd_1006_37,"[0.06230651862152228, 2.700062395888128e-13]","[-0.06226079773188578, -2.7000623958881146e-13]","[0.015811584796040997, 2.273736754431324e-13]","[-0.015789163502616988, -2.2737367544313177e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_37_LVCableDist_mvgd_0_lvgd_1006_38,"[0.0011824575706819245, 0.0]","[-0.0011823616946097866, 0.0]","[0.0002963371744418534, -0.0]","[-0.0002963277705056999, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_37_LVCableDist_mvgd_0_lvgd_1006_39,"[0.061078340159625454, 2.4158453015841665e-13]","[-0.061034338229382375, -2.415845301584155e-13]","[0.015492826330920414, 2.4158453015833516e-13]","[-0.015471248006503565, -2.415845301583346e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_39_LVCableDist_mvgd_0_lvgd_1006_40,"[0.0011824113612486835, 0.0]","[-0.001182361694446365, 0.0]","[0.00029633715484868436, -0.0]","[-0.0002963277720262905, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_39_LVCableDist_mvgd_0_lvgd_1006_41,"[0.05985192686666673, 2.2737367544321696e-13]","[-0.05980961217069073, -2.2737367544321585e-13]","[0.015174910855737626, 2.41584530158337e-13]","[-0.01515415994248618, -2.415845301583364e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_3_LVCableDist_mvgd_0_lvgd_1006_4,"[0.0011824571485017374, 0.0]","[-0.0011823616949185303, 0.0]","[0.0002963371334120405, -0.0]","[-0.00029632777091541244, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_3_LVCableDist_mvgd_0_lvgd_1006_5,"[0.015402660136827681, 9.237055564879086e-14]","[-0.015396260250466635, -9.237055564879067e-14]","[0.0038676028991064954, -7.10542735761553e-15]","[-0.003864464427149316, 7.105427357615613e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_41_LVCableDist_mvgd_0_lvgd_1006_42,"[0.0011824578602081114, 0.0]","[-0.0011823616943977737, 0.0]","[0.00029633720257810314, -0.0]","[-0.000296327770223185, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_41_LVCableDist_mvgd_0_lvgd_1006_43,"[0.05862715430916779, 1.989519660128177e-13]","[-0.05858649514905227, -1.9895196601281672e-13]","[0.014857822741988862, 2.344791028007419e-13]","[-0.01483788369516427, -2.3447910280074133e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_43_LVCableDist_mvgd_0_lvgd_1006_44,"[0.0011824115082703312, 0.0]","[-0.0011823616942181964, 0.0]","[0.0002963371825194342, -0.0]","[-0.00029632777187928655, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_43_LVCableDist_mvgd_0_lvgd_1006_45,"[0.057404083639507913, 2.1316282072801398e-13]","[-0.057365048098532295, -2.1316282072801302e-13]","[0.014541546516173605, 2.273736754431398e-13]","[-0.014522403683977244, -2.2737367544313937e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_45_LVCableDist_mvgd_0_lvgd_1006_46,"[0.001182458139622795, 0.0]","[-0.001182361694184139, 0.0]","[0.000296337229718642, -0.0]","[-0.00029632776993657964, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_45_LVCableDist_mvgd_0_lvgd_1006_47,"[0.05618258995795027, 1.847411112976151e-13]","[-0.05614514614505626, -1.847411112976142e-13]","[0.014226066455623161, 2.2026824808554483e-13]","[-0.014207704198841075, -2.2026824808554435e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_47_LVCableDist_mvgd_0_lvgd_1006_48,"[0.001182411650034818, 0.0]","[-0.0011823616940027316, 0.0]","[0.00029633720919214655, -0.0]","[-0.0002963277717298037, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_47_LVCableDist_mvgd_0_lvgd_1006_49,"[0.05496273449407216, 2.2737367544320808e-13]","[-0.05492685030755836, -2.2737367544320712e-13]","[0.01391136699253994, 2.1316282072793827e-13]","[-0.013893769568659857, -2.1316282072793782e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_49_LVCableDist_mvgd_0_lvgd_1006_50,"[0.0011824584087651684, 0.0]","[-0.0011823616939651603, 0.0]","[0.0002963372558482694, -0.0]","[-0.00029632776964609104, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_49_LVCableDist_mvgd_0_lvgd_1006_51,"[0.053744391898096176, 1.7053025658241162e-13]","[-0.053710035260865686, -1.7053025658241092e-13]","[0.013597432313421283, 1.9895196601274869e-13]","[-0.013580583991996836, -1.989519660127483e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_51_LVCableDist_mvgd_0_lvgd_1006_52,"[0.0011824117864380438, 0.0]","[-0.0011823616937758775, 0.0]","[0.00029633723485068803, -0.0]","[-0.0002963277715768229, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_51_LVCableDist_mvgd_0_lvgd_1006_53,"[0.05252762347377736, 1.847411112976069e-13]","[-0.0524947621058955, -1.8474111129760618e-13]","[0.013284246759387667, 1.8474111129754777e-13]","[-0.013268131710501885, -1.8474111129754747e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_53_LVCableDist_mvgd_0_lvgd_1006_54,"[0.0011824586674871673, 0.0]","[-0.0011823616937450402, 0.0]","[0.00029633728095359126, -0.0]","[-0.00029632776935325974, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_53_LVCableDist_mvgd_0_lvgd_1006_55,"[0.051312303438075704, 1.421085471520138e-13]","[-0.05128090508315397, -1.421085471520132e-13]","[0.012971794429313694, 1.9895196601275245e-13]","[-0.012956396834596519, -1.9895196601275214e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_55_LVCableDist_mvgd_0_lvgd_1006_56,"[0.0011824119174103731, 0.0]","[-0.0011823616935454633, 0.0]","[0.0002963372594843561, -0.0]","[-0.000296327771424276, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_55_LVCableDist_mvgd_0_lvgd_1006_57,"[0.050098493165368456, 1.5631940186720803e-13]","[-0.050068525372116805, -1.5631940186720745e-13]","[0.012660059576650739, 1.7763568393995262e-13]","[-0.012645363522153378, -1.7763568393995237e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_57_LVCableDist_mvgd_0_lvgd_1006_58,"[0.0011824589156437227, 0.0]","[-0.0011823616935259715, 0.0]","[0.00029633730502166334, -0.0]","[-0.00029632776905958596, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_57_LVCableDist_mvgd_0_lvgd_1006_59,"[0.04888606645645275, 1.7053025658240448e-13]","[-0.04885749679606852, -1.705302565824039e-13]","[0.012349026216020393, 1.7053025658235107e-13]","[-0.012335015798821774, -1.705302565823508e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_59_LVCableDist_mvgd_0_lvgd_1006_60,"[0.0011824120428954288, 0.0]","[-0.001182361693329935, 0.0]","[0.0002963372830779389, -0.0]","[-0.00029632777127108637, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_59_LVCableDist_mvgd_0_lvgd_1006_61,"[0.0476750847531825, 1.5631940186720467e-13]","[-0.047647880610023875, -1.5631940186720414e-13]","[0.012038678516546086, 1.6342482922475393e-13]","[-0.012025337742100137, -1.6342482922475365e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_5_LVCableDist_mvgd_0_lvgd_1006_6,"[0.0011824111109185497, 0.0]","[-0.0011823616948250272, 0.0]","[0.0002963371077410425, -0.0]","[-0.0002963277722813939, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_5_LVCableDist_mvgd_0_lvgd_1006_7,"[0.01421384914084642, 9.237055564879067e-14]","[-0.014208394431074679, -9.237055564879046e-14]","[0.0035681273163650257, -7.105427357615613e-15]","[-0.003565452354234862, 7.10542735761572e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_61_LVCableDist_mvgd_0_lvgd_1006_62,"[0.0011824591530832484, 0.0]","[-0.0011823616932984328, 0.0]","[0.00029633732803949827, -0.0]","[-0.0002963277687660164, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_61_LVCableDist_mvgd_0_lvgd_1006_63,"[0.04646542145723756, 1.7053025658240001e-13]","[-0.04643955023709122, -1.7053025658239946e-13]","[0.011729000412019606, 1.4921397450955336e-13]","[-0.011716313296288696, -1.492139745095531e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_63_LVCableDist_mvgd_0_lvgd_1006_64,"[0.001182412162794784, 0.0]","[-0.0011823616931029603, 0.0]","[0.0002963373056207545, -0.0]","[-0.0002963277711201917, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_63_LVCableDist_mvgd_0_lvgd_1006_65,"[0.04525713807463588, 1.9895196601279554e-13]","[-0.045232567004633475, -1.989519660127949e-13]","[0.011419975990679246, 1.4921397450954874e-13]","[-0.011407926462014207, -1.4921397450954841e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_65_LVCableDist_mvgd_0_lvgd_1006_66,"[0.0011824593796867114, 0.0]","[-0.001182361693080077, 0.0]","[0.00029633734999636455, -0.0]","[-0.0002963277684752262, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_65_LVCableDist_mvgd_0_lvgd_1006_67,"[0.04405010762558344, 1.9895196601279382e-13]","[-0.04402680395322599, -1.9895196601279324e-13]","[0.01111158910904763, 1.4210854715194943e-13]","[-0.011100161105788339, -1.4210854715194915e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_67_LVCableDist_mvgd_0_lvgd_1006_68,"[0.0011824122770542193, 0.0]","[-0.0011823616928795812, 0.0]","[0.0002963373270977446, -0.0]","[-0.00029632777096961853, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_67_LVCableDist_mvgd_0_lvgd_1006_69,"[0.04284439167685977, 1.847411112975931e-13]","[-0.04282232247929456, -1.8474111129759258e-13]","[0.010803823777896572, 1.2789769243675336e-13]","[-0.010793001154842287, -1.278976924367531e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_69_LVCableDist_mvgd_0_lvgd_1006_70,"[0.0011824595953199978, 0.0]","[-0.0011823616928679215, 0.0]","[0.0002963373708797787, -0.0]","[-0.0002963277681875943, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_69_LVCableDist_mvgd_0_lvgd_1006_71,"[0.04163986288495259, 1.705302565823925e-13]","[-0.041618995258637013, -1.7053025658239206e-13]","[0.010496663780049967, 1.1368683772155736e-13]","[-0.010486430401469534, -1.1368683772155712e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_71_LVCableDist_mvgd_0_lvgd_1006_72,"[0.0011824123856085686, 0.0]","[-0.0011823616926609787, 0.0]","[0.00029633734749819426, -0.0]","[-0.00029632777082118567, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_71_LVCableDist_mvgd_0_lvgd_1006_73,"[0.04043658287405164, 1.5631940186719306e-13]","[-0.040416883753502934, -1.563194018671927e-13]","[0.010190093052323344, 1.0658141036396035e-13]","[-0.010180432703070976, -1.0658141036396015e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1006_73_LVCableDist_mvgd_0_lvgd_1006_74,"[0.0011824597998453133, 0.0]","[-0.0011823616926495794, 0.0]","[0.0002963373906792446, -0.0]","[-0.0002963277679049244, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_73_LVCableDist_mvgd_0_lvgd_1006_75,"[0.0392344239549956, 1.5631940186719054e-13]","[-0.03921586029298176, -1.563194018671902e-13]","[0.009884095307483173, 9.237055564876228e-14]","[-0.009874991781363156, -9.237055564876216e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_75_LVCableDist_mvgd_0_lvgd_1006_76,"[0.001182412488388525, 0.0]","[-0.001182361692441187, 0.0]","[0.0002963373668109232, -0.0]","[-0.00029632777067567886, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_75_LVCableDist_mvgd_0_lvgd_1006_77,"[0.03803344780597834, 1.2789769243679239e-13]","[-0.03801598640184809, -1.2789769243679213e-13]","[0.00957865441206754, 7.815970093356864e-14]","[-0.009570091427648116, -7.81597009335685e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_77_LVCableDist_mvgd_0_lvgd_1006_78,"[0.0011824599931610266, 0.0]","[-0.0011823616924429305, 0.0]","[0.0002963374093850233, -0.0]","[-0.0002963277676292004, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_77_LVCableDist_mvgd_0_lvgd_1006_79,"[0.036833526410346235, 1.4210854715199103e-13]","[-0.03681713408063977, -1.4210854715199078e-13]","[0.009273754012386618, 8.526512829116525e-14]","[-0.009265715296666647, -8.526512829116512e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_79_LVCableDist_mvgd_0_lvgd_1006_80,"[0.0011824125853432705, 0.0]","[-0.0011823616922296404, 0.0]","[0.0002963373850265389, -0.0]","[-0.00029632777053508846, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_79_LVCableDist_mvgd_0_lvgd_1006_81,"[0.03563472149700131, 1.2789769243679082e-13]","[-0.03561936491346246, -1.278976924367906e-13]","[0.00896937790830327, 7.10542735759695e-14]","[-0.008961847117274211, -7.105427357596939e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_7_LVCableDist_mvgd_0_lvgd_1006_8,"[0.0011824573098199616, 0.0]","[-0.0011823616948324915, 0.0]","[0.00029633714912446075, -0.0]","[-0.0002963277707966107, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_7_LVCableDist_mvgd_0_lvgd_1006_9,"[0.013025937122692507, 7.815970093359237e-14]","[-0.013021352477728145, -7.815970093359221e-14]","[0.0032691152004157603, -3.552713678813523e-15]","[-0.0032668669136740073, 3.552713678813599e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1006_81_LVCableDist_mvgd_0_lvgd_1006_82,"[0.0011824601751492581, 0.0]","[-0.0011823616922435598, 0.0]","[0.0002963374269867203, -0.0]","[-0.00029632776736115637, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_81_LVCableDist_mvgd_0_lvgd_1006_83,"[0.03443690474035651, 1.1368683772159284e-13]","[-0.034422550590861294, -1.1368683772159265e-13]","[0.008665509683436719, 7.105427357597155e-14]","[-0.008658470481001178, -7.105427357597145e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_83_LVCableDist_mvgd_0_lvgd_1006_84,"[0.0011824126764148858, 0.0]","[-0.0011823616920255047, 0.0]","[0.00029633740213176005, -0.0]","[-0.0002963277703969172, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_83_LVCableDist_mvgd_0_lvgd_1006_85,"[0.033240137916504445, 1.2789769243679145e-13]","[-0.033226752752852334, -1.2789769243679125e-13]","[0.008362133074694581, 7.815970093356817e-14]","[-0.008355569058023897, -7.815970093356806e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_85_LVCableDist_mvgd_0_lvgd_1006_86,"[0.001182460345701338, 0.0]","[-0.0011823616920500612, 0.0]","[0.00029633744347681856, -0.0]","[-0.0002963277671037962, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_85_LVCableDist_mvgd_0_lvgd_1006_87,"[0.032044292409507305, 1.1368683772159353e-13]","[-0.032031842798570895, -1.1368683772159332e-13]","[0.008059231606735082, 7.815970093357021e-14]","[-0.00805312638039239, -7.815970093357011e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_87_LVCableDist_mvgd_0_lvgd_1006_88,"[0.0011824127615542982, 0.0]","[-0.0011823616918335477, 0.0]","[0.0002963374181224374, -0.0]","[-0.00029632777026718726, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_87_LVCableDist_mvgd_0_lvgd_1006_89,"[0.030849430039403186, 8.526512829119902e-14]","[-0.03083788242078952, -8.526512829119887e-14]","[0.007756788957250814, 8.526512829117325e-14]","[-0.007751126063388864, -8.526512829117317e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_89_LVCableDist_mvgd_0_lvgd_1006_90,"[0.0011824605047146026, 0.0]","[-0.0011823616918606899, 0.0]","[0.0002963374588446412, -0.0]","[-0.00029632776685634187, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_89_LVCableDist_mvgd_0_lvgd_1006_91,"[0.029655421918727685, 9.947598300639654e-14]","[-0.029644742746058, -9.947598300639638e-14]","[0.007454788595793804, 8.526512829117103e-14]","[-0.007449551583437822, -8.526512829117098e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_91_LVCableDist_mvgd_0_lvgd_1006_92,"[0.001182412840702999, 0.0]","[-0.0011823616916457847, 0.0]","[0.000296337432985319, -0.0]","[-0.0002963277701421913, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_91_LVCableDist_mvgd_0_lvgd_1006_93,"[0.02846232990807127, 9.947598300639638e-14]","[-0.028452485516598076, -9.94759830063962e-14]","[0.00715321414463038, 8.526512829117098e-14]","[-0.007148386504758186, -8.526512829117089e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_93_LVCableDist_mvgd_0_lvgd_1006_94,"[0.0011824606521044178, 0.0]","[-0.0011823616916852495, 0.0]","[0.000296337473083737, -0.0]","[-0.00029632776662160483, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_93_LVCableDist_mvgd_0_lvgd_1006_95,"[0.02727002486749564, 8.526512829119751e-14]","[-0.02726098160542689, -8.526512829119737e-14]","[0.006852049022011533, 7.815970093357419e-14]","[-0.006847614251954216, -7.815970093357413e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_95_LVCableDist_mvgd_0_lvgd_1006_96,"[0.0011824129138281816, 0.0]","[-0.0011823616914765469, 0.0]","[0.00029633744671223375, -0.0]","[-0.00029632777002266345, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_95_LVCableDist_mvgd_0_lvgd_1006_97,"[0.026078568694586718, 8.526512829119737e-14]","[-0.026070292800738585, -8.526512829119723e-14]","[0.00655127679861256, 7.815970093357413e-14]","[-0.006547218342056045, -7.815970093357405e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1006_97_LVCableDist_mvgd_0_lvgd_1006_98,"[0.0011824607877804578, 0.0]","[-0.0011823616915212444, 0.0]","[0.000296337486187407, -0.0]","[-0.00029632776640150095, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1006_97_LVCableDist_mvgd_0_lvgd_1006_99,"[0.024887832016229544, 9.947598300639586e-14]","[-0.024880289741315002, -9.94759830063957e-14]","[0.006250880845327167, 8.526512829117074e-14]","[-0.006247182151791497, -8.526512829117064e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_100_LVCableDist_mvgd_0_lvgd_1007_99,"[0.0012144744220369185, 0.0]","[-0.0012143701418864108, 0.0]","[0.0003043600689181561, -0.0]","[-0.00030434984067396976, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_101_LVCableDist_mvgd_0_lvgd_1007_102,"[0.0012144241015523496, 0.0]","[-0.001214370141726251, 0.0]","[0.00030436003779391214, -0.0]","[-0.00030434984395333743, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_101_LVCableDist_mvgd_0_lvgd_1007_103,"[0.014585062465282822, 5.684341886080937e-14]","[-0.014582477888493092, -5.68434188608093e-14]","[0.003658043685704368, 5.684341886079973e-14]","[-0.003656776222296719, -5.684341886079971e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_101_LVCableDist_mvgd_0_lvgd_1007_99,"[0.01580251944769419, 2.842170943040958e-14]","[-0.015799486563273037, -2.8421709430409504e-14]","[0.003963891042998691, 8.526512829120447e-14]","[-0.003962403731792185, -8.526512829120441e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_103_LVCableDist_mvgd_0_lvgd_1007_104,"[0.0012144745033438183, 0.0]","[-0.001214370141802115, 0.0]","[0.0003043600767838057, -0.0]","[-0.00030434984055642203, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_103_LVCableDist_mvgd_0_lvgd_1007_105,"[0.013368003388878141, 5.68434188608099e-14]","[-0.013365831374187963, -5.684341886080983e-14]","[0.0033524161336234756, 6.394884621840027e-14]","[-0.0033513509885863394, -6.394884621840024e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_105_LVCableDist_mvgd_0_lvgd_1007_106,"[0.0012144241402261401, 0.0]","[-0.00121437014164817, 0.0]","[0.0003043600450603019, -0.0]","[-0.00030434984389890305, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_105_LVCableDist_mvgd_0_lvgd_1007_107,"[0.012151407237701735, 5.684341886080863e-14]","[-0.012149611981656967, -5.684341886080857e-14]","[0.003046990934837418, 4.973799150319912e-14]","[-0.0030461105503376625, -4.973799150319909e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_107_LVCableDist_mvgd_0_lvgd_1007_108,"[0.0012144745717175321, 0.0]","[-0.0012143701417261185, 0.0]","[0.0003043600833975754, -0.0]","[-0.0003043498404563507, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_107_LVCableDist_mvgd_0_lvgd_1007_109,"[0.010935137413855387, 5.684341886080798e-14]","[-0.010933683118934969, -5.6843418860807927e-14]","[0.002741750454641408, 4.263256414559854e-14]","[-0.0027410372757554567, -4.26325641455985e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_109_LVCableDist_mvgd_0_lvgd_1007_110,"[0.001214424172197672, 0.0]","[-0.0012143701415726115, 0.0]","[0.0003043600510648751, -0.0]","[-0.0003043498438492883, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_109_LVCableDist_mvgd_0_lvgd_1007_111,"[0.009719258950562836, 8.526512829120831e-14]","[-0.009718109771337823, -8.526512829120825e-14]","[0.00243667721565518, 2.131628207279449e-14]","[-0.002436113663965664, -2.1316282072794464e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_10_LVCableDist_mvgd_0_lvgd_1007_9,"[0.0012144214670714807, 0.0]","[-0.0012143701456102446, 0.0]","[0.0003043595419896063, -0.0]","[-0.0003043498465767088, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_111_LVCableDist_mvgd_0_lvgd_1007_112,"[0.001214474627123367, 0.0]","[-0.0012143701416659674, 0.0]","[0.0003043600887563413, -0.0]","[-0.00030434984037477496, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_111_LVCableDist_mvgd_0_lvgd_1007_113,"[0.008503635148233407, 8.526512829121003e-14]","[-0.008502755244077577, -8.526512829120994e-14]","[0.0021317535625811628, 4.263256414559608e-14]","[-0.0021313220620259522, -4.2632564145596034e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_113_LVCableDist_mvgd_0_lvgd_1007_114,"[0.0012144241974598189, 0.0]","[-0.0012143701415122357, 0.0]","[0.00030436005580993853, -0.0]","[-0.0003043498438105378, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_113_LVCableDist_mvgd_0_lvgd_1007_115,"[0.007288331050517705, 4.263256414560616e-14]","[-0.007287684542945029, -4.263256414560613e-14]","[0.001826961996883558, 3.5527136787999083e-14]","[-0.0018266449528342606, -3.552713678799905e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_115_LVCableDist_mvgd_0_lvgd_1007_116,"[0.0012144746695246973, 0.0]","[-0.001214370141619309, 0.0]","[0.0003043600928568662, -0.0]","[-0.00030434984031181913, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_115_LVCableDist_mvgd_0_lvgd_1007_117,"[0.0060732098775445765, 4.263256414560494e-14]","[-0.006072760891741553, -4.263256414560491e-14]","[0.0015222848470691195, 2.1316282072798004e-14]","[-0.0015220646666983346, -2.1316282072797995e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_117_LVCableDist_mvgd_0_lvgd_1007_118,"[0.0012144242160131618, 0.0]","[-0.0012143701414832763, 0.0]","[0.000304360059294091, -0.0]","[-0.0003043498437842078, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_117_LVCableDist_mvgd_0_lvgd_1007_119,"[0.00485833667974111, 2.8421709430403872e-14]","[-0.004858049313109165, -2.842170943040386e-14]","[0.0012177045978871758, 2.1316282072799184e-14]","[-0.0012175636747418408, -2.131628207279918e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_119_LVCableDist_mvgd_0_lvgd_1007_120,"[0.0012144746988957467, 0.0]","[-0.0012143701415866209, 0.0]","[0.0003043600956969096, -0.0]","[-0.0003043498402678179, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_119_LVCableDist_mvgd_0_lvgd_1007_121,"[0.0036435746183763836, 1.4210854715201633e-14]","[-0.0036434129708593963, -1.421085471520163e-14]","[0.0009132035659497241, 7.10542735759933e-15]","[-0.0009131242948235835, -7.10542735759933e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1007_11_LVCableDist_mvgd_0_lvgd_1007_12,"[0.0012144695408697922, 0.0]","[-0.0012143701455616166, 0.0]","[0.0003043595946687912, -0.0]","[-0.000304349845550881, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_11_LVCableDist_mvgd_0_lvgd_1007_13,"[0.07035009812964396, 3.610351343665302e-26]","[-0.07029270680883055, -3.552457891564242e-26]","[0.017900983056557067, 2.4158453015843255e-13]","[-0.017872838642610182, -2.415845301584322e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_11_LVCableDist_mvgd_0_lvgd_1007_9,"[0.07162395576373497, 2.8421709430441664e-14]","[-0.07156456767247552, -2.8421709430440996e-14]","[0.018234466267430468, 2.486899575160295e-13]","[-0.01820534264733893, -2.4868995751602926e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_121_LVCableDist_mvgd_0_lvgd_1007_122,"[0.0012144242278053767, 0.0]","[-0.001214370141444909, 0.0]","[0.0003043600615090934, -0.0]","[-0.00030434984376423137, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_121_LVCableDist_mvgd_0_lvgd_1007_123,"[0.0024289887470877714, 5.939269578722369e-28]","[-0.0024289169009388645, -5.939866739231066e-28]","[0.0006087642236655269, 7.105427357600518e-15]","[-0.0006087289906768681, -7.1054273576005175e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1007_123_LVCableDist_mvgd_0_lvgd_1007_124,"[0.0012144747152123176, 0.0]","[-0.0012143701415619065, 0.0]","[0.00030436009727560786, -0.0]","[-0.0003043498402436928, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_123_LVCableDist_mvgd_0_lvgd_1007_125,"[0.0012144421899316629, 1.4210854715201035e-14]","[-0.0012144242288164024, -1.4210854715201033e-14]","[0.00030436888019520276, -1.1879733478462132e-27]","[-0.00030436007215496835, 1.1891078832821664e-27]" +Branch_LVCableDist_mvgd_0_lvgd_1007_125_LVCableDist_mvgd_0_lvgd_1007_126,"[0.001214424232868269, 0.0]","[-0.0012143701414362603, 0.0]","[0.0003043600624611398, -0.0]","[-0.00030434984375818575, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_127_LVCableDist_mvgd_0_lvgd_1007_128,"[0.0012144212528595972, 0.0]","[-0.001214370145795336, 0.0]","[0.00030435950161262793, -0.0]","[-0.0003043498467026146, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_127_LVCableDist_mvgd_0_lvgd_1007_129,"[0.08371124116462145, 1.1084466677856131e-12]","[-0.08366278703306822, -1.1084466677856014e-12]","[0.02125003733696412, -8.242295734818995e-13]","[-0.021226275675504808, 8.242295734819052e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_127_LVStation_mvgd_0_lvgd_1007,"[0.08497553152404601, 1.1368683772160246e-12]","[-0.08492566241878736, -1.1368683772160123e-12]","[0.02157885239294424, -8.526512829123021e-13]","[-0.021554396835524275, 8.526512829123081e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_129_LVCableDist_mvgd_0_lvgd_1007_130,"[0.0012144690734451854, 0.0]","[-0.0012143701457741297, 0.0]","[0.0003043595490903972, -0.0]","[-0.0003043498458403404, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_129_LVCableDist_mvgd_0_lvgd_1007_131,"[0.08244831795845511, 1.1368683772160052e-12]","[-0.08240125933530895, -1.136868377215993e-12]","[0.020921916128500966, -8.242295734819103e-13]","[-0.020898838817318292, 8.242295734819162e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_131_LVCableDist_mvgd_0_lvgd_1007_132,"[0.0012144213770872126, 0.0]","[-0.0012143701456924494, 0.0]","[0.0003043595250327399, -0.0]","[-0.0003043498466347837, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_131_LVCableDist_mvgd_0_lvgd_1007_133,"[0.08118683795701005, 1.0516032489247901e-12]","[-0.08114115522520368, -1.0516032489247796e-12]","[0.020594479295098386, -7.815970093362949e-13]","[-0.020572076714081587, 7.815970093363e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_133_LVCableDist_mvgd_0_lvgd_1007_134,"[0.0012144693106565575, 0.0]","[-0.0012143701456846562, 0.0]","[0.0003043595722363421, -0.0]","[-0.0003043498457108012, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_133_LVCableDist_mvgd_0_lvgd_1007_135,"[0.07992668591350396, 9.947598300639726e-13]","[-0.07988235950989432, -9.947598300639623e-13]","[0.020267717143680343, -7.815970093362891e-13]","[-0.02024597969916286, 7.815970093362938e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_135_LVCableDist_mvgd_0_lvgd_1007_136,"[0.0012144214981167766, 0.0]","[-0.0012143701455967079, 0.0]","[0.00030435954784821805, -0.0]","[-0.00030434984656782965, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_135_LVCableDist_mvgd_0_lvgd_1007_137,"[0.07866793801075717, 9.663381206335705e-13]","[-0.0786249482242815, -9.663381206335616e-13]","[0.01994162015390156, -7.247535904754812e-13]","[-0.019920538179677753, 7.247535904754859e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_137_LVCableDist_mvgd_0_lvgd_1007_138,"[0.0012144695416119206, 0.0]","[-0.00121437014557586, 0.0]","[0.0003043595947690475, -0.0]","[-0.00030434984557974325, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_137_LVCableDist_mvgd_0_lvgd_1007_139,"[0.07741047868168614, 1.0231815394943651e-12]","[-0.07736880585374256, -1.0231815394943554e-12]","[0.019616178586419675, -7.389644451906993e-13]","[-0.019595742442010396, 7.389644451907041e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_139_LVCableDist_mvgd_0_lvgd_1007_140,"[0.0012144216158911157, 0.0]","[-0.0012143701454916916, 0.0]","[0.00030435957004860975, -0.0]","[-0.00030434984649899924, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_139_LVCableDist_mvgd_0_lvgd_1007_141,"[0.07615438423690053, 1.0231815394943676e-12]","[-0.07611400856487129, -1.0231815394943587e-12]","[0.019291382874306734, -6.821210263298977e-13]","[-0.01927158284860826, 6.821210263299024e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_13_LVCableDist_mvgd_0_lvgd_1007_14,"[0.0012144216456675338, 0.0]","[-0.0012143701454432768, 0.0]","[0.000304359575647376, -0.0]","[-0.0003043498464633961, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_13_LVCableDist_mvgd_0_lvgd_1007_15,"[0.06907828516122605, 5.684341886084206e-14]","[-0.06902285807297642, -5.684341886084148e-14]","[0.0175684790717078, 2.3447910280082286e-13]","[-0.0175412979074924, -2.3447910280082266e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_141_LVCableDist_mvgd_0_lvgd_1007_142,"[0.0012144697662643024, 0.0]","[-0.0012143701454787154, 0.0]","[0.00030435961668003937, -0.0]","[-0.0003043498454463382, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_141_LVCableDist_mvgd_0_lvgd_1007_143,"[0.07489953879776881, 9.947598300639555e-13]","[-0.07486044053001958, -9.947598300639464e-13]","[0.018967223233108163, -6.82121026329896e-13]","[-0.01894804964001875, 6.821210263299003e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_143_LVCableDist_mvgd_0_lvgd_1007_144,"[0.0012144217303815983, 0.0]","[-0.001214370145388634, 0.0]","[0.0003043595916275159, -0.0]","[-0.00030434984642942415, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_143_LVCableDist_mvgd_0_lvgd_1007_145,"[0.07364601879878269, 9.94759830063956e-13]","[-0.07360817804362137, -9.947598300639476e-13]","[0.018643690050462052, -6.39488462184296e-13]","[-0.018625133135196318, 6.394884621843001e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_145_LVCableDist_mvgd_0_lvgd_1007_146,"[0.001214469984527876, 0.0]","[-0.0012143701453836003, 0.0]","[0.000304359637962907, -0.0]","[-0.00030434984531164933, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_145_LVCableDist_mvgd_0_lvgd_1007_147,"[0.07239370805843384, 9.947598300639545e-13]","[-0.07235710497366057, -9.947598300639458e-13]","[0.01832077349806509, -6.110667527538972e-13]","[-0.018302823530108422, 6.110667527539013e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_147_LVCableDist_mvgd_0_lvgd_1007_148,"[0.001214421841541631, 0.0]","[-0.0012143701452798895, 0.0]","[0.00030435961257573946, -0.0]","[-0.0003043498463572655, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_147_LVCableDist_mvgd_0_lvgd_1007_149,"[0.07114268313136429, 9.947598300639563e-13]","[-0.07110729773873198, -9.947598300639482e-13]","[0.017998463919287666, -5.684341886082972e-13]","[-0.017981111101408556, 5.684341886083013e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_149_LVCableDist_mvgd_0_lvgd_1007_150,"[0.0012144701963194633, 0.0]","[-0.001214370145281741, 0.0]","[0.000304359658610328, -0.0]","[-0.00030434984517565286, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_149_LVCableDist_mvgd_0_lvgd_1007_151,"[0.06989282754192622, 9.947598300639482e-13]","[-0.06985863991117582, -9.947598300639403e-13]","[0.017676751443248123, -5.684341886083013e-13]","[-0.017659986001748177, 5.684341886083053e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_151_LVCableDist_mvgd_0_lvgd_1007_152,"[0.0012144219493570596, 0.0]","[-0.0012143701451893022, 0.0]","[0.0003043596328934528, -0.0]","[-0.0003043498462898738, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_151_LVCableDist_mvgd_0_lvgd_1007_153,"[0.06864421796131327, 9.379164112031353e-13]","[-0.06861120803020024, -9.379164112031279e-13]","[0.017355626370328905, -5.684341886082907e-13]","[-0.017339438466784683, 5.684341886082941e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_153_LVCableDist_mvgd_0_lvgd_1007_154,"[0.0012144704015654368, 0.0]","[-0.0012143701451720515, 0.0]","[0.0003043596786161286, -0.0]","[-0.00030434984503928966, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_153_LVCableDist_mvgd_0_lvgd_1007_155,"[0.06739673762819319, 9.379164112031279e-13]","[-0.06736488538094425, -9.379164112031206e-13]","[0.017035078788207505, -5.684341886082941e-13]","[-0.017019458606984856, 5.684341886082977e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_155_LVCableDist_mvgd_0_lvgd_1007_156,"[0.0012144220537507594, 0.0]","[-0.0012143701450767757, 0.0]","[0.0003043596525653604, -0.0]","[-0.0003043498462189487, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_155_LVCableDist_mvgd_0_lvgd_1007_157,"[0.06615046332683856, 9.094947017727261e-13]","[-0.06611974861980639, -9.094947017727191e-13]","[0.01671509895556017, -5.400124791778879e-13]","[-0.016700036618316164, 5.400124791778912e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_157_LVCableDist_mvgd_0_lvgd_1007_158,"[0.0012144706002135792, 0.0]","[-0.0012143701450729398, 0.0]","[0.00030435969797305634, -0.0]","[-0.00030434984490223485, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_157_LVCableDist_mvgd_0_lvgd_1007_159,"[0.06490527801932505, 8.81072992342317e-13]","[-0.06487568075380432, -8.810729923423105e-13]","[0.016395676919994415, -5.400124791778833e-13]","[-0.016381162570425427, 5.400124791778867e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_159_LVCableDist_mvgd_0_lvgd_1007_160,"[0.001214422154712516, 0.0]","[-0.0012143701449681117, 0.0]","[0.00030435967158768236, -0.0]","[-0.0003043498461475147, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_159_LVCableDist_mvgd_0_lvgd_1007_161,"[0.06366125859880895, 8.810729923423145e-13]","[-0.06363275855238072, -8.810729923423079e-13]","[0.016076802899571994, -5.258016244626857e-13]","[-0.016062826620705913, 5.258016244626889e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_15_LVCableDist_mvgd_0_lvgd_1007_16,"[0.0012144698812911153, 0.0]","[-0.001214370145390941, 0.0]","[0.000304359627854808, -0.0]","[-0.00030434984533017444, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_15_LVCableDist_mvgd_0_lvgd_1007_17,"[0.06780838818983712, 7.105427357604232e-14]","[-0.06775489282821957, -7.105427357604171e-14]","[0.017236938283177475, 2.2737367544321964e-13]","[-0.017210704427948777, -2.2737367544321936e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_161_LVCableDist_mvgd_0_lvgd_1007_162,"[0.0012144707921869465, 0.0]","[-0.0012143701449761192, 0.0]","[0.0003043597166759582, -0.0]","[-0.00030434984476606925, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_161_LVCableDist_mvgd_0_lvgd_1007_163,"[0.06241828776007204, 8.810729923423038e-13]","[-0.062390864753717766, -8.810729923422972e-13]","[0.01575846690329696, -5.400124791778898e-13]","[-0.015745018799444944, 5.40012479177893e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_163_LVCableDist_mvgd_0_lvgd_1007_164,"[0.001214422252207756, 0.0]","[-0.001214370144863725, 0.0]","[0.0003043596899550902, -0.0]","[-0.0003043498460768529, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_163_LVCableDist_mvgd_0_lvgd_1007_165,"[0.061176442501441795, 8.242295734814978e-13]","[-0.061150076236637034, -8.24229573481492e-13]","[0.015440659109887058, -5.258016244626755e-13]","[-0.01542772922675524, 5.258016244626784e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_165_LVCableDist_mvgd_0_lvgd_1007_166,"[0.0012144709774081963, 0.0]","[-0.0012143701448708844, 0.0]","[0.0003043597347166438, -0.0]","[-0.00030434984462913886, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_165_LVCableDist_mvgd_0_lvgd_1007_167,"[0.05993560525926203, 8.242295734814962e-13]","[-0.05991027547932953, -8.242295734814903e-13]","[0.015123369490846705, -5.115907697474775e-13]","[-0.015110947894662819, 5.115907697474803e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_167_LVCableDist_mvgd_0_lvgd_1007_168,"[0.0012144223462039212, 0.0]","[-0.001214370144764984, 0.0]","[0.00030435970765885765, -0.0]","[-0.00030434984600464626, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_167_LVCableDist_mvgd_0_lvgd_1007_169,"[0.05869585313320919, 8.242295734814947e-13]","[-0.058671539466219454, -8.24229573481489e-13]","[0.014806588187044637, -4.973799150322796e-13]","[-0.014794664887517338, 4.973799150322823e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_169_LVCableDist_mvgd_0_lvgd_1007_170,"[0.0012144711558212341, 0.0]","[-0.0012143701447656983, 0.0]","[0.00030435975209110205, -0.0]","[-0.00030434984449376445, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_169_LVCableDist_mvgd_0_lvgd_1007_171,"[0.057457068310665646, 8.242295734814935e-13]","[-0.05743375042497167, -8.242295734814879e-13]","[0.014490305133806267, -4.831690603170815e-13]","[-0.014478870160398512, 4.831690603170843e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_171_LVCableDist_mvgd_0_lvgd_1007_172,"[0.001214422436660092, 0.0]","[-0.001214370144663811, 0.0]","[0.0003043597246990666, -0.0]","[-0.00030434984593718086, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_171_LVCableDist_mvgd_0_lvgd_1007_173,"[0.0562193279885655, 8.526512829118984e-13]","[-0.056196985441566226, -8.526512829118926e-13]","[0.014174510435339887, -4.547473508866919e-13]","[-0.014163553763103335, 4.547473508866946e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_173_LVCableDist_mvgd_0_lvgd_1007_174,"[0.0012144713273752558, 0.0]","[-0.0012143701446721885, 0.0]","[0.0003043597687930752, -0.0]","[-0.00030434984435981187, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_173_LVCableDist_mvgd_0_lvgd_1007_175,"[0.05498251411465507, 8.242295734814959e-13]","[-0.05496112650245632, -8.242295734814905e-13]","[0.013859193992231664, -4.4053649617148486e-13]","[-0.013848705615199637, 4.4053649617148754e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_175_LVCableDist_mvgd_0_lvgd_1007_176,"[0.00121442252354683, 0.0]","[-0.0012143701445624959, 0.0]","[0.00030435974106163006, -0.0]","[-0.000304349845866364, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_175_LVCableDist_mvgd_0_lvgd_1007_177,"[0.05374670397931397, 7.958078640510986e-13]","[-0.053726250791408574, -7.958078640510937e-13]","[0.013544345873411124, -4.1211478674107707e-13]","[-0.013534315733334466, 4.121147867410796e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_177_LVCableDist_mvgd_0_lvgd_1007_178,"[0.001214471491987774, 0.0]","[-0.0012143701445681287, 0.0]","[0.0003043597848180355, -0.0]","[-0.00030434984422866396, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_177_LVCableDist_mvgd_0_lvgd_1007_179,"[0.05251177929998076, 7.673861546206879e-13]","[-0.05249224006298233, -7.67386154620683e-13]","[0.013229955945990267, -4.263256414562707e-13]","[-0.01322037400282367, 4.2632564145627297e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_179_LVCableDist_mvgd_0_lvgd_1007_180,"[0.001214422606827564, 0.0]","[-0.0012143701444550584, 0.0]","[0.0003043597567465766, -0.0]","[-0.00030434984579800323, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_179_LVCableDist_mvgd_0_lvgd_1007_181,"[0.051277817456700625, 7.389644451902868e-13]","[-0.051259171594992214, -7.389644451902826e-13]","[0.01291601424492739, -4.1211478674106293e-13]","[-0.0129068704084922, 4.12114786741065e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_17_LVCableDist_mvgd_0_lvgd_1007_18,"[0.0012144218190151392, 0.0]","[-0.0012143701452672804, 0.0]","[0.00030435960830979504, -0.0]","[-0.00030434984634453946, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_17_LVCableDist_mvgd_0_lvgd_1007_19,"[0.06654047100741262, 7.105427357603968e-14]","[-0.06648887460984658, -7.105427357603917e-14]","[0.016906344824052823, 2.131628207280175e-13]","[-0.016881042211206756, -2.1316282072801726e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_181_LVCableDist_mvgd_0_lvgd_1007_182,"[0.001214471649622712, 0.0]","[-0.0012143701444754739, 0.0]","[0.0003043598001587067, -0.0]","[-0.0003043498440987368, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_181_LVCableDist_mvgd_0_lvgd_1007_183,"[0.05004469994618221, 7.673861546206931e-13]","[-0.05002692691967133, -7.673861546206886e-13]","[0.012602510605364924, -3.8369307731067377e-13]","[-0.012593794802903478, 3.836930773106761e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_183_LVCableDist_mvgd_0_lvgd_1007_184,"[0.001214422686497297, 0.0]","[-0.0012143701443659291, 0.0]","[0.00030435977174853154, -0.0]","[-0.00030434984573228307, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_183_LVCableDist_mvgd_0_lvgd_1007_185,"[0.04881250423391005, 7.958078640510942e-13]","[-0.04879558340469612, -7.958078640510896e-13]","[0.012289435029620458, -3.6948222259548545e-13]","[-0.01228113714041053, 3.694822225954878e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_185_LVCableDist_mvgd_0_lvgd_1007_186,"[0.0012144718002092315, 0.0]","[-0.001214370144379154, 0.0]","[0.00030435981481148855, -0.0]","[-0.00030434984397189984, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_185_LVCableDist_mvgd_0_lvgd_1007_187,"[0.047581111605428834, 7.105427357598776e-13]","[-0.047565022369529725, -7.105427357598733e-13]","[0.011976777322181933, -3.979039320258586e-13]","[-0.011968887242134709, 3.9790393202586063e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_187_LVCableDist_mvgd_0_lvgd_1007_188,"[0.0012144227625036294, 0.0]","[-0.0012143701442709543, 0.0]","[0.0003043597860583115, -0.0]","[-0.00030434984566535646, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_187_LVCableDist_mvgd_0_lvgd_1007_189,"[0.04635059960794639, 7.389644451902789e-13]","[-0.046335321268032435, -7.389644451902748e-13]","[0.011664527454193578, -3.836930773106704e-13]","[-0.011657035033443102, 3.8369307731067246e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_189_LVCableDist_mvgd_0_lvgd_1007_190,"[0.001214471943701354, 0.0]","[-0.0012143701442866401, 0.0]","[0.00030435982877083877, -0.0]","[-0.0003043498438478534, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_189_LVCableDist_mvgd_0_lvgd_1007_191,"[0.045120849325374905, 7.105427357598795e-13]","[-0.04510636121641965, -7.105427357598754e-13]","[0.011352675200764644, -3.6948222259546197e-13]","[-0.01134557030528628, 3.69482222595464e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_191_LVCableDist_mvgd_0_lvgd_1007_192,"[0.0012144228348264972, 0.0]","[-0.0012143701441771051, 0.0]","[0.0003043597996774477, -0.0]","[-0.00030434984560386165, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_191_LVCableDist_mvgd_0_lvgd_1007_193,"[0.043891938382665044, 6.821210263294699e-13]","[-0.04387821975079172, -6.821210263294663e-13]","[0.011041210503331542, -3.836930773106539e-13]","[-0.011034482955528923, 3.836930773106557e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_193_LVCableDist_mvgd_0_lvgd_1007_194,"[0.001214472080046916, 0.0]","[-0.0012143701441968623, 0.0]","[0.00030435984203199906, -0.0]","[-0.0003043498437268508, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_193_LVCableDist_mvgd_0_lvgd_1007_195,"[0.04266374767193124, 6.53699316899066e-13]","[-0.04265077779394206, -6.536993168990623e-13]","[0.010730123109148044, -3.8369307731064524e-13]","[-0.010723762746469603, 3.8369307731064696e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_195_LVCableDist_mvgd_0_lvgd_1007_196,"[0.0012144229034383666, 0.0]","[-0.001214370144082654, 0.0]","[0.0003043598125952754, -0.0]","[-0.0003043498455420092, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_195_LVCableDist_mvgd_0_lvgd_1007_197,"[0.041436354891665486, 6.536993168990623e-13]","[-0.041424112960044744, -6.536993168990587e-13]","[0.010419402931198418, -3.8369307731064696e-13]","[-0.010413399549743513, 3.836930773106486e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_197_LVCableDist_mvgd_0_lvgd_1007_198,"[0.001214472209197116, 0.0]","[-0.0012143701441097146, 0.0]","[0.00030435985459237514, -0.0]","[-0.00030434984361107383, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_197_LVCableDist_mvgd_0_lvgd_1007_199,"[0.04020964075224151, 5.968558980382691e-13]","[-0.0401981059885196, -5.968558980382661e-13]","[0.01010903969032582, -3.5527136788022705e-13]","[-0.010103383100437877, 3.552713678802285e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_199_LVCableDist_mvgd_0_lvgd_1007_200,"[0.0012144229683220247, 0.0]","[-0.001214370143994942, 0.0]","[0.00030435982480931176, -0.0]","[-0.00030434984548195505, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_199_LVCableDist_mvgd_0_lvgd_1007_201,"[0.03898368302150088, 5.968558980382715e-13]","[-0.038972834567456045, -5.968558980382687e-13]","[0.009799023272574644, -3.410605131650285e-13]","[-0.009793703245487024, 3.4106051316502994e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_19_LVCableDist_mvgd_0_lvgd_1007_20,"[0.001214470211483507, 0.0]","[-0.001214370145215641, 0.0]","[0.00030435966002918824, -0.0]","[-0.0003043498451006753, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_19_LVCableDist_mvgd_0_lvgd_1007_21,"[0.06527440439666632, 7.105427357604017e-14]","[-0.06522467423139461, -7.105427357603963e-14]","[0.016576682554295577, 2.2026824808561818e-13]","[-0.01655229513234366, -2.2026824808561788e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_1_LVCableDist_mvgd_0_lvgd_1007_2,"[0.1414345312575097, 0.0]","[-0.13999999806524424, 0.0]","[0.0354548862402733, -0.0]","[-0.0350873069768803, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_1_LVStation_mvgd_0_lvgd_1007,"[0.14541934436588227, 0.0]","[-0.14143453000034256, 0.0]","[0.03894759406159548, -0.0]","[-0.03545488693485658, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_201_LVCableDist_mvgd_0_lvgd_1007_202,"[0.0012144723311087581, 0.0]","[-0.0012143701440282568, 0.0]","[0.0003043598664461979, -0.0]","[-0.00030434984349929036, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_201_LVCableDist_mvgd_0_lvgd_1007_203,"[0.037758362237936695, 6.252776074686576e-13]","[-0.03774817926275242, -6.252776074686544e-13]","[0.009489343373839783, -3.6948222259544087e-13]","[-0.009484349694225245, 3.694822225954425e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_203_LVCableDist_mvgd_0_lvgd_1007_204,"[0.0012144230294479591, 0.0]","[-0.001214370143907741, 0.0]","[0.00030435983631589694, -0.0]","[-0.0003043498454244381, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_203_LVCableDist_mvgd_0_lvgd_1007_205,"[0.036533756234820025, 5.684341886078601e-13]","[-0.03652421783252495, -5.684341886078573e-13]","[0.009179989854464917, -3.5527136788022034e-13]","[-0.009175312270140673, 3.5527136788022165e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_205_LVCableDist_mvgd_0_lvgd_1007_206,"[0.001214472445728066, 0.0]","[-0.0012143701439424944, 0.0]","[0.0003043598775896244, -0.0]","[-0.00030434984339195175, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_205_LVCableDist_mvgd_0_lvgd_1007_207,"[0.0353097453885368, 5.968558980382628e-13]","[-0.0353008306789164, -5.9685589803826e-13]","[0.0088709523869124, -3.410605131650329e-13]","[-0.00886658065832667, 3.410605131650344e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_207_LVCableDist_mvgd_0_lvgd_1007_208,"[0.0012144230868048524, 0.0]","[-0.0012143701438317267, 0.0]","[0.00030435984711212906, -0.0]","[-0.0003043498453707112, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_207_LVCableDist_mvgd_0_lvgd_1007_209,"[0.03408640759378991, 5.684341886078545e-13]","[-0.03407809562610197, -5.684341886078517e-13]","[0.008562220807427575, -3.5527136788022296e-13]","[-0.008558144660442156, 3.552713678802243e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_209_LVCableDist_mvgd_0_lvgd_1007_210,"[0.0012144725530320874, 0.0]","[-0.0012143701438707406, 0.0]","[0.0003043598880195482, -0.0]","[-0.0003043498432899993, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_209_LVCableDist_mvgd_0_lvgd_1007_211,"[0.032863623074985485, 6.252776074686626e-13]","[-0.03285589292258899, -6.252776074686596e-13]","[0.008253784766387719, -3.2684965844984743e-13]","[-0.008249993938683533, 3.2684965844984894e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_211_LVCableDist_mvgd_0_lvgd_1007_212,"[0.0012144231403568664, 0.0]","[-0.0012143701437517477, 0.0]","[0.00030435985719426726, -0.0]","[-0.0003043498453209415, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_211_LVCableDist_mvgd_0_lvgd_1007_213,"[0.03164146978402132, 5.400124791774664e-13]","[-0.03163430045440287, -5.400124791774639e-13]","[0.007945634077337255, -3.126388037346146e-13]","[-0.007942118274291714, 3.1263880373461574e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_213_LVCableDist_mvgd_0_lvgd_1007_214,"[0.0012144726529664603, 0.0]","[-0.0012143701437973583, 0.0]","[0.0003043598977317778, -0.0]","[-0.00030434984319303946, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_213_LVCableDist_mvgd_0_lvgd_1007_215,"[0.030419827803398275, 5.115907697470586e-13]","[-0.030413198326483336, -5.115907697470564e-13]","[0.007637758370169419, -3.268496584498039e-13]","[-0.0076345073081638595, 3.2684965844980507e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_215_LVCableDist_mvgd_0_lvgd_1007_216,"[0.0012144231900978908, 0.0]","[-0.0012143701436810542, 0.0]","[0.0003043598665541176, -0.0]","[-0.0003043498452705927, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_215_LVCableDist_mvgd_0_lvgd_1007_217,"[0.029198775138279936, 4.5474735088626323e-13]","[-0.02919266448280313, -4.547473508862613e-13]","[0.007330147437128738, -3.1263880373458186e-13]","[-0.007327150802536805, 3.126388037345828e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_217_LVCableDist_mvgd_0_lvgd_1007_218,"[0.001214472745500859, 0.0]","[-0.0012143701437281648, 0.0]","[0.0003043599067241308, -0.0]","[-0.00030434984310243523, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_217_LVCableDist_mvgd_0_lvgd_1007_219,"[0.027978191739415768, 4.5474735088627903e-13]","[-0.02797257889488197, -4.5474735088627727e-13]","[0.0070227908890241044, -2.700062395889836e-13]","[-0.007020038378405082, 2.700062395889845e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_219_LVCableDist_mvgd_0_lvgd_1007_220,"[0.0012144232360098521, 0.0]","[-0.001214370143619592, 0.0]","[0.00030435987519419926, -0.0]","[-0.0003043498452255879, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_219_LVCableDist_mvgd_0_lvgd_1007_221,"[0.0267581556609515, 4.5474735088627727e-13]","[-0.026753019560380814, -4.5474735088627565e-13]","[0.006715678498443862, -2.700062395889845e-13]","[-0.006713159780657174, 2.700062395889853e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_21_LVCableDist_mvgd_0_lvgd_1007_22,"[0.001214421987031459, 0.0]","[-0.0012143701450962987, 0.0]","[0.00030435963996247345, -0.0]","[-0.00030434984622405153, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_21_LVCableDist_mvgd_0_lvgd_1007_23,"[0.06401025224277043, 7.105427357603766e-14]","[-0.06396235532908719, -7.105427357603717e-14]","[0.01624793549646061, 2.060573933704161e-13]","[-0.016224447091831247, -2.0605739337041588e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_221_LVCableDist_mvgd_0_lvgd_1007_222,"[0.0012144728306011665, 0.0]","[-0.0012143701436625794, 0.0]","[0.00030435991499242246, -0.0]","[-0.000304349843017291, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_221_LVCableDist_mvgd_0_lvgd_1007_223,"[0.025538546732004258, 3.9790393202548894e-13]","[-0.025533866327512658, -3.979039320254876e-13]","[0.00640879985853147, -2.41584530158562e-13]","[-0.006406504611801066, 2.4158453015856265e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_223_LVCableDist_mvgd_0_lvgd_1007_224,"[0.0012144232780558083, 0.0]","[-0.0012143701435470835, 0.0]","[0.000304359883108593, -0.0]","[-0.0003043498451831563, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_223_LVCableDist_mvgd_0_lvgd_1007_225,"[0.02431944305162482, 4.2632564145589896e-13]","[-0.02431519724357224, -4.2632564145589754e-13]","[0.0061021447236066055, -2.131628207281754e-13]","[-0.006100062600775535, 2.131628207281761e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_225_LVCableDist_mvgd_0_lvgd_1007_226,"[0.0012144729082448366, 0.0]","[-0.0012143701436089557, 0.0]","[0.0003043599225355947, -0.0]","[-0.00030434984293957966, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_225_LVCableDist_mvgd_0_lvgd_1007_227,"[0.0231007243376598, 4.5474735088630887e-13]","[-0.023096892043822217, -4.5474735088630746e-13]","[0.005795702670763776, -1.84741111297789e-13]","[-0.005793823333215828, 1.8474111129778973e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_227_LVCableDist_mvgd_0_lvgd_1007_228,"[0.001214423316257736, 0.0]","[-0.0012143701435007972, 0.0]","[0.00030435989029560745, -0.0]","[-0.0003043498451444952, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_227_LVCableDist_mvgd_0_lvgd_1007_229,"[0.021882468729878007, 3.6948222259511603e-13]","[-0.0218790288210249, -3.6948222259511497e-13]","[0.005489463437588043, -1.7053025658255357e-13]","[-0.0054877765236552535, 1.7053025658255407e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_229_LVCableDist_mvgd_0_lvgd_1007_230,"[0.0012144729783871032, 0.0]","[-0.0012143701435507678, 0.0]","[0.00030435992935016744, -0.0]","[-0.0003043498428685909, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_229_LVCableDist_mvgd_0_lvgd_1007_231,"[0.020664555845065453, 3.4106051316471586e-13]","[-0.020661487207697688, -3.4106051316471495e-13]","[0.00518341658655854, -1.705302565825418e-13]","[-0.005181911742287538, 1.7053025658254223e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_231_LVCableDist_mvgd_0_lvgd_1007_232,"[0.001214423350568838, 0.0]","[-0.0012143701434478489, 0.0]","[0.0003043598967520616, -0.0]","[-0.0003043498451090521, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_231_LVCableDist_mvgd_0_lvgd_1007_233,"[0.01944706385956068, 2.557953848735177e-13]","[-0.019444345337941073, -2.557953848735171e-13]","[0.004877551839953741, -1.7053025658250528e-13]","[-0.0048762186906778325, 1.7053025658250558e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_233_LVCableDist_mvgd_0_lvgd_1007_234,"[0.0012144730410179147, 0.0]","[-0.0012143701435035172, 0.0]","[0.00030435993543306204, -0.0]","[-0.00030434984280375244, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_233_LVCableDist_mvgd_0_lvgd_1007_235,"[0.01822987229944446, 3.4106051316470804e-13]","[-0.018227482751878094, -3.4106051316470723e-13]","[0.004571858747228649, -1.847411112977422e-13]","[-0.004570686925167397, 1.8474111129774265e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_235_LVCableDist_mvgd_0_lvgd_1007_236,"[0.0012144233809927177, 0.0]","[-0.0012143701434043576, 0.0]","[0.000304359902476519, -0.0]","[-0.00030434984507775477, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_235_LVCableDist_mvgd_0_lvgd_1007_237,"[0.01701305937338116, 2.2737367544311743e-13]","[-0.017010977620720583, -2.273736754431169e-13]","[0.004266327016855646, -1.7053025658249344e-13]","[-0.004265306135862075, 1.7053025658249364e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_237_LVCableDist_mvgd_0_lvgd_1007_238,"[0.001214473096109195, 0.0]","[-0.0012143701434619751, 0.0]","[0.00030435994078381866, -0.0]","[-0.0003043498427468455, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_237_LVCableDist_mvgd_0_lvgd_1007_239,"[0.015796504527266497, 2.2737367544312937e-13]","[-0.01579470940271341, -2.27373675443129e-13]","[0.0039609461868222685, -1.4210854715209466e-13]","[-0.003960065866805369, 1.4210854715209493e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_239_LVCableDist_mvgd_0_lvgd_1007_240,"[0.0012144234075010636, 0.0]","[-0.0012143701433531256, 0.0]","[0.00030435990746521325, -0.0]","[-0.0003043498450489364, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_239_LVCableDist_mvgd_0_lvgd_1007_241,"[0.014580285997744922, 1.4210854715193214e-13]","[-0.014578756301849152, -1.4210854715193186e-13]","[0.003655705953337944, -1.4210854715205735e-13]","[-0.0036549557981943918, 1.4210854715205747e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_23_LVCableDist_mvgd_0_lvgd_1007_24,"[0.0012144705312683627, 0.0]","[-0.001214370145042262, 0.0]","[0.0003043596911763608, -0.0]","[-0.00030434984486497267, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_23_LVCableDist_mvgd_0_lvgd_1007_25,"[0.0627478847963724, 5.684341886083638e-14]","[-0.06270178818326691, -5.684341886083587e-14]","[0.015920087403262305, 2.131628207280187e-13]","[-0.015897481856946193, -2.1316282072801844e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_241_LVCableDist_mvgd_0_lvgd_1007_242,"[0.001214473143638837, 0.0]","[-0.0012143701434241564, 0.0]","[0.0003043599454005981, -0.0]","[-0.00030434984269800446, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_241_LVCableDist_mvgd_0_lvgd_1007_243,"[0.013364283160895102, 1.4210854715193186e-13]","[-0.013362997704859061, -1.4210854715193158e-13]","[0.0033505958443198914, -1.4210854715205747e-13]","[-0.003349965463170336, 1.421085471520576e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_243_LVCableDist_mvgd_0_lvgd_1007_244,"[0.0012144234301101006, 0.0]","[-0.0012143701433200732, 0.0]","[0.0003043599117194755, -0.0]","[-0.00030434984502575996, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_243_LVCableDist_mvgd_0_lvgd_1007_245,"[0.012148574277307778, 1.7053025658234311e-13]","[-0.012147511844495813, -1.7053025658234286e-13]","[0.0030456055452683923, -1.136868377216713e-13]","[-0.003045084533581835, 1.1368683772167141e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_245_LVCableDist_mvgd_0_lvgd_1007_246,"[0.0012144731835917928, 0.0]","[-0.0012143701433923932, 0.0]","[0.0003043599492801159, -0.0]","[-0.0003043498426556496, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_245_LVCableDist_mvgd_0_lvgd_1007_247,"[0.01093303866365021, 1.7053025658234917e-13]","[-0.010932178046379686, -1.7053025658234897e-13]","[0.0027407245756389995, -9.947598300647195e-14]","[-0.002740302533274961, 9.947598300647207e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_247_LVCableDist_mvgd_0_lvgd_1007_248,"[0.0012144234487995466, 0.0]","[-0.001214370143293195, 0.0]","[0.0003043599152367564, -0.0]","[-0.0003043498450072395, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_247_LVCableDist_mvgd_0_lvgd_1007_249,"[0.009717754600255103, 1.1368683772155754e-13]","[-0.009717074567830396, -1.1368683772155741e-13]","[0.0024359426117210696, -8.526512829124731e-14]","[-0.002435609127253612, 8.526512829124736e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_249_LVCableDist_mvgd_0_lvgd_1007_250,"[0.0012144732159553296, 0.0]","[-0.0012143701433685744, 0.0]","[0.00030435995242261395, -0.0]","[-0.00030434984262145697, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_249_LVCableDist_mvgd_0_lvgd_1007_251,"[0.00850260135459304, 8.52651282911522e-14]","[-0.00850208068356948, -8.526512829115211e-14]","[0.0021312491660240985, -9.947598300643412e-14]","[-0.0021309938315831147, 9.947598300643416e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_251_LVCableDist_mvgd_0_lvgd_1007_252,"[0.0012144234635666077, 0.0]","[-0.0012143701432765443, 0.0]","[0.0003043599180124437, -0.0]","[-0.00030434984499005653, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_251_LVCableDist_mvgd_0_lvgd_1007_253,"[0.007287657222739941, 5.6843418860765946e-14]","[-0.007287274671494246, -5.684341886076588e-14]","[0.0018266339071198877, -7.105427357602258e-14]","[-0.0018264463059205743, 7.105427357602259e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_253_LVCableDist_mvgd_0_lvgd_1007_254,"[0.001214473240712999, 0.0]","[-0.0012143701433481046, 0.0]","[0.00030435995482651373, -0.0]","[-0.0003043498425950107, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_253_LVCableDist_mvgd_0_lvgd_1007_255,"[0.00607280143363703, 1.1368683772156359e-13]","[-0.006072535766092721, -1.1368683772156349e-13]","[0.0015220863421855672, -7.105427357604806e-14]","[-0.0015219560601632458, 7.105427357604811e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_255_LVCableDist_mvgd_0_lvgd_1007_256,"[0.001214423474387949, 0.0]","[-0.0012143701432521976, 0.0]","[0.0003043599200508782, -0.0]","[-0.00030434984497957376, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_255_LVCableDist_mvgd_0_lvgd_1007_257,"[0.004858112294371209, 1.1368683772158262e-13]","[-0.004857942261114997, -1.1368683772158253e-13]","[0.0012175961335962556, -2.842170943044985e-14]","[-0.0012175127501459402, 2.8421709430449907e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_257_LVCableDist_mvgd_0_lvgd_1007_258,"[0.0012144732578617692, 0.0]","[-0.0012143701433370256, 0.0]","[0.0003043599564917737, -0.0]","[-0.00030434984257715907, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_257_LVCableDist_mvgd_0_lvgd_1007_259,"[0.003643469006125777, 2.8421709430373286e-14]","[-0.003643373361585443, -2.8421709430373267e-14]","[0.0009131527846627527, -5.684341886081043e-14]","[-0.0009131058810631009, 5.684341886081044e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_259_LVCableDist_mvgd_0_lvgd_1007_260,"[0.0012144234812813447, 0.0]","[-0.0012143701432419014, 0.0]","[0.00030435992134791396, -0.0]","[-0.000304349844972396, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_259_LVCableDist_mvgd_0_lvgd_1007_261,"[0.002428949883045651, 2.8421709430398826e-14]","[-0.002428907373159341, -2.842170943039882e-14]","[0.0006087459531331241, -1.2779865734771314e-26]","[-0.0006087251064995188, 1.2785096443644085e-26]" +Branch_LVCableDist_mvgd_0_lvgd_1007_25_LVCableDist_mvgd_0_lvgd_1007_26,"[0.0012144221495958075, 0.0]","[-0.0012143701449042425, 0.0]","[0.0003043596705861701, -0.0]","[-0.0003043498461005615, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_25_LVCableDist_mvgd_0_lvgd_1007_27,"[0.06148736603222643, 7.105427357603761e-14]","[-0.06144303652759842, -7.105427357603708e-14]","[0.015593122190047912, 2.131628207280165e-13]","[-0.015571383224806681, -2.131628207280163e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_261_LVCableDist_mvgd_0_lvgd_1007_262,"[0.0012144732673857405, 0.0]","[-0.001214370143325725, 0.0]","[0.00030435995741671, -0.0]","[-0.0003043498425668351, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_261_LVCableDist_mvgd_0_lvgd_1007_263,"[0.0012144341086017957, -2.842170943040521e-14]","[-0.0012144234814419374, 2.842170943040522e-14]","[0.0003043651400439263, -1.4210854715186624e-14]","[-0.0003043599285383903, 1.4210854715186627e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_263_LVCableDist_mvgd_0_lvgd_1007_264,"[0.0012144234842389095, 0.0]","[-0.0012143701432402994, 0.0]","[0.0003043599219027595, -0.0]","[-0.00030434984496820953, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_27_LVCableDist_mvgd_0_lvgd_1007_28,"[0.0012144708404524132, 0.0]","[-0.0012143701448581528, 0.0]","[0.00030435972127827, -0.0]","[-0.00030434984462272656, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_27_LVCableDist_mvgd_0_lvgd_1007_29,"[0.06022856568590948, 2.8421709430433814e-14]","[-0.060185970126224474, -2.842170943043331e-14]","[0.015267023505583645, 2.2737367544322373e-13]","[-0.01524613485818744, -2.2737367544322343e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_29_LVCableDist_mvgd_0_lvgd_1007_30,"[0.001214422306643407, 0.0]","[-0.0012143701447185234, 0.0]","[0.0003043597001611799, -0.0]","[-0.00030434984597178057, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_29_LVCableDist_mvgd_0_lvgd_1007_31,"[0.05897154781840392, 4.2632564145633135e-14]","[-0.05893065280705189, -4.2632564145632656e-14]","[0.014941775161240059, 2.1316282072801986e-13]","[-0.014921720454159942, -2.1316282072801963e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_31_LVCableDist_mvgd_0_lvgd_1007_32,"[0.001214471138869464, 0.0]","[-0.0012143701446729726, 0.0]","[0.00030435975031957283, -0.0]","[-0.00030434984437584256, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_31_LVCableDist_mvgd_0_lvgd_1007_33,"[0.05771618166718699, 5.684341886083341e-14]","[-0.057676953834993674, -5.684341886083294e-14]","[0.014617360705290443, 2.0605739337041694e-13]","[-0.014598123574451836, -2.060573933704167e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_33_LVCableDist_mvgd_0_lvgd_1007_34,"[0.0012144224580699849, 0.0]","[-0.0012143701445245397, 0.0]","[0.00030435972867668364, -0.0]","[-0.0003043498458438297, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_33_LVCableDist_mvgd_0_lvgd_1007_35,"[0.056462531375987474, 5.684341886083022e-14]","[-0.05642493712886794, -5.684341886082983e-14]","[0.014293763848475286, 1.8474111129761423e-13]","[-0.014275327819508578, -1.8474111129761403e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_35_LVCableDist_mvgd_0_lvgd_1007_36,"[0.0012144714263515025, 0.0]","[-0.0012143701444895796, 0.0]","[0.00030435977828487777, -0.0]","[-0.00030434984412568876, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_35_LVCableDist_mvgd_0_lvgd_1007_37,"[0.05521046570180608, 5.684341886083251e-14]","[-0.05517447147198032, -5.684341886083205e-14]","[0.013970968042042202, 2.0605739337041648e-13]","[-0.013953316653477566, -2.0605739337041626e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_37_LVCableDist_mvgd_0_lvgd_1007_38,"[0.0012144226037937888, 0.0]","[-0.0012143701443275764, 0.0]","[0.0003043597561111501, -0.0]","[-0.00030434984571162024, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_37_LVCableDist_mvgd_0_lvgd_1007_39,"[0.053960048867467435, 4.263256414562867e-14]","[-0.053925620870556454, -4.263256414562828e-14]","[0.01364895689949114, 1.9184653865521642e-13]","[-0.013632073583639688, -1.9184653865521625e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_39_LVCableDist_mvgd_0_lvgd_1007_40,"[0.0012144717027233586, 0.0]","[-0.001214370144298476, 0.0]","[0.0003043598051579839, -0.0]","[-0.0003043498438723143, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_39_LVCableDist_mvgd_0_lvgd_1007_41,"[0.052711149167398226, 1.421085471522336e-14]","[-0.052678253644196454, -1.4210854715223035e-14]","[0.013327713778580143, 1.7763568394001813e-13]","[-0.013311581980097936, -1.7763568394001798e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_3_LVCableDist_mvgd_0_lvgd_1007_4,"[0.0012144211997908078, 0.0]","[-0.0012143701458409784, 0.0]","[0.00030435949160611045, -0.0]","[-0.00030434984673022975, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_3_LVStation_mvgd_0_lvgd_1007,"[0.0012145364760078623, 3.552713678800786e-15]","[-0.0012144211988974795, -3.552713678800785e-15]","[0.0003044160250464907, 1.7763568393996843e-15]","[-0.00030435949373361566, -1.7763568393996839e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1007_41_LVCableDist_mvgd_0_lvgd_1007_42,"[0.001214422743745121, 0.0]","[-0.001214370144142225, 0.0]","[0.0003043597824553751, -0.0]","[-0.0003043498455818716, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_41_LVCableDist_mvgd_0_lvgd_1007_43,"[0.05146383090003729, 2.842170943042289e-14]","[-0.05143243388319384, -2.84217094304226e-14]","[0.013007222199201291, 1.6342482922481466e-13]","[-0.012991825260670942, -1.6342482922481454e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_43_LVCableDist_mvgd_0_lvgd_1007_44,"[0.0012144719678268729, 0.0]","[-0.0012143701441017568, 0.0]","[0.0003043598309256573, -0.0]","[-0.00030434984361820354, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_43_LVCableDist_mvgd_0_lvgd_1007_45,"[0.050217961915109764, 1.4210854715223584e-14]","[-0.050188029461315516, -1.4210854715223234e-14]","[0.012687465429091459, 1.8474111129761858e-13]","[-0.012672786704885574, -1.8474111129761842e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_45_LVCableDist_mvgd_0_lvgd_1007_46,"[0.00121442287781933, 0.0]","[-0.0012143701439452737, 0.0]","[0.0003043598076875199, -0.0]","[-0.0003043498454481304, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_45_LVCableDist_mvgd_0_lvgd_1007_47,"[0.04897360658338591, 2.0020601724478995e-26]","[-0.048945104549777296, -1.9723959083496616e-26]","[0.012368426898095133, 1.7053025658241854e-13]","[-0.012354449644725816, -1.705302565824184e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_47_LVCableDist_mvgd_0_lvgd_1007_48,"[0.0012144722215204002, 0.0]","[-0.0012143701439124098, 0.0]","[0.0003043598555740658, -0.0]","[-0.0003043498433646913, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_47_LVCableDist_mvgd_0_lvgd_1007_49,"[0.04773063232832886, 1.4210854715221255e-14]","[-0.04770352659495208, -1.4210854715220955e-14]","[0.012050089787725695, 1.7053025658241675e-13]","[-0.012036797272939869, -1.7053025658241657e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_49_LVCableDist_mvgd_0_lvgd_1007_50,"[0.0012144230059443384, 0.0]","[-0.0012143701437431198, 0.0]","[0.00030435983179995224, -0.0]","[-0.0003043498453175891, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_49_LVCableDist_mvgd_0_lvgd_1007_51,"[0.046489103589196466, 1.4210854715220955e-14]","[-0.046463359845266936, -1.421085471522066e-14]","[0.011732437441370215, 1.7053025658241657e-13]","[-0.011719812839332374, -1.7053025658241645e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_51_LVCableDist_mvgd_0_lvgd_1007_52,"[0.0012144724636484183, 0.0]","[-0.0012143701437237208, 0.0]","[0.0003043598790886403, -0.0]","[-0.0003043498431118045, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_51_LVCableDist_mvgd_0_lvgd_1007_53,"[0.04524888738198411, 1.8357138414816133e-26]","[-0.04522447133849467, -1.8084986862207167e-26]","[0.011415452957990973, 1.6342482922481729e-13]","[-0.011403479453545135, -1.6342482922481714e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_53_LVCableDist_mvgd_0_lvgd_1007_54,"[0.001214423128058484, 0.0]","[-0.0012143701435495136, 0.0]","[0.00030435985477375046, -0.0]","[-0.00030434984518557304, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_53_LVCableDist_mvgd_0_lvgd_1007_55,"[0.04401004821092553, 1.4210854715219576e-14]","[-0.043986925396889386, -1.4210854715219302e-14]","[0.011099119598315863, 1.6342482922481557e-13]","[-0.011087780287064154, -1.6342482922481547e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_55_LVCableDist_mvgd_0_lvgd_1007_56,"[0.0012144726940690133, 0.0]","[-0.001214370143536562, 0.0]","[0.00030435990145777575, -0.0]","[-0.00030434984286194293, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_55_LVCableDist_mvgd_0_lvgd_1007_57,"[0.04277245270352322, 2.842170943042078e-14]","[-0.04275058866859848, -2.842170943042049e-14]","[0.010783420382542597, 1.634248292248139e-13]","[-0.010772698370211302, -1.6342482922481375e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_57_LVCableDist_mvgd_0_lvgd_1007_58,"[0.0012144232440853644, 0.0]","[-0.0012143701433603013, 0.0]","[0.00030435987659945473, -0.0]","[-0.0003043498450562711, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_57_LVCableDist_mvgd_0_lvgd_1007_59,"[0.04153616542527681, 2.842170943041973e-14]","[-0.0415155255461154, -2.8421709430419475e-14]","[0.010468338492430404, 1.5631940186721303e-13]","[-0.010458216799904435, -1.563194018672129e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_59_LVCableDist_mvgd_0_lvgd_1007_60,"[0.0012144729126476919, 0.0]","[-0.0012143701433530154, 0.0]","[0.00030435992266944007, -0.0]","[-0.0003043498426164703, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_59_LVCableDist_mvgd_0_lvgd_1007_61,"[0.04030105263446924, 4.2632564145619415e-14]","[-0.040281602307235403, -4.263256414561918e-14]","[0.010153856873310045, 1.4210854715200994e-13]","[-0.010144318531043084, -1.4210854715200981e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_5_LVCableDist_mvgd_0_lvgd_1007_6,"[0.0012144212833179375, 0.0]","[-0.0012143701457600932, 0.0]","[0.0003043595073538693, -0.0]","[-0.00030434984668314936, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_5_LVCableDist_mvgd_0_lvgd_1007_7,"[0.07417774204711676, 4.263256414564724e-14]","[-0.07411426356080192, -4.2632564145646514e-14]","[0.018904433543003862, 2.6290081223122995e-13]","[-0.01887330401383036, -2.629008122312296e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_5_LVStation_mvgd_0_lvgd_1007,"[0.07545773520507054, 5.684341886085114e-14]","[-0.07539216333262846, -5.684341886085034e-14]","[0.019240949160370058, 2.700062395888291e-13]","[-0.0192087930452097, -2.7000623958882873e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_61_LVCableDist_mvgd_0_lvgd_1007_62,"[0.0012144233539545823, 0.0]","[-0.001214370143174074, 0.0]","[0.0003043598972657883, -0.0]","[-0.00030434984493143925, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_61_LVCableDist_mvgd_0_lvgd_1007_63,"[0.039067178954348775, 4.263256414561918e-14]","[-0.03904888341129076, -4.263256414561896e-14]","[0.009839958631878616, 1.4210854715200981e-13]","[-0.009830986589940745, -1.421085471520097e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_63_LVCableDist_mvgd_0_lvgd_1007_64,"[0.0012144731192495657, 0.0]","[-0.0012143701431683728, 0.0]","[0.000304359942711661, -0.0]","[-0.0003043498423761833, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_63_LVCableDist_mvgd_0_lvgd_1007_65,"[0.037834410293336056, 5.684341886081964e-14]","[-0.037817234785081914, -5.684341886081941e-14]","[0.009526626642461079, 1.3500311979440752e-13]","[-0.009518203859935749, -1.3500311979440742e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_65_LVCableDist_mvgd_0_lvgd_1007_66,"[0.0012144234576060618, 0.0]","[-0.0012143701429963912, 0.0]","[0.00030435991675798526, -0.0]","[-0.0003043498448087115, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_65_LVCableDist_mvgd_0_lvgd_1007_67,"[0.036602811328819214, 4.263256414561802e-14]","[-0.036586720951282396, -4.263256414561782e-14]","[0.009213843940537866, 1.350031197944089e-13]","[-0.009205953300637277, -1.3500311979440879e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_67_LVCableDist_mvgd_0_lvgd_1007_68,"[0.0012144733137628247, 0.0]","[-0.0012143701429944333, 0.0]","[0.0003043599615745118, -0.0]","[-0.0003043498421432791, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_67_LVCableDist_mvgd_0_lvgd_1007_69,"[0.035372247639098, 5.684341886081848e-14]","[-0.035357207505439324, -5.684341886081828e-14]","[0.008901593333439331, 1.2789769243680667e-13]","[-0.00889421772783369, -1.2789769243680655e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_69_LVCableDist_mvgd_0_lvgd_1007_70,"[0.001214423554965403, 0.0]","[-0.0012143701428150475, 0.0]","[0.00030435993506629607, -0.0]","[-0.00030434984469008777, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_69_LVCableDist_mvgd_0_lvgd_1007_71,"[0.034142783952166196, 4.263256414561691e-14]","[-0.03412875903013863, -4.263256414561673e-14]","[0.00858985778938123, 1.2789769243680799e-13]","[-0.008582980038433496, -1.2789769243680789e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_71_LVCableDist_mvgd_0_lvgd_1007_72,"[0.0012144734960675937, 0.0]","[-0.0012143701428281944, 0.0]","[0.0003043599792463532, -0.0]","[-0.0003043498419175818, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_71_LVCableDist_mvgd_0_lvgd_1007_73,"[0.03291428553593857, 4.2632564145617434e-14]","[-0.032901240809410245, -4.2632564145617226e-14]","[0.008278620052739622, 1.3500311979440856e-13]","[-0.008272222984715506, -1.3500311979440846e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_73_LVCableDist_mvgd_0_lvgd_1007_74,"[0.0012144236459882662, 0.0]","[-0.0012143701426443705, 0.0]","[0.0003043599521773707, -0.0]","[-0.00030434984457330076, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_73_LVCableDist_mvgd_0_lvgd_1007_75,"[0.031686817165372375, 5.684341886081857e-14]","[-0.03167471748220991, -5.684341886081834e-14]","[0.007967863028439718, 1.3500311979440707e-13]","[-0.007961929404910511, -1.3500311979440697e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_75_LVCableDist_mvgd_0_lvgd_1007_76,"[0.0012144736660481732, 0.0]","[-0.001214370142663931, 0.0]","[0.00030435999571939537, -0.0]","[-0.00030434984170208854, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_75_LVCableDist_mvgd_0_lvgd_1007_77,"[0.030460243818342704, 5.684341886081903e-14]","[-0.03044905404139563, -5.684341886081878e-14]","[0.00765756940190935, 1.4210854715200762e-13]","[-0.007652081991793882, -1.421085471520075e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_77_LVCableDist_mvgd_0_lvgd_1007_78,"[0.0012144237306235448, 0.0]","[-0.0012143701424883128, 0.0]","[0.0003043599680864303, -0.0]","[-0.00030434984446397367, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_77_LVCableDist_mvgd_0_lvgd_1007_79,"[0.029234630312967448, 4.263256414561681e-14]","[-0.02922431517858371, -4.2632564145616613e-14]","[0.007347722018920081, 1.350031197944082e-13]","[-0.007342663529101425, -1.350031197944081e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_79_LVCableDist_mvgd_0_lvgd_1007_80,"[0.0012144738236095284, 0.0]","[-0.0012143701425095337, 0.0]","[0.0003043600109840596, -0.0]","[-0.00030434984149731555, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_79_LVCableDist_mvgd_0_lvgd_1007_81,"[0.028009841357466855, 4.263256414561527e-14]","[-0.028000365615845256, -4.263256414561509e-14]","[0.007038303510059614, 1.2079226507920683e-13]","[-0.007033656654213253, -1.2079226507920676e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_7_LVCableDist_mvgd_0_lvgd_1007_8,"[0.0012144691903960027, 0.0]","[-0.0012143701457146756, 0.0]","[0.000304359560490472, -0.0]","[-0.0003043498457635461, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_7_LVCableDist_mvgd_0_lvgd_1007_9,"[0.07289979436827956, 1.42108547152448e-14]","[-0.07283837723287845, -1.4210854715244053e-14]","[0.018568944457519422, 2.7711166694643594e-13]","[-0.01853882580442586, -2.7711166694643554e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_81_LVCableDist_mvgd_0_lvgd_1007_82,"[0.0012144238088027148, 0.0]","[-0.0012143701423297305, 0.0]","[0.0003043599827822459, -0.0]","[-0.0003043498443605836, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_81_LVCableDist_mvgd_0_lvgd_1007_83,"[0.02678594180950594, 9.969953600880543e-27]","[-0.026777270093930834, -9.846651080725568e-27]","[0.006729296665951114, 1.0658141036400949e-13]","[-0.006725044100418271, -1.0658141036400944e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_83_LVCableDist_mvgd_0_lvgd_1007_84,"[0.0012144739686539142, 0.0]","[-0.001214370142362993, 0.0]","[0.00030436002503203785, -0.0]","[-0.00030434984130434534, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_83_LVCableDist_mvgd_0_lvgd_1007_85,"[0.025562796128002916, 2.8421709430413676e-14]","[-0.025554893084477726, -2.8421709430413524e-14]","[0.006420684066588548, 1.2079226507920807e-13]","[-0.0064168084539478094, -1.2079226507920797e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_85_LVCableDist_mvgd_0_lvgd_1007_86,"[0.0012144238805050947, 0.0]","[-0.0012143701421955637, 0.0]","[0.000304359996257077, -0.0]","[-0.00030434984426438695, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_85_LVCableDist_mvgd_0_lvgd_1007_87,"[0.024340469206708692, 4.263256414561217e-14]","[-0.024333299373990397, -4.263256414561206e-14]","[0.0061124484515608785, 9.237055564880419e-14]","[-0.006108932401797714, -9.237055564880414e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_87_LVCableDist_mvgd_0_lvgd_1007_88,"[0.0012144741010989837, 0.0]","[-0.0012143701422303724, 0.0]","[0.0003043600378560319, -0.0]","[-0.0003043498411245513, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_87_LVCableDist_mvgd_0_lvgd_1007_89,"[0.0231188252758825, 1.421085471521217e-14]","[-0.0231123532043156, -1.4210854715212038e-14]","[0.005804572354403671, 1.2079226507920918e-13]","[-0.005801398483186022, -1.207922650792091e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_89_LVCableDist_mvgd_0_lvgd_1007_90,"[0.0012144239456584826, 0.0]","[-0.0012143701420574181, 0.0]","[0.00030436000850339026, -0.0]","[-0.0003043498441761259, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_89_LVCableDist_mvgd_0_lvgd_1007_91,"[0.021897929261630422, 4.2632564145611293e-14]","[-0.021892119404055457, -4.2632564145611186e-14]","[0.005497038467953478, 8.526512829120349e-14]","[-0.0054941893431338235, -8.526512829120345e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1007_91_LVCableDist_mvgd_0_lvgd_1007_92,"[0.0012144742208586878, 0.0]","[-0.0012143701421065895, 0.0]","[0.00030436004944867247, -0.0]","[-0.0003043498409585055, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_91_LVCableDist_mvgd_0_lvgd_1007_93,"[0.02067764518637767, 7.105427357601613e-14]","[-0.0206724620060914, -7.105427357601595e-14]","[0.005189829283470674, 1.1368683772160334e-13]","[-0.005187287478029179, -1.1368683772160327e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_93_LVCableDist_mvgd_0_lvgd_1007_94,"[0.001214424004240871, 0.0]","[-0.0012143701419332078, 0.0]","[0.0003043600195094324, -0.0]","[-0.00030434984409158914, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_93_LVCableDist_mvgd_0_lvgd_1007_95,"[0.01945803800504142, 2.842170943041176e-14]","[-0.01945344587764697, -2.842170943041164e-14]","[0.004882927451209998, 1.0658141036400642e-13]","[-0.004880675495122311, -1.0658141036400636e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_95_LVCableDist_mvgd_0_lvgd_1007_96,"[0.0012144743278569268, 0.0]","[-0.0012143701419889492, 0.0]","[0.0003043600598049739, -0.0]","[-0.0003043498408084223, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_95_LVCableDist_mvgd_0_lvgd_1007_97,"[0.018238971553203556, 4.2632564145612814e-14]","[-0.018234934863629197, -4.2632564145612675e-14]","[0.004576315424488427, 1.0658141036400512e-13]","[-0.004574335852303196, -1.0658141036400506e-13]" +Branch_LVCableDist_mvgd_0_lvgd_1007_97_LVCableDist_mvgd_0_lvgd_1007_98,"[0.0012144240562065312, 0.0]","[-0.0012143701418131905, 0.0]","[0.00030436002927382186, -0.0]","[-0.0003043498440161935, -0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1007_97_LVCableDist_mvgd_0_lvgd_1007_99,"[0.017020510810775644, 5.684341886081323e-14]","[-0.017016993866127643, -5.684341886081309e-14]","[0.004269975815185953, 9.947598300640325e-14]","[-0.004268251123288317, -9.947598300640318e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_100_LVCableDist_mvgd_0_lvgd_1008_99,"[0.0005621723899424204, 0.0]","[-0.0005621407796528657, 0.0]","[0.00014089173064766932, 0.0]","[-0.00014088575897808594, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_101_LVCableDist_mvgd_0_lvgd_1008_102,"[0.0005621559832038583, 0.0]","[-0.0005621407798339206, 0.0]","[0.00014088863125334423, 0.0]","[-0.00014088575910306967, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_101_LVCableDist_mvgd_0_lvgd_1008_103,"[0.008449273723106603, -4.973799150320864e-14]","[-0.00844622688528779, 4.9737991503208755e-14]","[0.002119914274387613, 1.9539925233400868e-14]","[-0.0021187247538211494, -1.9539925233400827e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_101_LVStation_mvgd_0_lvgd_1008,"[0.009014895433586165, -5.684341886080939e-14]","[-0.009011429705917168, 5.684341886080953e-14]","[0.0022621559668432015, 1.4210854715199773e-14]","[-0.0022608029068560314, -1.421085471519972e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_103_LVCableDist_mvgd_0_lvgd_1008_104,"[0.0005621722253208322, 0.0]","[-0.0005621407798126185, 0.0]","[0.0001408916996272213, 0.0]","[-0.0001408857590873661, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_103_LVCableDist_mvgd_0_lvgd_1008_105,"[0.007884054660381307, -5.3290705182009395e-14]","[-0.007881399893177491, 5.329070518200952e-14]","[0.001977833052911593, 2.1316282072800945e-14]","[-0.0019767966012276166, -2.13162820728009e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_105_LVCableDist_mvgd_0_lvgd_1008_106,"[0.000562156005087593, 0.0]","[-0.0005621407797950057, 0.0]","[0.0001408886353670243, 0.0]","[-0.0001408857590752243, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_105_LVCableDist_mvgd_0_lvgd_1008_107,"[0.007319243888518625, -5.684341886081001e-14]","[-0.007316954311592985, 5.684341886081014e-14]","[0.0018359079645155654, 1.953992523340045e-14]","[-0.0018350140873210742, -1.9539925233400395e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_107_LVCableDist_mvgd_0_lvgd_1008_108,"[0.0005621722675208275, 0.0]","[-0.0005621407797768129, 0.0]","[0.00014089170757990155, 0.0]","[-0.00014088575906105432, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_107_LVCableDist_mvgd_0_lvgd_1008_109,"[0.006754782044531083, -6.039613253961062e-14]","[-0.006752830762168129, 6.039613253961078e-14]","[0.0016941223783435268, 1.7763568393999933e-14]","[-0.0016933605752415103, -1.7763568393999873e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_109_LVCableDist_mvgd_0_lvgd_1008_110,"[0.0005621560239959297, 0.0]","[-0.0005621407797623181, 0.0]","[0.00014088863891797526, 0.0]","[-0.00014088575904792466, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_109_LVCableDist_mvgd_0_lvgd_1008_111,"[0.006190674738660902, -6.039613253961078e-14]","[-0.006189034802331345, 6.039613253961093e-14]","[0.0015524719348630114, 1.7763568393999873e-14]","[-0.0015518316848373444, -1.7763568393999816e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_10_LVCableDist_mvgd_0_lvgd_1008_9,"[0.0005621560050841393, 0.0]","[-0.0005621407797915523, 0.0]","[0.0001408886353663095, 0.0]","[-0.00014088575907450954, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_111_LVCableDist_mvgd_0_lvgd_1008_112,"[0.0005621723035364445, 0.0]","[-0.0005621407797393875, 0.0]","[0.00014089171436698308, 0.0]","[-0.00014088575903716197, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_111_LVCableDist_mvgd_0_lvgd_1008_113,"[0.005626862499277923, -6.039613253961074e-14]","[-0.005625506947306294, 6.039613253961089e-14]","[0.0014109399689590943, 1.4210854715199227e-14]","[-0.00141041074586123, -1.4210854715199175e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_113_LVCableDist_mvgd_0_lvgd_1008_114,"[0.0005621560398982187, 0.0]","[-0.0005621407797238716, 0.0]","[0.00014088864190997107, 0.0]","[-0.0001408857590284704, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_113_LVCableDist_mvgd_0_lvgd_1008_115,"[0.005063350907913044, -4.2632564145607904e-14]","[-0.005062252734159784, 4.2632564145607974e-14]","[0.0012695221023949637, 1.4210854715200118e-14]","[-0.0012690933627170634, -1.4210854715200088e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_115_LVCableDist_mvgd_0_lvgd_1008_116,"[0.0005621723333430362, 0.0]","[-0.0005621407797112673, 0.0]","[0.00014089171998289462, 0.0]","[-0.00014088575901683784, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_115_LVCableDist_mvgd_0_lvgd_1008_117,"[0.004500080401336852, -3.1974423109205985e-14]","[-0.004499212588770581, 3.197442310920602e-14]","[0.0011282016411335333, 1.0658141036400067e-14]","[-0.0011278628371154645, -1.0658141036400047e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_117_LVCableDist_mvgd_0_lvgd_1008_118,"[0.0005621560527991888, 0.0]","[-0.0005621407797001401, 0.0]","[0.0001408886443350634, 0.0]","[-0.000140885759011888, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_117_LVCableDist_mvgd_0_lvgd_1008_119,"[0.003937056536516923, -2.8421709430405617e-14]","[-0.0039363920320441455, 2.8421709430405655e-14]","[0.0009869741911358427, 1.4210854715200847e-14]","[-0.0009867147609384113, -1.4210854715200836e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_119_LVCableDist_mvgd_0_lvgd_1008_120,"[0.0005621723569064021, 0.0]","[-0.0005621407796877565, 0.0]","[0.00014089172442362607, 0.0]","[-0.00014088575900164579, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_119_LVCableDist_mvgd_0_lvgd_1008_121,"[0.0033742196756801515, -2.842170943040526e-14]","[-0.0033737314175881104, 2.842170943040529e-14]","[0.0008458230348389848, 7.1054273575996206e-15]","[-0.0008456324132579345, -7.105427357599608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_11_LVCableDist_mvgd_0_lvgd_1008_12,"[0.000562172267515683, 0.0]","[-0.0005621407797716689, 0.0]","[0.00014089170757968438, 0.0]","[-0.00014088575906083723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_11_LVCableDist_mvgd_0_lvgd_1008_13,"[0.006754782044507241, -6.039613253961062e-14]","[-0.0067528307621442995, 6.039613253961078e-14]","[0.0016941223783462373, 1.7763568393999933e-14]","[-0.0016933605752442263, -1.7763568393999873e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_11_LVCableDist_mvgd_0_lvgd_1008_9,"[0.007319243888484715, -5.684341886081001e-14]","[-0.007316954311559093, 5.684341886081014e-14]","[0.0018359079645238166, 1.953992523340045e-14]","[-0.0018350140873293324, -1.9539925233400395e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_121_LVCableDist_mvgd_0_lvgd_1008_122,"[0.0005621560626690276, 0.0]","[-0.0005621407796741056, 0.0]","[0.00014088864618817289, 0.0]","[-0.00014088575899551492, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_121_LVCableDist_mvgd_0_lvgd_1008_123,"[0.0028115753554858393, -2.4868995751604475e-14]","[-0.0028112362544440873, 2.4868995751604497e-14]","[0.0007047437653649924, 3.5527136787991985e-15]","[-0.000704611376413804, -3.55271367879919e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_123_LVCableDist_mvgd_0_lvgd_1008_124,"[0.0005621723742016974, 0.0]","[-0.0005621407796673803, 0.0]","[0.00014089172768242411, 0.0]","[-0.00014088575898924723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_123_LVCableDist_mvgd_0_lvgd_1008_125,"[0.002249063880799195, -2.4868995751604396e-14]","[-0.0022488468411449984, 2.486899575160442e-14]","[0.0005637196469947302, 1.7763568393988828e-15]","[-0.0005636349122146873, -1.7763568393988731e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_125_LVCableDist_mvgd_0_lvgd_1008_126,"[0.000562156069521862, 0.0]","[-0.0005621407796697049, 0.0]","[0.00014088864747522313, 0.0]","[-0.00014088575898712807, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_125_LVCableDist_mvgd_0_lvgd_1008_127,"[0.0016866907722088782, -1.7763568394003186e-14]","[-0.0016865686791388197, 1.7763568394003202e-14]","[0.0004227462630017997, 1.7763568393992833e-15]","[-0.00042269859646144057, -1.7763568393992788e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_127_LVCableDist_mvgd_0_lvgd_1008_128,"[0.0005621723852194196, 0.0]","[-0.0005621407796578156, 0.0]","[0.0001408917297591971, 0.0]","[-0.0001408857589827962, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_127_LVCableDist_mvgd_0_lvgd_1008_129,"[0.0011243962944798515, -3.552713678800619e-15]","[-0.0011243420291558003, 3.55271367880062e-15]","[0.00028180686493282415, -2.061650529242718e-28]","[-0.00028178567912549114, 2.063232177670667e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1008_129_LVCableDist_mvgd_0_lvgd_1008_130,"[0.0005621560733242109, 0.0]","[-0.0005621407796602654, 0.0]","[0.00014088864818909488, 0.0]","[-0.00014088575898089437, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_129_LVCableDist_mvgd_0_lvgd_1008_131,"[0.0005621859564227018, -1.065814103640155e-14]","[-0.0005621723893654622, 1.0658141036401556e-14]","[0.0001408970291653842, -5.329070518201549e-15]","[-0.00014089173243002364, 5.329070518201552e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_131_LVCableDist_mvgd_0_lvgd_1008_132,"[0.000562172389942468, 0.0]","[-0.0005621407796529133, 0.0]","[0.00014089173064894435, 0.0]","[-0.00014088575897936096, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_13_LVCableDist_mvgd_0_lvgd_1008_14,"[0.0005621560239857112, 0.0]","[-0.0005621407797521002, 0.0]","[0.00014088863891924846, 0.0]","[-0.00014088575904919794, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_13_LVCableDist_mvgd_0_lvgd_1008_15,"[0.006190674738626606, -6.039613253961078e-14]","[-0.006189034802297067, 6.039613253961093e-14]","[0.0015524719348610117, 1.7763568393999873e-14]","[-0.0015518316848353512, -1.7763568393999816e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_15_LVCableDist_mvgd_0_lvgd_1008_16,"[0.0005621723035364476, 0.0]","[-0.0005621407797393906, 0.0]","[0.0001408917143669866, 0.0]","[-0.00014088575903716547, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_15_LVCableDist_mvgd_0_lvgd_1008_17,"[0.0056268624992710506, -6.039613253961074e-14]","[-0.005625506947299427, 6.039613253961089e-14]","[0.0014109399689576977, 1.4210854715199227e-14]","[-0.0014104107458598359, -1.4210854715199175e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_17_LVCableDist_mvgd_0_lvgd_1008_18,"[0.0005621560398947015, 0.0]","[-0.0005621407797203545, 0.0]","[0.00014088864190755086, 0.0]","[-0.00014088575902605025, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_17_LVCableDist_mvgd_0_lvgd_1008_19,"[0.005063350907906172, -4.2632564145607904e-14]","[-0.0050622527341529135, 4.2632564145607974e-14]","[0.0012695221023935662, 1.4210854715200118e-14]","[-0.0012690933627156654, -1.4210854715200088e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_19_LVCableDist_mvgd_0_lvgd_1008_20,"[0.0005621723333413492, 0.0]","[-0.0005621407797095804, 0.0]","[0.0001408917199833946, 0.0]","[-0.00014088575901733782, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_19_LVCableDist_mvgd_0_lvgd_1008_21,"[0.004500080401340158, -3.1974423109205985e-14]","[-0.004499212588773886, 3.197442310920602e-14]","[0.0011282016411300077, 1.0658141036400067e-14]","[-0.0011278628371119395, -1.0658141036400047e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_1_LVCableDist_mvgd_0_lvgd_1008_2,"[0.09387429686856397, 0.0]","[-0.09299999919867213, 0.0]","[0.023473164872170667, 0.0]","[-0.023307996603366358, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_1_LVCableDist_mvgd_0_lvgd_1008_3,"[0.09454852675529492, 5.3290705182009e-15]","[-0.09388873572770474, -5.329070518200898e-15]","[0.024054204399461033, -1.7763568394000499e-15]","[-0.023475894693455342, 1.7763568394000515e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_1_LVStation_mvgd_0_lvgd_1008,"[0.19104049097362483, 2.2718437260914875e-28]","[-0.18842282327882548, -2.2503876698069393e-28]","[0.04982176631690963, -5.329070518200824e-15]","[-0.04752736919464327, 5.329070518200825e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_21_LVCableDist_mvgd_0_lvgd_1008_22,"[0.0005621560527990537, 0.0]","[-0.0005621407797000049, 0.0]","[0.0001408886443316517, 0.0]","[-0.00014088575900847629, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_21_LVCableDist_mvgd_0_lvgd_1008_23,"[0.0039370565365034966, -2.8421709430405617e-14]","[-0.003936392032030721, 2.8421709430405655e-14]","[0.0009869741911415462, 1.4210854715200847e-14]","[-0.0009867147609441157, -1.4210854715200836e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_23_LVCableDist_mvgd_0_lvgd_1008_24,"[0.0005621723569064059, 0.0]","[-0.0005621407796877604, 0.0]","[0.00014089172442362992, 0.0]","[-0.00014088575900164958, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_23_LVCableDist_mvgd_0_lvgd_1008_25,"[0.003374219675666724, -2.842170943040526e-14]","[-0.003373731417574686, 2.842170943040529e-14]","[0.0008458230348446853, 7.1054273575996206e-15]","[-0.0008456324132636362, -7.105427357599608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_25_LVCableDist_mvgd_0_lvgd_1008_26,"[0.0005621560626792744, 0.0]","[-0.0005621407796843518, 0.0]","[0.00014088864618776048, 0.0]","[-0.0001408857589951024, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_25_LVCableDist_mvgd_0_lvgd_1008_27,"[0.002811575355479239, -2.4868995751604475e-14]","[-0.0028112362544374884, 2.4868995751604497e-14]","[0.0007047437653704123, 3.5527136787991985e-15]","[-0.0007046113764192247, -3.55271367879919e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_27_LVCableDist_mvgd_0_lvgd_1008_28,"[0.0005621723742000292, 0.0]","[-0.0005621407796657123, 0.0]","[0.00014089172768335149, 0.0]","[-0.00014088575899017463, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_27_LVCableDist_mvgd_0_lvgd_1008_29,"[0.0022490638807893173, -2.4868995751604396e-14]","[-0.002248846841135122, 2.486899575160442e-14]","[0.0005637196470036993, 1.7763568393988828e-15]","[-0.0005636349122236566, -1.7763568393988731e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_29_LVCableDist_mvgd_0_lvgd_1008_30,"[0.000562156069518418, 0.0]","[-0.0005621407796662611, 0.0]","[0.00014088864747451341, 0.0]","[-0.00014088575898641838, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_29_LVCableDist_mvgd_0_lvgd_1008_31,"[0.0016866907722019946, -1.7763568394003186e-14]","[-0.0016865686791319367, 1.7763568394003202e-14]","[0.00042274626300038514, 1.7763568393992833e-15]","[-0.0004226985964600264, -1.7763568393992788e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_31_LVCableDist_mvgd_0_lvgd_1008_32,"[0.0005621723852176827, 0.0]","[-0.0005621407796560786, 0.0]","[0.0001408917297584181, 0.0]","[-0.00014088575898201723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_31_LVCableDist_mvgd_0_lvgd_1008_33,"[0.0011243962944798601, -3.552713678800619e-15]","[-0.001124342029155809, 3.55271367880062e-15]","[0.00028180686493283386, -2.0616505292427175e-28]","[-0.00028178567912550074, 2.0632321776706666e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1008_33_LVCableDist_mvgd_0_lvgd_1008_34,"[0.0005621560733139415, 0.0]","[-0.0005621407796499965, 0.0]","[0.00014088864818866332, 0.0]","[-0.00014088575898046291, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_33_LVCableDist_mvgd_0_lvgd_1008_35,"[0.0005621859564190845, -1.065814103640155e-14]","[-0.0005621723893618454, 1.0658141036401556e-14]","[0.00014089702916040845, -5.329070518201549e-15]","[-0.00014089173242504802, 5.329070518201552e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_35_LVCableDist_mvgd_0_lvgd_1008_36,"[0.0005621723899424204, 0.0]","[-0.0005621407796528657, 0.0]","[0.00014089173064766932, 0.0]","[-0.00014088575897808594, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_37_LVCableDist_mvgd_0_lvgd_1008_38,"[0.0005621559832073165, 0.0]","[-0.0005621407798373784, 0.0]","[0.00014088863125406262, 0.0]","[-0.00014088575910378798, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_37_LVCableDist_mvgd_0_lvgd_1008_39,"[0.008449273723072723, -4.973799150320864e-14]","[-0.008446226885253934, 4.9737991503208755e-14]","[0.0021199142743975616, 1.9539925233400868e-14]","[-0.002118724753831107, -1.9539925233400827e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_37_LVStation_mvgd_0_lvgd_1008,"[0.009014895433555757, -5.684341886080939e-14]","[-0.009011429705886781, 5.684341886080953e-14]","[0.002262155966854717, 1.4210854715199773e-14]","[-0.0022608029068675547, -1.421085471519972e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_39_LVCableDist_mvgd_0_lvgd_1008_40,"[0.0005621722253191222, 0.0]","[-0.0005621407798109086, 0.0]","[0.00014089169962729179, 0.0]","[-0.00014088575908743653, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_39_LVCableDist_mvgd_0_lvgd_1008_41,"[0.007884054660347379, -5.3290705182009395e-14]","[-0.007881399893143582, 5.329070518200952e-14]","[0.0019778330529198387, 2.1316282072800945e-14]","[-0.00197679660123587, -2.13162820728009e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_3_LVCableDist_mvgd_0_lvgd_1008_4,"[0.09388873736068155, 0.0]","[-0.09299999882604543, 0.0]","[0.02347589275775973, 0.0]","[-0.023307996387632507, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_41_LVCableDist_mvgd_0_lvgd_1008_42,"[0.0005621560050841393, 0.0]","[-0.0005621407797915523, 0.0]","[0.0001408886353663095, 0.0]","[-0.00014088575907450954, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_41_LVCableDist_mvgd_0_lvgd_1008_43,"[0.007319243888484715, -5.684341886081001e-14]","[-0.007316954311559093, 5.684341886081014e-14]","[0.0018359079645238166, 1.953992523340045e-14]","[-0.0018350140873293324, -1.9539925233400395e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_43_LVCableDist_mvgd_0_lvgd_1008_44,"[0.000562172267515683, 0.0]","[-0.0005621407797716689, 0.0]","[0.00014089170757968438, 0.0]","[-0.00014088575906083723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_43_LVCableDist_mvgd_0_lvgd_1008_45,"[0.006754782044507241, -6.039613253961062e-14]","[-0.0067528307621442995, 6.039613253961078e-14]","[0.0016941223783462373, 1.7763568393999933e-14]","[-0.0016933605752442263, -1.7763568393999873e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_45_LVCableDist_mvgd_0_lvgd_1008_46,"[0.0005621560239857112, 0.0]","[-0.0005621407797521002, 0.0]","[0.00014088863891924846, 0.0]","[-0.00014088575904919794, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_45_LVCableDist_mvgd_0_lvgd_1008_47,"[0.006190674738626606, -6.039613253961078e-14]","[-0.006189034802297067, 6.039613253961093e-14]","[0.0015524719348610117, 1.7763568393999873e-14]","[-0.0015518316848353512, -1.7763568393999816e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_47_LVCableDist_mvgd_0_lvgd_1008_48,"[0.0005621723035364476, 0.0]","[-0.0005621407797393906, 0.0]","[0.0001408917143669866, 0.0]","[-0.00014088575903716547, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_47_LVCableDist_mvgd_0_lvgd_1008_49,"[0.0056268624992710506, -6.039613253961074e-14]","[-0.005625506947299427, 6.039613253961089e-14]","[0.0014109399689576977, 1.4210854715199227e-14]","[-0.0014104107458598359, -1.4210854715199175e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_49_LVCableDist_mvgd_0_lvgd_1008_50,"[0.0005621560398947015, 0.0]","[-0.0005621407797203545, 0.0]","[0.00014088864190755086, 0.0]","[-0.00014088575902605025, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_49_LVCableDist_mvgd_0_lvgd_1008_51,"[0.005063350907906172, -4.2632564145607904e-14]","[-0.0050622527341529135, 4.2632564145607974e-14]","[0.0012695221023935662, 1.4210854715200118e-14]","[-0.0012690933627156654, -1.4210854715200088e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_51_LVCableDist_mvgd_0_lvgd_1008_52,"[0.0005621723333413492, 0.0]","[-0.0005621407797095804, 0.0]","[0.0001408917199833946, 0.0]","[-0.00014088575901733782, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_51_LVCableDist_mvgd_0_lvgd_1008_53,"[0.004500080401340158, -3.1974423109205985e-14]","[-0.004499212588773886, 3.197442310920602e-14]","[0.0011282016411300077, 1.0658141036400067e-14]","[-0.0011278628371119395, -1.0658141036400047e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_53_LVCableDist_mvgd_0_lvgd_1008_54,"[0.0005621560527990537, 0.0]","[-0.0005621407797000049, 0.0]","[0.0001408886443316517, 0.0]","[-0.00014088575900847629, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_53_LVCableDist_mvgd_0_lvgd_1008_55,"[0.0039370565365034966, -2.8421709430405617e-14]","[-0.003936392032030721, 2.8421709430405655e-14]","[0.0009869741911415462, 1.4210854715200847e-14]","[-0.0009867147609441157, -1.4210854715200836e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_55_LVCableDist_mvgd_0_lvgd_1008_56,"[0.0005621723569064059, 0.0]","[-0.0005621407796877604, 0.0]","[0.00014089172442362992, 0.0]","[-0.00014088575900164958, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_55_LVCableDist_mvgd_0_lvgd_1008_57,"[0.003374219675666724, -2.842170943040526e-14]","[-0.003373731417574686, 2.842170943040529e-14]","[0.0008458230348446853, 7.1054273575996206e-15]","[-0.0008456324132636362, -7.105427357599608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_57_LVCableDist_mvgd_0_lvgd_1008_58,"[0.0005621560626792744, 0.0]","[-0.0005621407796843518, 0.0]","[0.00014088864618776048, 0.0]","[-0.0001408857589951024, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_57_LVCableDist_mvgd_0_lvgd_1008_59,"[0.002811575355479239, -2.4868995751604475e-14]","[-0.0028112362544374884, 2.4868995751604497e-14]","[0.0007047437653704123, 3.5527136787991985e-15]","[-0.0007046113764192247, -3.55271367879919e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_59_LVCableDist_mvgd_0_lvgd_1008_60,"[0.0005621723742000292, 0.0]","[-0.0005621407796657123, 0.0]","[0.00014089172768335149, 0.0]","[-0.00014088575899017463, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_59_LVCableDist_mvgd_0_lvgd_1008_61,"[0.0022490638807893173, -2.4868995751604396e-14]","[-0.002248846841135122, 2.486899575160442e-14]","[0.0005637196470036993, 1.7763568393988828e-15]","[-0.0005636349122236566, -1.7763568393988731e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_5_LVCableDist_mvgd_0_lvgd_1008_6,"[0.0005621559832073165, 0.0]","[-0.0005621407798373784, 0.0]","[0.00014088863125406262, 0.0]","[-0.00014088575910378798, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_5_LVCableDist_mvgd_0_lvgd_1008_7,"[0.008449273723072723, -4.973799150320864e-14]","[-0.008446226885253934, 4.9737991503208755e-14]","[0.0021199142743975616, 1.9539925233400868e-14]","[-0.002118724753831107, -1.9539925233400827e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_5_LVStation_mvgd_0_lvgd_1008,"[0.009014895433555757, -5.684341886080939e-14]","[-0.009011429705886781, 5.684341886080953e-14]","[0.002262155966854717, 1.4210854715199773e-14]","[-0.0022608029068675547, -1.421085471519972e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_61_LVCableDist_mvgd_0_lvgd_1008_62,"[0.000562156069518418, 0.0]","[-0.0005621407796662611, 0.0]","[0.00014088864747451341, 0.0]","[-0.00014088575898641838, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_61_LVCableDist_mvgd_0_lvgd_1008_63,"[0.0016866907722019946, -1.7763568394003186e-14]","[-0.0016865686791319367, 1.7763568394003202e-14]","[0.00042274626300038514, 1.7763568393992833e-15]","[-0.0004226985964600264, -1.7763568393992788e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_63_LVCableDist_mvgd_0_lvgd_1008_64,"[0.0005621723852176827, 0.0]","[-0.0005621407796560786, 0.0]","[0.0001408917297584181, 0.0]","[-0.00014088575898201723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_63_LVCableDist_mvgd_0_lvgd_1008_65,"[0.0011243962944798601, -3.552713678800619e-15]","[-0.001124342029155809, 3.55271367880062e-15]","[0.00028180686493283386, -2.0616505292427175e-28]","[-0.00028178567912550074, 2.0632321776706666e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1008_65_LVCableDist_mvgd_0_lvgd_1008_66,"[0.0005621560733139415, 0.0]","[-0.0005621407796499965, 0.0]","[0.00014088864818866332, 0.0]","[-0.00014088575898046291, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_65_LVCableDist_mvgd_0_lvgd_1008_67,"[0.0005621859564190845, -1.065814103640155e-14]","[-0.0005621723893618454, 1.0658141036401556e-14]","[0.00014089702916040845, -5.329070518201549e-15]","[-0.00014089173242504802, 5.329070518201552e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_67_LVCableDist_mvgd_0_lvgd_1008_68,"[0.0005621723899424204, 0.0]","[-0.0005621407796528657, 0.0]","[0.00014089173064766932, 0.0]","[-0.00014088575897808594, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_69_LVCableDist_mvgd_0_lvgd_1008_70,"[0.0005621559832073165, 0.0]","[-0.0005621407798373784, 0.0]","[0.00014088863125406262, 0.0]","[-0.00014088575910378798, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_69_LVCableDist_mvgd_0_lvgd_1008_71,"[0.008449273723072723, -4.973799150320864e-14]","[-0.008446226885253934, 4.9737991503208755e-14]","[0.0021199142743975616, 1.9539925233400868e-14]","[-0.002118724753831107, -1.9539925233400827e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_69_LVStation_mvgd_0_lvgd_1008,"[0.009014895433555757, -5.684341886080939e-14]","[-0.009011429705886781, 5.684341886080953e-14]","[0.002262155966854717, 1.4210854715199773e-14]","[-0.0022608029068675547, -1.421085471519972e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_71_LVCableDist_mvgd_0_lvgd_1008_72,"[0.0005621722253191222, 0.0]","[-0.0005621407798109086, 0.0]","[0.00014089169962729179, 0.0]","[-0.00014088575908743653, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_71_LVCableDist_mvgd_0_lvgd_1008_73,"[0.007884054660347379, -5.3290705182009395e-14]","[-0.007881399893143582, 5.329070518200952e-14]","[0.0019778330529198387, 2.1316282072800945e-14]","[-0.00197679660123587, -2.13162820728009e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_73_LVCableDist_mvgd_0_lvgd_1008_74,"[0.0005621560050841393, 0.0]","[-0.0005621407797915523, 0.0]","[0.0001408886353663095, 0.0]","[-0.00014088575907450954, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_73_LVCableDist_mvgd_0_lvgd_1008_75,"[0.007319243888484715, -5.684341886081001e-14]","[-0.007316954311559093, 5.684341886081014e-14]","[0.0018359079645238166, 1.953992523340045e-14]","[-0.0018350140873293324, -1.9539925233400395e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_75_LVCableDist_mvgd_0_lvgd_1008_76,"[0.000562172267515683, 0.0]","[-0.0005621407797716689, 0.0]","[0.00014089170757968438, 0.0]","[-0.00014088575906083723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_75_LVCableDist_mvgd_0_lvgd_1008_77,"[0.006754782044507241, -6.039613253961062e-14]","[-0.0067528307621442995, 6.039613253961078e-14]","[0.0016941223783462373, 1.7763568393999933e-14]","[-0.0016933605752442263, -1.7763568393999873e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_77_LVCableDist_mvgd_0_lvgd_1008_78,"[0.0005621560239857112, 0.0]","[-0.0005621407797521002, 0.0]","[0.00014088863891924846, 0.0]","[-0.00014088575904919794, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_77_LVCableDist_mvgd_0_lvgd_1008_79,"[0.006190674738626606, -6.039613253961078e-14]","[-0.006189034802297067, 6.039613253961093e-14]","[0.0015524719348610117, 1.7763568393999873e-14]","[-0.0015518316848353512, -1.7763568393999816e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_79_LVCableDist_mvgd_0_lvgd_1008_80,"[0.0005621723035364476, 0.0]","[-0.0005621407797393906, 0.0]","[0.0001408917143669866, 0.0]","[-0.00014088575903716547, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_79_LVCableDist_mvgd_0_lvgd_1008_81,"[0.0056268624992710506, -6.039613253961074e-14]","[-0.005625506947299427, 6.039613253961089e-14]","[0.0014109399689576977, 1.4210854715199227e-14]","[-0.0014104107458598359, -1.4210854715199175e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_7_LVCableDist_mvgd_0_lvgd_1008_8,"[0.0005621722253191222, 0.0]","[-0.0005621407798109086, 0.0]","[0.00014089169962729179, 0.0]","[-0.00014088575908743653, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_7_LVCableDist_mvgd_0_lvgd_1008_9,"[0.007884054660347379, -5.3290705182009395e-14]","[-0.007881399893143582, 5.329070518200952e-14]","[0.0019778330529198387, 2.1316282072800945e-14]","[-0.00197679660123587, -2.13162820728009e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_81_LVCableDist_mvgd_0_lvgd_1008_82,"[0.0005621560398947015, 0.0]","[-0.0005621407797203545, 0.0]","[0.00014088864190755086, 0.0]","[-0.00014088575902605025, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_81_LVCableDist_mvgd_0_lvgd_1008_83,"[0.005063350907906172, -4.2632564145607904e-14]","[-0.0050622527341529135, 4.2632564145607974e-14]","[0.0012695221023935662, 1.4210854715200118e-14]","[-0.0012690933627156654, -1.4210854715200088e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_83_LVCableDist_mvgd_0_lvgd_1008_84,"[0.0005621723333413492, 0.0]","[-0.0005621407797095804, 0.0]","[0.0001408917199833946, 0.0]","[-0.00014088575901733782, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_83_LVCableDist_mvgd_0_lvgd_1008_85,"[0.004500080401340158, -3.1974423109205985e-14]","[-0.004499212588773886, 3.197442310920602e-14]","[0.0011282016411300077, 1.0658141036400067e-14]","[-0.0011278628371119395, -1.0658141036400047e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_85_LVCableDist_mvgd_0_lvgd_1008_86,"[0.0005621560527990537, 0.0]","[-0.0005621407797000049, 0.0]","[0.0001408886443316517, 0.0]","[-0.00014088575900847629, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_85_LVCableDist_mvgd_0_lvgd_1008_87,"[0.0039370565365034966, -2.8421709430405617e-14]","[-0.003936392032030721, 2.8421709430405655e-14]","[0.0009869741911415462, 1.4210854715200847e-14]","[-0.0009867147609441157, -1.4210854715200836e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1008_87_LVCableDist_mvgd_0_lvgd_1008_88,"[0.0005621723569064059, 0.0]","[-0.0005621407796877604, 0.0]","[0.00014089172442362992, 0.0]","[-0.00014088575900164958, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_87_LVCableDist_mvgd_0_lvgd_1008_89,"[0.003374219675666724, -2.842170943040526e-14]","[-0.003373731417574686, 2.842170943040529e-14]","[0.0008458230348446853, 7.1054273575996206e-15]","[-0.0008456324132636362, -7.105427357599608e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_89_LVCableDist_mvgd_0_lvgd_1008_90,"[0.0005621560626792744, 0.0]","[-0.0005621407796843518, 0.0]","[0.00014088864618776048, 0.0]","[-0.0001408857589951024, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_89_LVCableDist_mvgd_0_lvgd_1008_91,"[0.002811575355479239, -2.4868995751604475e-14]","[-0.0028112362544374884, 2.4868995751604497e-14]","[0.0007047437653704123, 3.5527136787991985e-15]","[-0.0007046113764192247, -3.55271367879919e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_91_LVCableDist_mvgd_0_lvgd_1008_92,"[0.0005621723742000292, 0.0]","[-0.0005621407796657123, 0.0]","[0.00014089172768335149, 0.0]","[-0.00014088575899017463, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_91_LVCableDist_mvgd_0_lvgd_1008_93,"[0.0022490638807893173, -2.4868995751604396e-14]","[-0.002248846841135122, 2.486899575160442e-14]","[0.0005637196470036993, 1.7763568393988828e-15]","[-0.0005636349122236566, -1.7763568393988731e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_93_LVCableDist_mvgd_0_lvgd_1008_94,"[0.000562156069518418, 0.0]","[-0.0005621407796662611, 0.0]","[0.00014088864747451341, 0.0]","[-0.00014088575898641838, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_93_LVCableDist_mvgd_0_lvgd_1008_95,"[0.0016866907722019946, -1.7763568394003186e-14]","[-0.0016865686791319367, 1.7763568394003202e-14]","[0.00042274626300038514, 1.7763568393992833e-15]","[-0.0004226985964600264, -1.7763568393992788e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1008_95_LVCableDist_mvgd_0_lvgd_1008_96,"[0.0005621723852176827, 0.0]","[-0.0005621407796560786, 0.0]","[0.0001408917297584181, 0.0]","[-0.00014088575898201723, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_95_LVCableDist_mvgd_0_lvgd_1008_97,"[0.0011243962944798601, -3.552713678800619e-15]","[-0.001124342029155809, 3.55271367880062e-15]","[0.00028180686493283386, -2.0616505292427175e-28]","[-0.00028178567912550074, 2.0632321776706666e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1008_97_LVCableDist_mvgd_0_lvgd_1008_98,"[0.0005621560733139415, 0.0]","[-0.0005621407796499965, 0.0]","[0.00014088864818866332, 0.0]","[-0.00014088575898046291, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1008_97_LVCableDist_mvgd_0_lvgd_1008_99,"[0.0005621859564190845, -1.065814103640155e-14]","[-0.0005621723893618454, 1.0658141036401556e-14]","[0.00014089702916040845, -5.329070518201549e-15]","[-0.00014089173242504802, 5.329070518201552e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_10_LVCableDist_mvgd_0_lvgd_1009_9,"[0.002422304928218809, 0.0]","[-0.0024220164182068597, 0.0]","[0.0006070690324638409, 0.0]","[-0.0006070145284878527, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_11_LVCableDist_mvgd_0_lvgd_1009_12,"[0.002422615593192497, 0.0]","[-0.002422016416615493, 0.0]","[0.000607127721111501, 0.0]","[-0.0006070145274460711, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_11_LVCableDist_mvgd_0_lvgd_1009_13,"[0.07185474546169736, -1.5631940186723042e-13]","[-0.07169849228005394, 1.5631940186723105e-13]","[0.018231742597345366, -3.019806626981614e-14]","[-0.01817073955609631, 3.0198066269816394e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_11_LVCableDist_mvgd_0_lvgd_1009_9,"[0.07444432005480228, -1.5631940186722977e-13]","[-0.07427736106489627, 1.5631940186723042e-13]","[0.018904053001143773, -3.0198066269815876e-14]","[-0.018838870289079837, 3.019806626981614e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_13_LVCableDist_mvgd_0_lvgd_1009_14,"[0.002422307572625251, 0.0]","[-0.002422016415069132, 0.0]","[0.0006070695305345957, 0.0]","[-0.0006070145263968181, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_13_LVCableDist_mvgd_0_lvgd_1009_15,"[0.06927618469783332, -1.3500311979442656e-13]","[-0.06913030423943152, 1.3500311979442706e-13]","[0.01756367005414733, -3.0198066269815024e-14]","[-0.017506716643485746, 3.0198066269815214e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_15_LVCableDist_mvgd_0_lvgd_1009_16,"[0.0024226209183353495, 0.0]","[-0.0024220164132747303, 0.0]","[0.0006071287255216742, 0.0]","[-0.0006070145252237845, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_15_LVCableDist_mvgd_0_lvgd_1009_17,"[0.06670768331205199, -1.350031197944274e-13]","[-0.06657184205968518, 1.3500311979442792e-13]","[0.016899587945244512, -2.486899575161407e-14]","[-0.016846553956212748, 2.486899575161426e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_17_LVCableDist_mvgd_0_lvgd_1009_18,"[0.002422310073756573, 0.0]","[-0.0024220164115564967, 0.0]","[0.0006070700013655419, 0.0]","[-0.0006070145240620214, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_17_LVCableDist_mvgd_0_lvgd_1009_19,"[0.0641495319775786, -1.2789769243682624e-13]","[-0.0640233908916767, 1.278976924368267e-13]","[0.016239483980458214, -2.6645352591014186e-14]","[-0.01619023704810432, 2.6645352591014378e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_19_LVCableDist_mvgd_0_lvgd_1009_20,"[0.0024226259402897452, 0.0]","[-0.002422016409584714, 0.0]","[0.0006071296724914107, 0.0]","[-0.0006070145227720418, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_19_LVCableDist_mvgd_0_lvgd_1009_21,"[0.061600764943903014, -1.3500311979442853e-13]","[-0.061483984564859914, 1.3500311979442898e-13]","[0.015583107399016066, -2.3092638912214054e-14]","[-0.0155375149944012, 2.3092638912214228e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_1_LVCableDist_mvgd_0_lvgd_1009_2,"[0.00242230104679878, 0.0]","[-0.0024220164219718753, 0.0]","[0.0006070683009959745, 0.0]","[-0.0006070145309911608, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_1_LVCableDist_mvgd_0_lvgd_1009_3,"[0.0024233021794438075, -2.6908020409482786e-29]","[-0.0024226051390440415, 2.6916924766907486e-29]","[0.0006073978903424347, 4.440892098500844e-16]","[-0.0006071257577444809, -4.440892098500844e-16]" +Branch_LVCableDist_mvgd_0_lvgd_1009_1_LVStation_mvgd_0_lvgd_1009,"[0.004848390212070172, -5.329070518201009e-15]","[-0.004845603223556503, 5.329070518201013e-15]","[0.0012155542720120485, -3.2161734793218475e-28]","[-0.001214466199606278, 3.2289624491379343e-28]" +Branch_LVCableDist_mvgd_0_lvgd_1009_21_LVCableDist_mvgd_0_lvgd_1009_22,"[0.0024223124246085703, 0.0]","[-0.0024220164077385473, 0.0]","[0.0006070704436556991, 0.0]","[-0.0006070145215188318, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_21_LVCableDist_mvgd_0_lvgd_1009_23,"[0.059061672133718025, -9.237055564881957e-14]","[-0.0589539077983053, 9.237055564881981e-14]","[0.014930444571597288, -1.9539925233410584e-14]","[-0.014888372134228547, 1.9539925233410675e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_23_LVCableDist_mvgd_0_lvgd_1009_24,"[0.002422630644791215, 0.0]","[-0.002422016405615097, 0.0]","[0.0006071305593569289, 0.0]","[-0.0006070145201349972, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_23_LVCableDist_mvgd_0_lvgd_1009_25,"[0.05653127714808704, -1.2079226507922632e-13]","[-0.0564321837887104, 1.2079226507922667e-13]","[0.01428124159265585, -1.9539925233412587e-14]","[-0.014242554404171227, 1.9539925233412723e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_25_LVCableDist_mvgd_0_lvgd_1009_26,"[0.0024223146184752208, 0.0]","[-0.0024220164036855094, 0.0]","[0.0006070708561758867, 0.0]","[-0.0006070145188182056, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_25_LVCableDist_mvgd_0_lvgd_1009_27,"[0.05400986916603641, -1.0658141036402326e-13]","[-0.05391909684753784, 1.0658141036402357e-13]","[0.013635483562422852, -2.1316282072812172e-14]","[-0.01360004500410743, 2.13162820728123e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_27_LVCableDist_mvgd_0_lvgd_1009_28,"[0.0024226350182386075, 0.0]","[-0.002422016401439032, 0.0]","[0.0006071313835859708, 0.0]","[-0.0006070145173636787, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_27_LVCableDist_mvgd_0_lvgd_1009_29,"[0.051496461826440416, -1.1368683772162537e-13]","[-0.05141366022837884, 1.1368683772162572e-13]","[0.012992913631101985, -1.9539925233412373e-14]","[-0.012960586933821894, 1.9539925233412502e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_29_LVCableDist_mvgd_0_lvgd_1009_30,"[0.002422316648979456, 0.0]","[-0.002422016399456149, 0.0]","[0.0006070712377617099, 0.0]","[-0.0006070145160115763, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_29_LVCableDist_mvgd_0_lvgd_1009_31,"[0.04899134357794205, -1.136868377216251e-13]","[-0.04891615786487169, 1.1368683772162545e-13]","[0.012353515702598069, -2.8421709430414616e-14]","[-0.01232416233450962, 2.842170943041475e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_31_LVCableDist_mvgd_0_lvgd_1009_32,"[0.002422639047800815, 0.0]","[-0.0024220163971522086, 0.0]","[0.0006071321427967416, 0.0]","[-0.0006070145145183625, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_31_LVCableDist_mvgd_0_lvgd_1009_33,"[0.046493518817160885, -1.0658141036402374e-13]","[-0.04642559379070878, 1.0658141036402405e-13]","[0.011717030193761005, -2.8421709430414256e-14]","[-0.011690511481329555, 2.842170943041438e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_33_LVCableDist_mvgd_0_lvgd_1009_34,"[0.0024223185101923178, 0.0]","[-0.0024220163951751295, 0.0]","[0.0006070715873338639, 0.0]","[-0.0006070145131632614, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_33_LVCableDist_mvgd_0_lvgd_1009_35,"[0.044003275282129536, -9.237055564882058e-14]","[-0.04394225159704232, 9.237055564882081e-14]","[0.01108343989145801, -2.842170943041339e-14]","[-0.011059615542159064, 2.842170943041348e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_35_LVCableDist_mvgd_0_lvgd_1009_36,"[0.0024226427214778254, 0.0]","[-0.002422016392848948, 0.0]","[0.0006071328347697081, 0.0]","[-0.0006070145116643213, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_35_LVCableDist_mvgd_0_lvgd_1009_37,"[0.041519608878838946, -9.237055564882081e-14]","[-0.041465126852394514, 9.237055564882106e-14]","[0.010452482699884622, -2.842170943041348e-14]","[-0.010431212289441997, 2.8421709430413575e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_37_LVCableDist_mvgd_0_lvgd_1009_38,"[0.002422320196568693, 0.0]","[-0.0024220163909285408, 0.0]","[0.0006070719038962186, 0.0]","[-0.0006070145103409515, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_37_LVCableDist_mvgd_0_lvgd_1009_39,"[0.039042806660716606, -8.526512829121942e-14]","[-0.03899450284595386, 8.526512829121962e-14]","[0.009824140373103186, -2.6645352591012633e-14]","[-0.00980528200763846, 2.6645352591012712e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_39_LVCableDist_mvgd_0_lvgd_1009_40,"[0.0024226460281934863, 0.0]","[-0.0024220163886336968, 0.0]","[0.0006071334574626647, 0.0]","[-0.0006070145088715354, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_39_LVCableDist_mvgd_0_lvgd_1009_41,"[0.03657185682432384, -7.81597009336182e-14]","[-0.03652936746517315, 7.815970093361837e-14]","[0.009198148532504785, -2.131628207281087e-14]","[-0.009181560197459993, 2.1316282072810935e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_3_LVCableDist_mvgd_0_lvgd_1009_4,"[0.002422605141826641, 0.0]","[-0.0024220164218430786, 0.0]","[0.0006071257491672946, 0.0]","[-0.0006070145309130959, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_41_LVCableDist_mvgd_0_lvgd_1009_42,"[0.0024223217030372238, 0.0]","[-0.002422016386815578, 0.0]","[0.000607072186540985, 0.0]","[-0.0006070145076136541, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_41_LVCableDist_mvgd_0_lvgd_1009_43,"[0.03410704577035265, -7.815970093361849e-14]","[-0.03407000374250779, 7.815970093361866e-14]","[0.008574487988162368, -1.9539925233410483e-14]","[-0.008560026353981212, 1.953992523341055e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_43_LVCableDist_mvgd_0_lvgd_1009_44,"[0.0024226489578695626, 0.0]","[-0.0024220163846184264, 0.0]","[0.0006071340090223994, 0.0]","[-0.0006070145062118807, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_43_LVCableDist_mvgd_0_lvgd_1009_45,"[0.03164735479449345, -6.394884621841526e-14]","[-0.031615392695571856, 6.394884621841538e-14]","[0.00795289231691913, -1.598721155460863e-14]","[-0.0079404139454811, 1.5987211554608672e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_45_LVCableDist_mvgd_0_lvgd_1009_46,"[0.002422323025049742, 0.0]","[-0.0024220163829622105, 0.0]","[0.0006070724344605119, 0.0]","[-0.000607014505056735, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_45_LVCableDist_mvgd_0_lvgd_1009_47,"[0.02919306968198414, -5.684341886081354e-14]","[-0.02916581714947278, 5.684341886081364e-14]","[0.007333341477987573, -1.5987211554608167e-14]","[-0.0073227017755031435, 1.598721155460821e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_47_LVCableDist_mvgd_0_lvgd_1009_48,"[0.0024226515014802185, 0.0]","[-0.0024220163809060185, 0.0]","[0.0006071344877937358, 0.0]","[-0.000607014503754735, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_47_LVCableDist_mvgd_0_lvgd_1009_49,"[0.026743165661025543, -7.105427357601747e-14]","[-0.026720252087782337, 7.105427357601758e-14]","[0.006715567249579826, -1.421085471520876e-14]","[-0.006706621526753465, 1.4210854715208807e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_49_LVCableDist_mvgd_0_lvgd_1009_50,"[0.002422324158551284, 0.0]","[-0.0024220163794583427, 0.0]","[0.0006070726469343344, 0.0]","[-0.0006070145027327588, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_49_LVCableDist_mvgd_0_lvgd_1009_51,"[0.024297927943711113, -4.263256414561078e-14]","[-0.024278980181322532, 4.263256414561083e-14]","[0.00609954883699752, -5.3290705182044464e-15]","[-0.006092151412392075, 5.329070518204467e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_51_LVCableDist_mvgd_0_lvgd_1009_52,"[0.00242265365113031, 0.0]","[-0.002422016377603842, 0.0]","[0.00060713489233346, 0.0]","[-0.0006070145015686824, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_51_LVCableDist_mvgd_0_lvgd_1009_53,"[0.0218563265461145, -7.105427357601793e-14]","[-0.021840971237118974, 7.105427357601806e-14]","[0.005485016472556457, -1.0658141036407913e-14]","[-0.005479021583120004, 1.0658141036407964e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_53_LVCableDist_mvgd_0_lvgd_1009_54,"[0.0024223251000666025, 0.0]","[-0.0024220163764147318, 0.0]","[0.0006070728233553859, 0.0]","[-0.0006070145007121096, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_53_LVCableDist_mvgd_0_lvgd_1009_55,"[0.01941864615426366, -4.973799150321266e-14]","[-0.019406507828104658, 4.9737991503212724e-14]","[0.0048719487081047615, -7.105427357605481e-15]","[-0.004867209765808779, 7.105427357605505e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_55_LVCableDist_mvgd_0_lvgd_1009_56,"[0.002422655400082354, 0.0]","[-0.0024220163747932432, 0.0]","[0.0006071352214120521, 0.0]","[-0.0006070144997123847, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_55_LVCableDist_mvgd_0_lvgd_1009_57,"[0.01698385244643885, -4.2632564145610965e-14]","[-0.01697455546092307, 4.2632564145611016e-14]","[0.00426007448866779, -5.329070518204516e-15]","[-0.0042564448384747764, 5.329070518204537e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_57_LVCableDist_mvgd_0_lvgd_1009_58,"[0.002422325846662402, 0.0]","[-0.0024220163738993368, 0.0]","[0.0006070729632092016, 0.0]","[-0.000607014499047306, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_57_LVCableDist_mvgd_0_lvgd_1009_59,"[0.01455222963371978, -2.842170943040709e-14]","[-0.014545396669543834, 2.842170943040711e-14]","[0.0036493718161119152, -7.105427357603976e-15]","[-0.003646704148221288, 7.105427357603985e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_59_LVCableDist_mvgd_0_lvgd_1009_60,"[0.0024226567428426386, 0.0]","[-0.002422016372566087, 0.0]","[0.0006071354740278758, 0.0]","[-0.0006070144982394069, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_59_LVCableDist_mvgd_0_lvgd_1009_61,"[0.012122739947125299, -2.84217094304075e-14]","[-0.012117993552267411, 2.842170943040751e-14]","[0.003039568611776844, -1.7763568394025543e-15]","[-0.00303771556457323, 1.7763568394025583e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_5_LVCableDist_mvgd_0_lvgd_1009_6,"[0.002422302147834301, 0.0]","[-0.002422016420938887, 0.0]","[0.000607068508508968, 0.0]","[-0.0006070145303064729, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_5_LVCableDist_mvgd_0_lvgd_1009_7,"[0.0796565789949343, -1.5631940186722823e-13]","[-0.07946722704344565, 1.563194018672289e-13]","[0.020261663967959066, -3.3750779948616093e-14]","[-0.0201877387858555, 3.3750779948616346e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_5_LVStation_mvgd_0_lvgd_1009,"[0.08227991371190227, -1.5631940186722757e-13]","[-0.08207888115305416, 1.5631940186722823e-13]","[0.020947217872879446, -3.375077994861583e-14]","[-0.020868732447169514, 3.3750779948616093e-14]" +Branch_LVCableDist_mvgd_0_lvgd_1009_61_LVCableDist_mvgd_0_lvgd_1009_62,"[0.0024223263960340465, 0.0]","[-0.0024220163720020953, 0.0]","[0.0006070730660928622, 0.0]","[-0.0006070144977878003, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_61_LVCableDist_mvgd_0_lvgd_1009_63,"[0.009695667177452055, 7.105427357602171e-15]","[-0.009692628665001955, -7.105427357602171e-15]","[0.002430642433537476, -3.552713678800435e-15]","[-0.0024294561632908175, 3.552713678800436e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_63_LVCableDist_mvgd_0_lvgd_1009_64,"[0.0024226576751594877, 0.0]","[-0.0024220163709820683, 0.0]","[0.0006071356494094197, 0.0]","[-0.0006070144971927216, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_63_LVCableDist_mvgd_0_lvgd_1009_65,"[0.007269971011717431, 2.596950488290314e-28]","[-0.007268261602133138, -2.594156733796195e-28]","[0.0018223204466193258, -3.552713678800955e-15]","[-0.0018216530734350787, 3.552713678800955e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_65_LVCableDist_mvgd_0_lvgd_1009_66,"[0.0024223267464466925, 0.0]","[-0.0024220163707584495, 0.0]","[0.0006070731317051017, 0.0]","[-0.0006070144969667609, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_65_LVCableDist_mvgd_0_lvgd_1009_67,"[0.004845934878035318, 7.105427357601781e-15]","[-0.004845175003722386, -7.10542735760178e-15]","[0.0012145798729620192, 1.7763568394009963e-15]","[-0.001214283209280881, -1.776356839400996e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_67_LVCableDist_mvgd_0_lvgd_1009_68,"[0.002422658194070001, 0.0]","[-0.002422016370083584, 0.0]","[0.0006071357470164812, 0.0]","[-0.0006070144965998736, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_67_LVCableDist_mvgd_0_lvgd_1009_69,"[0.00242251683235245, -1.2968501906804023e-28]","[-0.0024223268739882245, 1.2974345411950853e-28]","[0.0006071473922375917, 1.7763568394004773e-15]","[-0.0006070732303049734, -1.7763568394004773e-15]" +Branch_LVCableDist_mvgd_0_lvgd_1009_69_LVCableDist_mvgd_0_lvgd_1009_70,"[0.0024223268968196873, 0.0]","[-0.0024220163702206084, 0.0]","[0.0006070731598598109, 0.0]","[-0.0006070144966120936, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_7_LVCableDist_mvgd_0_lvgd_1009_8,"[0.0024226099797332165, 0.0]","[-0.002422016419574543, 0.0]","[0.0006071266620478965, 0.0]","[-0.0006070145294102201, 0.0]" +Branch_LVCableDist_mvgd_0_lvgd_1009_7_LVCableDist_mvgd_0_lvgd_1009_9,"[0.07704461705337412, -1.563194018672289e-13]","[-0.07686662499327339, 1.5631940186722956e-13]","[0.019580612153527136, -3.3750779948616346e-14]","[-0.019511122003821837, 3.37507799486166e-14]" diff --git a/tests/grid/test_grid.py b/tests/grid/test_grid.py new file mode 100644 index 00000000..d7a2158e --- /dev/null +++ b/tests/grid/test_grid.py @@ -0,0 +1,62 @@ +from tests.core.network.test_grids import TestMVGridDing0 +from ding0.grid.mv_grid import mv_connect +from networkx.readwrite.graphml import read_graphml +import networkx as nx +from networkx.algorithms.isomorphism import categorical_edge_match, numerical_edge_match +import os +import numbers + + +def test_mv_connect_generators(): + """Test connection of MV generators + + Verifies that lines are chosen and connected correctly by testing the + graph's isomorphism. This include the lines attributes. + """ + + # Ding0's first steps + nd, mv_grid, lv_stations = \ + TestMVGridDing0().minimal_unrouted_testgrid() + nd.mv_routing() + graph = mv_connect.mv_connect_generators( + nd._mv_grid_districts[0], + nd._mv_grid_districts[0].mv_grid._graph) + + # Reorganize edges attributes + edges = nx.get_edge_attributes(graph, 'branch') + for k, v in edges.items(): + edge_attrs = v.__dict__ + edge_attrs.update(**edge_attrs["type"].to_dict()) + for kk in ["type", "ring", "branch", "circuit_breaker", "grid"]: + edge_attrs.pop(kk, None) + edge_attrs = {k1: v1 for k1, v1 in edge_attrs.items() if v1} + edges[k] = edge_attrs + edges[k].pop("branch", None) + for n1, n2, d in graph.edges(data=True): + d.pop("branch", None) + nx.set_edge_attributes(graph, edges) + + expected_file_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "test_data")) + + # Snippet to export new comparison graph: + # graph_new = nx.Graph() + # graph_new.add_nodes_from([repr(n) for n in graph.nodes()]) + # for n1, n2, a in graph.edges(data=True): + # a['grid'] = repr(a['grid']) + # graph_new.add_edge(repr(n1), repr(n2), **a) + # nx.write_graphml(graph_new, os.path.join(expected_file_path, "grid_mv_connect_generators_expected.graphml")) + + # Get comparison data (expected) and compare all attributes + expected_graph = read_graphml(os.path.join( + expected_file_path, + "grid_mv_connect_generators_expected.graphml")) + + # distinct categorical and numeric attrs + edge_attrs_num = [a for a in edge_attrs if isinstance(list(edges.values())[0].get(a, None), numbers.Number)] + edge_attrs_cat = [a for a in edge_attrs if a not in edge_attrs_num] + + em_cat = categorical_edge_match(edge_attrs_cat, [0] * len(edge_attrs_cat)) + em_num = numerical_edge_match(edge_attrs_num, [0] * len(edge_attrs_num), rtol=1e-3) + + assert nx.is_isomorphic(graph, expected_graph, edge_match=em_cat) + assert nx.is_isomorphic(graph, expected_graph, edge_match=em_num) diff --git a/tests/test_data/grid_mv_connect_generators_expected.graphml b/tests/test_data/grid_mv_connect_generators_expected.graphml new file mode 100644 index 00000000..35b8d96c --- /dev/null +++ b/tests/test_data/grid_mv_connect_generators_expected.graphml @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mv_grid_0 + 13778.978047867522 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 38339.02005888106 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 44574.65321549841 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 5513.896144897531 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 16078.003272121707 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 21538.994758563163 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 13778.978047867522 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 38339.02005888106 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 44574.65321549841 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 5516.969009803307 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 16082.219207948681 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 16088.536598926754 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 5513.896144897531 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 11693.483853825253 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 11673.919910575649 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 11699.99999654535 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 18508.076227984075 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 11726.038724984652 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 11699.999996564226 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2727.17127371167 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 5530.773027601033 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2764.7162362310705 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 3899.9999997158393 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2762.3092302135738 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2752.3911923495984 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 5524.644437298107 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2794.40470952057 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 2773.784479525642 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + mv_grid_0 + 1 + line + 48-AL1/8-ST1A + 20 + 210 + 0.37 + 1.18 + 0.0098 + + + diff --git a/tests/test_data/lvgd_stats_460.csv b/tests/test_data/lvgd_stats_460.csv new file mode 100644 index 00000000..217493f2 --- /dev/null +++ b/tests/test_data/lvgd_stats_460.csv @@ -0,0 +1,190 @@ +LV_grid_id,Accum. Consumption Agricultural,Accum. Consumption Industrial,Accum. Consumption Residential,Accum. Consumption Retail,Accumulated s_max_a in MVLV trafos,Area,Gen. Cap. type run_of_river/hydro,Gen. Cap. type solar/solar_ground_mounted,Gen. Cap. type solar/solar_roof_mounted,Gen. Cap. type wind/wind_onshore,Gen. Cap. v_level 6,Gen. Cap. v_level 7,Length Type NAYY 4x1x120,Length Type NAYY 4x1x150,Length Type NAYY 4x1x185,Length Type NAYY 4x1x240,Length Type NAYY 4x1x300,Length Type NAYY 4x1x35,Length Type NAYY 4x1x50,Length Type NAYY 4x1x95,Length of overhead lines,Length of underground cables,Load Area ID,Load Area is Aggregated,Load Area is Satellite,MV_grid_id,Number of MV/LV Trafos,Number of Sector Agricultural,Number of Sector Industrial,Number of Sector Residential,Number of Sector Retail,Number of branches Type NAYY 4x1x120,Number of branches Type NAYY 4x1x150,Number of branches Type NAYY 4x1x185,Number of branches Type NAYY 4x1x240,Number of branches Type NAYY 4x1x300,Number of branches Type NAYY 4x1x35,Number of branches Type NAYY 4x1x50,Number of branches Type NAYY 4x1x95,Number of branches from LV Station,Number of branches overhead lines,Number of branches underground cables,Number of loads agricultural,Number of loads mixed industrial/retail,Number of loads residential,Peak Load Agricultural,Peak Load Industrial,Peak Load Residential,Peak Load Retail,Population +127329,0.0,0.0,421824.784956536,0.0,100.0,101083.13689251352,0.0,0.0,16.872,0.0,0.0,16.872,0.0,1.3260000000000007,0.0,0.0,0.0,0.002,1.647999999999995,0.0,0.0,2.9759999999999898,83084,False,False,460,1.0,0,0,1,0,0.0,69.0,0.0,0.0,0.0,2.0,138.0,0.0,2,0.0,209.0,0.0,0.0,69.0,0.0,0.0,90.1523930409108,0.0,239 +127330,0.0,0.0,303572.648587967,0.0,100.0,69021.81288801186,0.0,0.0,54.10999999999999,0.0,0.0,54.10999999999999,0.0,1.3339999999999992,0.0,0.0,0.0,0.007,1.1999999999999988,0.0,0.0,2.5409999999999937,83084,False,False,460,1.0,0,0,1,0,0.0,50.0,0.0,0.0,0.0,7.0,100.0,0.0,3,0.0,157.0,0.0,0.0,50.0,0.0,0.0,64.8795464562204,0.0,172 +127331,0.0,0.0,277098.289699482,0.0,100.0,139905.52482063533,0.0,0.0,81.03,0.0,0.0,81.03,0.0,1.1540000000000001,0.0,0.0,0.0,0.005,1.072,0.0,0.0,2.2309999999999937,83084,False,False,460,1.0,0,0,1,0,0.0,45.0,0.0,0.0,0.0,5.0,90.0,0.0,3,0.0,140.0,0.0,0.0,45.0,0.0,0.0,59.2214464745732,0.0,157 +127332,0.0,0.0,356521.366364938,0.0,250.0,153018.23261877385,0.0,0.0,209.08,0.0,0.0,209.08,0.22999999999999998,1.5620000000000003,0.0,0.6600000000000003,0.0,0.017000000000000008,0.9950000000000007,0.184,0.0,3.6480000000000006,83084,False,False,460,1.0,0,0,3,0,10.0,26.0,0.0,33.0,0.0,17.0,101.0,8.0,8,0.0,195.0,0.0,0.0,59.0,0.0,0.0,76.1957464195146,0.0,202 +127333,0.0,0.0,206499.999330187,0.0,100.0,119471.30221244661,0.0,0.0,56.91,0.0,0.0,56.91,0.0,0.8700000000000006,0.0,0.0,0.0,0.003,0.8160000000000005,0.0,0.0,1.688999999999996,83084,False,False,460,1.0,0,0,1,0,0.0,34.0,0.0,0.0,0.0,3.0,68.0,0.0,3,0.0,105.0,0.0,0.0,34.0,0.0,0.0,44.1331798568476,0.0,117 +131197,447544.193626398,0.0,93542.7347393155,0.0,160.0,80195.43922371013,0.0,0.0,56.36,0.0,0.0,56.36,0.0,0.9339999999999999,0.0,0.26666666666666666,0.0,0.005,0.3900000000000001,0.031,0.0,1.6266666666666663,84688,False,False,460,1.0,1,0,2,0,0.0,15.0,0.0,1.0,0.0,5.0,30.0,2.0,4,0.0,53.0,1.0,0.0,15.0,107.571722380041,0.0,19.9919532684865,0.0,53 +131198,0.0,0.0,349461.537328009,0.0,100.0,106517.6536442367,0.0,0.0,44.19,0.0,0.0,44.19,0.0,0.7530000000000004,0.5250000000000001,0.0,0.0,0.003,1.3449999999999978,0.015,0.0,2.640999999999993,84688,False,False,460,1.0,0,0,1,0,0.0,32.0,25.0,0.0,0.0,3.0,113.0,1.0,3,0.0,174.0,0.0,0.0,57.0,0.0,0.0,74.686919757742,0.0,198 +131199,606163.130645652,0.0,93542.7347393155,0.0,250.0,98769.83307942639,0.0,0.0,63.99,0.0,0.0,63.99,0.0,0.9339999999999999,0.0,0.4,0.0,0.066,0.39,0.0,0.0,1.789999999999999,84688,False,False,460,1.0,2,0,2,0,0.0,15.0,0.0,2.0,0.0,8.0,30.0,0.0,4,0.0,55.0,2.0,0.0,15.0,145.697370081989,0.0,19.9919532684865,0.0,53 +131205,0.0,0.0,335341.87925415,0.0,100.0,79326.9217032619,0.0,0.0,14.436,0.0,0.0,14.436,0.0,1.9679999999999978,0.0,0.0,0.0,0.003,1.3119999999999978,0.0,0.0,3.282999999999999,84692,False,True,460,1.0,0,0,1,0,0.0,55.0,0.0,0.0,0.0,3.0,110.0,0.0,6,0.0,168.0,0.0,0.0,55.0,0.0,0.0,71.6692664341969,0.0,190 +131206,0.0,0.0,120017.093627801,0.0,100.0,45330.994938285585,0.0,0.0,58.29,0.0,0.0,58.29,0.186,0.27599999999999997,0.0,0.168,0.5459999999999999,0.004,0.242,0.069,0.0,1.4909999999999994,84692,False,True,460,1.0,0,0,1,0,7.0,4.0,0.0,4.0,13.0,4.0,29.0,3.0,2,0.0,64.0,0.0,0.0,20.0,0.0,0.0,25.6500532501336,0.0,68 +131444,0.0,0.0,245329.059033299,0.0,100.0,154093.57604805686,0.0,0.0,58.26500000000001,0.0,0.0,58.26500000000001,0.015,0.564,0.10500000000000001,0.48300000000000015,0.0,0.007,0.6530000000000004,0.29200000000000004,0.0,2.1189999999999944,84827,False,True,460,1.0,0,0,1,0,1.0,12.0,5.0,23.0,0.0,7.0,67.0,12.0,3,0.0,127.0,0.0,0.0,40.0,0.0,0.0,52.4317264965967,0.0,139 +131520,0.0,0.0,421824.784956536,0.0,100.0,112265.94996274498,0.0,0.0,73.16999999999999,0.0,0.0,73.16999999999999,0.0,1.3260000000000007,0.0,0.0,0.0,0.004,1.647999999999995,0.0,0.0,2.9779999999999895,84876,False,False,460,1.0,0,0,2,0,0.0,69.0,0.0,0.0,0.0,4.0,138.0,0.0,2,0.0,211.0,0.0,0.0,69.0,0.0,0.0,90.1523930409108,0.0,239 +131521,0.0,0.0,443004.272067324,0.0,100.0,138352.3775688897,0.0,0.0,58.37,0.0,0.0,58.37,0.0,1.8380000000000012,0.0,0.0,0.0,0.008,1.7279999999999944,0.0,0.0,3.5739999999999976,84876,False,False,460,1.0,0,0,1,0,0.0,73.0,0.0,0.0,0.0,8.0,146.0,0.0,5,0.0,227.0,0.0,0.0,73.0,0.0,0.0,94.6788730262285,0.0,251 +131522,0.0,0.0,365346.1526611,0.0,100.0,129556.9974892488,0.0,0.0,44.69500000000001,0.0,0.0,44.69500000000001,0.0,1.9559999999999977,0.0,0.0,0.0,0.007,1.4399999999999968,0.0,0.0,3.4029999999999943,84876,False,False,460,1.0,0,0,1,0,0.0,60.0,0.0,0.0,0.0,7.0,120.0,0.0,5,0.0,187.0,0.0,0.0,60.0,0.0,0.0,78.0817797467303,0.0,207 +131523,0.0,630904.492613883,469478.63095581,0.0,250.0,158945.08963597624,0.0,0.0,35.92,0.0,0.0,35.92,0.0,2.4090000000000003,0.0,0.0,0.1142857142857143,0.069,1.8399999999999934,0.0,0.0,4.4322857142857135,84876,False,False,460,1.0,0,2,1,0,0.0,77.0,0.0,0.0,2.0,11.0,154.0,0.0,7,0.0,244.0,0.0,2.0,77.0,0.0,83.2793930250325,100.336973007876,0.0,266 +131524,238029.742597406,0.0,319457.263921059,0.0,160.0,104778.64590991288,0.0,0.0,103.92500000000001,0.0,0.0,103.92500000000001,0.0,1.380000000000001,0.0,0.16,0.0,0.037,1.2639999999999982,0.0,0.0,2.8409999999999975,84876,False,False,460,1.0,1,0,1,0,0.0,53.0,0.0,1.0,0.0,8.0,106.0,0.0,4,0.0,168.0,1.0,0.0,53.0,57.2128289307125,0.0,68.2744064452086,0.0,181 +131525,1994249.87202549,1147600.91562793,24709.4016292531,0.0,800.0,80938.17363617974,0.0,0.0,179.32,0.0,120.25,59.07000000000001,0.003,1.6019999999999999,0.0,0.2,0.0,0.066,0.10600000000000001,0.14646242629993128,0.0,2.1234624262999313,84876,False,False,460,1.0,3,2,2,0,3.0,10.0,0.0,2.0,0.0,8.0,8.0,1.0,7,0.0,32.0,3.0,2.0,4.0,479.337899240047,151.483320862887,5.28089331620398,0.0,14 +131542,189778.215308819,0.0,372405.981698029,0.0,160.0,114710.87162013889,0.0,0.0,138.9,0.0,0.0,138.9,0.046,0.9420000000000004,0.6440000000000003,0.0,0.8522857142857146,0.042,0.6280000000000003,0.046,0.0,3.200285714285706,84889,False,False,460,1.0,1,0,1,0,2.0,24.0,28.0,0.0,42.0,13.0,86.0,2.0,5,0.0,197.0,1.0,0.0,61.0,45.6150918316278,0.0,79.5906064085029,0.0,211 +131543,0.0,0.0,164141.02510861,0.0,100.0,51079.15951427592,0.0,0.0,2.0,0.0,0.0,2.0,0.0,1.1860000000000006,0.0,0.0,0.0,0.001,0.7080000000000003,0.0,0.0,1.894999999999999,84889,False,False,460,1.0,0,0,1,0,0.0,27.0,0.0,0.0,0.0,1.0,54.0,0.0,2,0.0,82.0,0.0,0.0,27.0,0.0,0.0,35.0802198862122,0.0,93 +131544,178987.563060421,0.0,598320.510879773,0.0,250.0,178139.41318269374,0.0,0.0,154.84,0.0,0.0,154.84,0.0,0.0,1.7719999999999976,0.0,0.1142857142857143,0.5840000000000003,0.6310000000000003,0.0,0.0,3.1012857142857038,84889,False,False,460,1.0,1,0,1,0,0.0,0.0,98.0,0.0,1.0,104.0,102.0,0.0,7,0.0,305.0,1.0,0.0,98.0,43.0214506572028,0.0,127.873059585225,0.0,339 +131551,329183.615085813,0.0,82952.9911839213,0.0,100.0,83304.03866405282,0.0,0.0,52.12,0.0,0.0,52.12,0.0,0.408,0.495,0.2,0.0,0.036,0.28600000000000003,0.051000000000000004,0.0,1.4760000000000002,84907,False,False,460,1.0,1,0,1,0,0.0,4.0,9.0,1.0,0.0,7.0,24.0,2.0,4,0.0,47.0,1.0,0.0,13.0,79.1225737220259,0.0,17.7287132758277,0.0,47 +131552,0.0,285317.191663385,292982.905032573,0.0,160.0,129953.4072299547,0.0,0.0,157.35,0.0,0.0,157.35,0.0,1.2029999999999996,0.0,0.0,0.05,0.008,1.1359999999999995,0.03,0.0,2.4269999999999934,84907,False,False,460,1.0,0,1,1,0,0.0,48.0,0.0,0.0,1.0,8.0,96.0,1.0,4,0.0,154.0,0.0,1.0,48.0,0.0,37.6618692995669,62.6163064635615,0.0,166 +131553,0.0,0.0,165905.982367843,0.0,100.0,90965.34224601903,0.0,0.0,23.700000000000003,0.0,0.0,23.700000000000003,0.0,0.7540000000000004,0.0,0.0,0.0,0.003,0.7080000000000004,0.0,0.0,1.4649999999999992,84907,False,False,460,1.0,0,0,1,0,0.0,27.0,0.0,0.0,0.0,3.0,54.0,0.0,2,0.0,84.0,0.0,0.0,27.0,0.0,0.0,35.4574265516553,0.0,94 +131572,72393.7952760041,0.0,144726.495257054,0.0,100.0,96957.3937049178,0.0,0.0,85.985,0.0,0.0,85.985,0.051000000000000004,0.24,0.30600000000000005,0.0,0.883058823529412,0.041,0.14400000000000002,0.051000000000000004,0.0,1.7160588235294112,84924,False,False,460,1.0,1,0,1,0,2.0,5.0,12.0,0.0,23.0,12.0,29.0,2.0,3,0.0,85.0,1.0,0.0,24.0,17.4005726325403,0.0,30.9309465663376,0.0,82 +131573,678270.094405142,0.0,204735.042070955,0.0,250.0,139738.30798559752,0.0,0.0,17.14,0.0,0.0,17.14,0.0,0.9460000000000004,0.0,0.4,0.0,0.065,0.7840000000000005,0.0,0.0,2.1949999999999945,84924,False,False,460,1.0,2,0,1,0,0.0,33.0,0.0,2.0,0.0,7.0,66.0,0.0,4,0.0,108.0,2.0,0.0,33.0,163.02899989122,0.0,43.7559731914044,0.0,116 +131997,0.0,0.0,93542.7347393155,0.0,100.0,87781.73472435787,0.0,0.0,36.535,0.0,0.0,36.535,0.0,0.934,0.0,0.0,0.0,0.005,0.39,0.0,0.0,1.329,85156,False,False,460,1.0,0,0,1,0,0.0,15.0,0.0,0.0,0.0,5.0,30.0,0.0,3,0.0,50.0,0.0,0.0,15.0,0.0,0.0,19.9919532684865,0.0,53 +131998,0.0,0.0,435944.443030395,0.0,100.0,122177.88147559219,0.0,0.0,44.040000000000006,0.0,0.0,44.040000000000006,0.0,1.486,0.0,0.0,0.0,0.004,1.6959999999999946,0.0,0.0,3.1859999999999906,85156,False,False,460,1.0,0,0,1,0,0.0,71.0,0.0,0.0,0.0,4.0,142.0,0.0,4,0.0,217.0,0.0,0.0,71.0,0.0,0.0,93.170046364456,0.0,247 +132188,2492182.19227804,0.0,188850.426737863,0.0,0.0,92047.7655080686,0.0,0.0,45.47,0.0,0.0,45.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,599.020911735949,0.0,40.3611132024161,0.0,107 +132189,0.0,0.0,506542.733399689,0.0,0.0,97934.25740305161,0.0,0.0,114.535,1.0,0.0,115.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.258312982182,0.0,287 +132190,0.0,0.0,704217.946433715,0.0,0.0,142350.63406142584,0.0,0.0,138.80499999999998,0.0,0.0,138.80499999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.505459511813,0.0,399 +132191,0.0,0.0,483598.289029669,0.0,0.0,102569.95279390107,0.0,0.0,17.74,0.0,0.0,17.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.354626331421,0.0,274 +132192,0.0,0.0,15884.6153330913,0.0,0.0,30639.494100642838,0.0,0.0,9.69,0.0,0.0,9.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.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.39485998898827,0.0,9 +132193,0.0,38484.2163769764,151786.324293984,0.0,0.0,78615.33520472104,0.0,0.0,17.5,0.0,0.0,17.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,2,0,0.0,0.0,0.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.07991656176088,32.4397732281102,0.0,86 +132194,0.0,0.0,681273.502063694,0.0,0.0,165785.60652091607,0.0,0.0,48.7,0.0,0.0,48.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.601772861053,0.0,386 +132195,0.0,2933952.55487905,360051.280883403,0.0,0.0,173726.0590264778,0.0,0.0,154.4,0.0,0.0,154.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,387.281737244035,76.9501597504009,0.0,204 +132196,0.0,3418687.90810591,467713.673696577,0.0,0.0,145592.84743912483,0.0,0.0,18.3,0.0,0.0,18.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,451.26680386998,99.9597663424325,0.0,265 +132197,0.0,0.0,614205.126212864,0.0,0.0,144699.6276153782,0.0,0.0,35.95,0.0,0.0,35.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.267919574213,0.0,348 +132198,0.0,0.0,262978.631625623,0.0,0.0,107242.3166362504,0.0,0.0,60.66,0.0,0.0,60.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.2037931510281,0.0,149 +132199,0.0,691878.256785025,412999.998660374,0.0,0.0,128795.4569130002,0.0,0.0,41.5,0.0,0.0,41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,2,3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,91.3279298956233,88.2663597136951,0.0,234 +132200,0.0,0.0,278863.246958714,0.0,0.0,145126.24025537056,0.0,0.0,50.76,0.0,0.0,50.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.5986531400164,0.0,158 +132201,0.0,1013263.3439538,139431.623479357,0.0,0.0,109906.88339359783,0.0,0.0,48.56,0.0,0.0,48.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,2,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,133.750761401901,29.7993265700082,0.0,79 +132202,0.0,0.0,109427.350072407,0.0,0.0,62650.96247195325,0.0,0.0,98.61500000000001,0.0,0.0,98.61500000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.3868132574748,0.0,62 +132203,0.0,2534308.93287502,102367.521035477,0.0,0.0,91278.82931328643,0.0,0.0,12.405,0.0,0.0,12.405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,334.528779139502,21.8779865957022,0.0,58 +132204,0.0,0.0,651269.228656744,0.0,0.0,202415.49345083776,0.0,0.0,150.69600000000003,0.0,0.0,150.69600000000003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.189259548519,0.0,369 +132205,0.0,0.0,248858.973551764,0.0,0.0,120302.9087344823,0.0,0.0,28.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.186139827483,0.0,141 +132206,711990.325269033,2546971.29271483,15884.6153330913,3564174.39573717,0.0,130644.08321295913,0.0,0.0,89.12,0.0,0.0,89.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,1,5,1,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,171.133994581665,336.200210638357,3.39485998898827,856.827524735215,9 +132207,0.0,0.0,340636.751031847,765542.288460927,0.0,107869.91273889536,0.0,0.0,45.709999999999994,0.0,0.0,45.709999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.8008864305263,184.036366146007,193 +132208,0.0,0.0,811880.339246889,0.0,0.0,181698.74645230328,0.0,0.0,46.52,0.0,0.0,46.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173.515066103845,0.0,460 +132209,0.0,0.0,211794.871107884,0.0,0.0,129600.00003780238,0.0,0.0,88.72000000000001,0.0,0.0,88.72000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.264799853177,0.0,120 +132210,0.0,0.0,213559.828367116,0.0,0.0,151562.8412282974,0.0,0.0,99.44000000000001,0.0,0.0,99.44000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.6420065186201,0.0,121 +132211,0.0,256516.5667095,1208995.72257417,513084.74727038,0.0,176549.0280193381,0.0,0.0,86.18,0.0,0.0,86.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,2,1,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,33.860186805654,258.386565828552,123.345573243799,685 +132212,0.0,1321958.93929943,654799.143175208,0.0,0.0,162986.13254873658,0.0,0.0,44.61,0.0,0.0,44.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,2,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,174.498579987525,139.943672879406,0.0,371 +132213,0.0,0.0,563021.365695125,806336.219260093,0.0,120966.7893960046,0.0,0.0,33.35,0.0,0.0,33.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.328926276362,193.843227110126,319 +132214,0.0,0.0,887773.501393881,0.0,0.0,129600.00004014932,0.0,0.0,27.12,0.0,0.0,27.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.7349527179,0.0,503 +132215,0.0,146219.367311503,1138397.43220488,0.0,0.0,170797.04053109896,0.0,0.0,22.86,0.0,0.0,22.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,19.3009564851184,243.298299210826,0.0,645 +132216,0.0,0.0,285923.075995644,0.0,0.0,156805.5638279535,0.0,0.0,42.83,0.0,0.0,42.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.1074798017889,0.0,162 +132217,0.0,0.0,473008.545474275,0.0,0.0,145529.60514380533,0.0,0.0,73.14,0.0,0.0,73.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.091386338762,0.0,268 +132218,0.0,15060.5624439165,686568.373841391,0.0,0.0,129600.00003713183,0.0,0.0,147.515,0.0,0.0,147.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,1,0,0.0,0.0,0.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.98799424259697,146.733392857382,0.0,389 +132219,1383958.56913368,0.0,238269.22999637,286436.362334236,0.0,123101.54547826102,0.0,0.0,35.22,0.0,0.0,35.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,2,0,2,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,332.648281676972,0.0,50.9228998348241,68.8593015051504,135 +132220,1415585.34450299,0.0,95307.6919985479,0.0,0.0,114540.88593020005,0.0,0.0,76.09,0.0,0.0,76.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,4,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,340.250093404738,0.0,20.3691599339296,0.0,54 +132221,192625.277746387,0.0,474773.502733507,0.0,0.0,149906.0892687935,0.0,0.0,38.31999999999999,0.0,0.0,38.31999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,46.2994117591217,0.0,101.468593004205,0.0,269 +132222,0.0,0.0,314162.392143361,0.0,0.0,106331.060927158,0.0,0.0,108.38,0.0,0.0,108.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.1427864488792,0.0,178 +132223,0.0,0.0,82952.9911839213,0.0,0.0,62763.15879832419,0.0,0.0,37.6,0.0,0.0,37.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.7287132758277,0.0,47 +132224,0.0,0.0,534782.049547407,0.0,0.0,148631.13592404852,0.0,0.0,132.3,0.0,0.0,132.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.293619629272,0.0,303 +132225,0.0,0.0,363581.195401868,0.0,0.0,95940.66332771875,0.0,0.0,9.03,0.0,0.0,9.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.7045730812872,0.0,206 +132226,0.0,0.0,296512.819551038,0.0,0.0,74151.90925737863,0.0,0.0,86.9,0.0,0.0,86.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.3707197944478,0.0,168 +132227,151445.718562801,1350418.62543084,10589.7435553942,0.0,0.0,43711.101419933984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,1,1,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,36.4014929137547,178.25525855687,2.26323999265885,0.0,6 +132228,0.0,7364877.93434429,51183.7605177387,0.0,0.0,136145.7831966155,0.0,0.0,67.92,0.0,0.0,67.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,972.163887333447,10.9389932978511,0.0,29 +132229,0.0,9053643.11830857,0.0,0.0,0.0,109021.5997874765,0.0,0.0,45.080000000000005,0.0,0.0,45.080000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,1,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,1195.08089161673,0.0,0.0,0 +132686,0.0,314134.012832939,178260.683182469,0.0,160.0,76867.31126624919,0.0,0.0,106.58,0.0,0.0,106.58,0.0,0.9340000000000003,0.0,0.0,0.05714285714285715,0.036,0.7610000000000005,0.0,0.0,1.7881428571428561,85398,False,False,460,1.0,0,1,1,0,0.0,29.0,0.0,0.0,1.0,7.0,58.0,0.0,3,0.0,95.0,0.0,1.0,29.0,0.0,41.465689693948,38.0978732097573,0.0,101 +132687,215888.660911257,37982.3371166221,47653.8459992739,0.0,100.0,44463.38007959957,0.0,0.0,42.96,0.0,0.0,42.96,0.0,0.562,0.0,0.0,0.14035087719298245,0.065,0.19699999999999998,0.0,0.0,0.9643508771929824,85398,False,False,460,1.0,1,1,2,0,0.0,8.0,0.0,0.0,2.0,7.0,16.0,0.0,4,0.0,33.0,1.0,1.0,8.0,51.8909985366297,5.01366849939411,10.1845799669648,0.0,27 +133183,0.0,0.0,197675.213034025,1324992.12867713,400.0,88708.2863747782,0.0,0.0,159.27999999999997,0.0,0.0,159.27999999999997,0.002,1.1769999999999998,0.23,0.0,0.0,0.009000000000000001,0.7850000000000005,0.0,0.0,2.2029999999999967,85519,False,False,460,1.0,0,0,1,1,2.0,35.0,2.0,0.0,0.0,9.0,67.0,0.0,4,0.0,115.0,0.0,2.0,33.0,0.0,0.0,42.2471465296319,318.528107733981,112 +133184,0.0,0.0,252388.888070229,0.0,160.0,169459.97147921144,0.0,0.0,126.96000000000001,0.0,0.0,126.96000000000001,0.0,1.7830000000000008,0.0,0.0,0.0,0.010000000000000002,0.9440000000000006,0.0,0.0,2.736999999999998,85519,False,False,460,1.0,0,0,5,0,0.0,41.0,0.0,0.0,0.0,10.0,82.0,0.0,6,0.0,133.0,0.0,0.0,41.0,0.0,0.0,53.9405531583692,0.0,143 +133192,66178.1724471427,0.0,0.0,0.0,100.0,1069.491851387231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.044444444444444446,0.031,0.0,0.0,0.0,0.07544444444444445,85532,False,True,460,1.0,1,0,0,0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1,0.0,3.0,1.0,0.0,0.0,15.9065855293952,0.0,0.0,0.0,0 +133447,559926.147298503,0.0,310632.477624897,0.0,250.0,156429.16344365987,18.5,0.0,43.11,0.0,0.0,61.61,0.0,1.6919999999999982,0.0,0.0,0.26666666666666666,0.004,1.1999999999999988,0.031,0.0,3.1936666666666653,85655,False,False,460,1.0,1,0,1,0,0.0,51.0,0.0,0.0,1.0,4.0,102.0,2.0,6,0.0,160.0,1.0,0.0,51.0,134.583848764668,0.0,66.3883731179929,0.0,176 +133448,0.0,1294102.36608849,529487.17776971,0.0,400.0,154605.2829230601,0.0,0.0,91.50999999999999,0.0,0.0,91.50999999999999,0.0,0.231,1.6679999999999995,0.0,0.0,0.5040000000000002,0.5520000000000003,0.0,0.0,2.954999999999995,85655,False,False,460,1.0,0,1,2,0,0.0,3.0,87.0,0.0,0.0,94.0,92.0,0.0,7,0.0,276.0,0.0,1.0,87.0,0.0,170.82151232368,113.161999632942,0.0,300 +133449,256064.112503028,0.0,409470.084141909,0.0,160.0,140674.04670183087,0.0,0.0,37.035,0.0,0.0,37.035,0.0,1.53,0.0,0.0,0.16,0.066,1.5999999999999954,0.0,0.0,3.355999999999996,85655,False,False,460,1.0,2,0,2,0,0.0,67.0,0.0,0.0,2.0,8.0,134.0,0.0,4,0.0,211.0,2.0,0.0,67.0,61.5475700812279,0.0,87.5119463828088,0.0,232 +133450,227949.150810121,0.0,483598.289029669,0.0,250.0,146956.86686799937,0.0,0.0,56.852000000000004,0.0,0.0,56.852000000000004,0.0,1.763999999999999,0.0,0.0,0.14545454545454548,0.07,1.871999999999993,0.0,0.0,3.8514545454545437,85655,False,False,460,1.0,2,0,2,0,0.0,79.0,0.0,0.0,2.0,12.0,158.0,0.0,4,0.0,251.0,2.0,0.0,79.0,54.7898578887207,0.0,103.354626331421,0.0,274 +133451,0.0,0.0,623029.912509026,0.0,160.0,127435.40914822805,0.0,0.0,14.23,0.0,0.0,14.23,0.0,0.0,1.4609999999999983,0.0,0.0,0.6020000000000003,0.6240000000000003,0.0,0.0,2.686999999999989,85655,False,False,460,1.0,0,0,1,0,0.0,0.0,102.0,0.0,0.0,102.0,104.0,0.0,4,0.0,308.0,0.0,0.0,102.0,0.0,0.0,133.153952901429,0.0,353 +133452,12361.6618338903,0.0,615970.083472096,0.0,250.0,157488.02299285127,0.0,0.0,205.505,0.0,0.0,205.505,0.0,0.0,1.3899999999999995,0.0,0.008421052631578947,0.5910000000000003,0.6360000000000003,0.03,0.0,2.655421052631568,85655,False,False,460,1.0,1,0,1,0,0.0,0.0,101.0,0.0,1.0,111.0,106.0,1.0,6,0.0,320.0,1.0,0.0,101.0,2.97124903839387,0.0,131.645126239656,0.0,349 +133453,0.0,0.0,178260.683182469,0.0,100.0,84385.96191308749,0.0,0.0,55.72,0.0,0.0,55.72,0.0,0.9340000000000004,0.0,0.0,0.0,0.004,0.7610000000000005,0.0,0.0,1.698999999999999,85655,False,False,460,1.0,0,0,2,0,0.0,29.0,0.0,0.0,0.0,4.0,58.0,0.0,2,0.0,91.0,0.0,0.0,29.0,0.0,0.0,38.0978732097573,0.0,101 +133454,0.0,0.0,559491.45117666,0.0,160.0,117130.41246108926,0.0,0.0,39.935,0.0,0.0,39.935,0.0,0.0,1.1520000000000008,0.0,0.0,0.5460000000000003,0.5640000000000003,0.0,0.0,2.261999999999988,85655,False,False,460,1.0,0,0,1,0,0.0,0.0,92.0,0.0,0.0,96.0,94.0,0.0,3,0.0,282.0,0.0,0.0,92.0,0.0,0.0,119.574512945476,0.0,317 +133455,0.0,0.0,464183.759178113,0.0,160.0,114376.6448036858,0.0,0.0,21.015,0.0,0.0,21.015,0.0,1.5580000000000007,0.0,0.0,0.0,0.003,1.8079999999999938,0.0,0.0,3.368999999999995,85655,False,False,460,1.0,0,0,1,0,0.0,76.0,0.0,0.0,0.0,3.0,152.0,0.0,3,0.0,231.0,0.0,0.0,76.0,0.0,0.0,99.2053530115463,0.0,263 +133650,0.0,0.0,690098.288359856,0.0,160.0,110321.74214307597,8.6,0.0,71.09,0.0,0.0,79.69,0.0,0.0,1.582000000000001,0.0,0.0,0.6790000000000004,0.6840000000000004,0.0,0.0,2.944999999999988,85790,False,False,460,1.0,0,0,1,0,0.0,0.0,113.0,0.0,0.0,119.0,114.0,0.0,5,0.0,346.0,0.0,0.0,113.0,0.0,0.0,147.487806188268,0.0,391 +133651,0.0,0.0,448299.143845021,0.0,160.0,133127.94880604232,0.0,0.0,149.09,0.0,0.0,149.09,0.092,1.842,0.0,0.5130000000000002,0.0,0.010000000000000002,1.5599999999999958,0.092,0.0,4.109,85790,False,False,460,1.0,0,0,1,0,4.0,54.0,0.0,19.0,0.0,10.0,138.0,4.0,7,0.0,229.0,0.0,0.0,73.0,0.0,0.0,95.8104930225579,0.0,254 +133652,0.0,0.0,100602.563776245,0.0,100.0,75513.31362005565,0.0,0.0,8.4,0.0,0.0,8.4,0.0,0.9860000000000004,0.0,0.0,0.0,0.001,0.44300000000000006,0.0,0.0,1.4299999999999995,85790,False,False,460,1.0,0,0,2,0,0.0,17.0,0.0,0.0,0.0,1.0,34.0,0.0,2,0.0,52.0,0.0,0.0,17.0,0.0,0.0,21.5007799302591,0.0,57 +133653,0.0,0.0,229444.443700208,0.0,160.0,127911.40675998152,0.0,0.0,130.77499999999998,0.0,0.0,130.77499999999998,0.2,0.6610000000000001,0.0,0.0,0.5880000000000002,0.009000000000000001,0.43600000000000017,0.061,0.0,1.9549999999999947,85790,False,False,460,1.0,0,0,2,0,8.0,19.0,0.0,0.0,28.0,9.0,56.0,3.0,3,0.0,123.0,0.0,0.0,38.0,0.0,0.0,49.0368665076084,0.0,130 +133654,556341.55763076,0.0,345931.622809544,0.0,250.0,127788.76838955935,0.0,0.0,76.25999999999999,0.0,0.0,76.25999999999999,0.031,0.9760000000000006,0.1,0.5600000000000002,0.26666666666666666,0.004,1.0839999999999994,0.276,0.0,3.297666666666664,85790,False,False,460,1.0,1,0,2,0,1.0,24.0,5.0,28.0,1.0,4.0,102.0,13.0,5,0.0,178.0,1.0,0.0,57.0,133.722256792129,0.0,73.9325064268557,0.0,196 +134176,0.0,0.0,247094.016292531,0.0,100.0,100294.59840764888,0.0,0.0,31.225,0.0,0.0,31.225,0.0,1.1020000000000005,0.0,0.0,0.0,0.003,0.9760000000000006,0.0,0.0,2.0809999999999964,86017,False,False,460,1.0,0,0,1,0,0.0,41.0,0.0,0.0,0.0,3.0,82.0,0.0,3,0.0,126.0,0.0,0.0,41.0,0.0,0.0,52.8089331620398,0.0,140 +134177,0.0,0.0,252388.888070229,0.0,100.0,97729.72504409947,0.0,0.0,22.76,0.0,0.0,22.76,0.0,1.7830000000000008,0.0,0.0,0.0,0.003,0.9440000000000006,0.0,0.0,2.7299999999999978,86017,False,False,460,1.0,0,0,1,0,0.0,41.0,0.0,0.0,0.0,3.0,82.0,0.0,6,0.0,126.0,0.0,0.0,41.0,0.0,0.0,53.9405531583692,0.0,143 +134178,0.0,0.0,282393.161477179,0.0,160.0,127359.89136837822,0.0,0.0,135.5,0.0,0.0,135.5,0.42900000000000016,0.602,0.0,0.6600000000000003,0.0,0.009000000000000001,0.5520000000000003,0.123,0.0,2.3749999999999964,86017,False,False,460,1.0,0,0,1,0,19.0,14.0,0.0,33.0,0.0,9.0,70.0,5.0,4,0.0,150.0,0.0,0.0,47.0,0.0,0.0,60.3530664709026,0.0,160 +134200,0.0,0.0,247094.016292531,0.0,100.0,104568.63703219229,0.0,0.0,17.79,0.0,0.0,17.79,0.0,1.1020000000000005,0.0,0.0,0.0,0.002,0.9760000000000006,0.0,0.0,2.0799999999999965,86026,False,False,460,1.0,0,0,1,0,0.0,41.0,0.0,0.0,0.0,2.0,82.0,0.0,3,0.0,125.0,0.0,0.0,41.0,0.0,0.0,52.8089331620398,0.0,140 +134201,0.0,0.0,93542.7347393155,0.0,100.0,84946.86030405527,0.0,0.0,36.94,0.0,0.0,36.94,0.0,0.934,0.0,0.0,0.0,0.005,0.39,0.0,0.0,1.329,86026,False,False,460,1.0,0,0,1,0,0.0,15.0,0.0,0.0,0.0,5.0,30.0,0.0,3,0.0,50.0,0.0,0.0,15.0,0.0,0.0,19.9919532684865,0.0,53 +134202,0.0,0.0,476538.459992739,0.0,160.0,155329.56861559293,0.0,0.0,34.605000000000004,0.0,0.0,34.605000000000004,0.0,1.654000000000001,0.0,0.0,0.0,0.004,1.8559999999999934,0.0,0.0,3.513999999999995,86026,False,False,460,1.0,0,0,1,0,0.0,78.0,0.0,0.0,0.0,4.0,156.0,0.0,3,0.0,238.0,0.0,0.0,78.0,0.0,0.0,101.845799669648,0.0,270 +134203,0.0,0.0,141196.580738589,0.0,100.0,57386.022460840475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1860000000000004,0.0,0.0,0.0,0.0,0.6020000000000002,0.0,0.0,1.7879999999999985,86026,False,False,460,1.0,0,0,1,0,0.0,23.0,0.0,0.0,0.0,0.0,46.0,0.0,2,0.0,69.0,0.0,0.0,23.0,0.0,0.0,30.1765332354513,0.0,80 +134676,0.0,0.0,188850.426737863,4212790.00774938,1260.0,77771.891561953,0.0,0.0,89.44,0.0,0.0,89.44,0.0,1.211,0.0,0.0,0.924,0.007,0.7360000000000004,0.0,0.0,2.877999999999997,86169,False,False,460,2.0,0,0,1,1,0.0,31.0,0.0,0.0,12.0,7.0,62.0,0.0,8,0.0,112.0,0.0,4.0,31.0,0.0,0.0,40.3611132024161,1012.75471786295,107 +134677,0.0,0.0,642444.442360582,0.0,160.0,161329.43146168278,0.0,0.0,54.87499999999999,0.0,0.0,54.87499999999999,0.0,0.0,1.1020000000000008,0.0,0.0,0.6320000000000003,0.6360000000000003,0.0,0.0,2.3699999999999903,86169,False,False,460,1.0,0,0,1,0,0.0,0.0,105.0,0.0,0.0,112.0,106.0,0.0,3,0.0,323.0,0.0,0.0,105.0,0.0,0.0,137.303226221304,0.0,364 +134678,0.0,0.0,448299.143845021,0.0,100.0,133769.99825482778,0.0,0.0,47.98,0.0,0.0,47.98,0.0,2.3550000000000026,0.0,0.0,0.0,0.005,1.7439999999999942,0.0,0.0,4.103999999999999,86169,False,False,460,1.0,0,0,1,0,0.0,73.0,0.0,0.0,0.0,5.0,146.0,0.0,6,0.0,224.0,0.0,0.0,73.0,0.0,0.0,95.8104930225579,0.0,254 +134679,0.0,0.0,508307.690658922,0.0,160.0,168930.83711161703,0.0,0.0,35.25,0.0,0.0,35.25,0.0,1.578000000000001,0.0,0.0,0.0,0.005,1.9679999999999922,0.0,0.0,3.550999999999989,86169,False,False,460,1.0,0,0,1,0,0.0,83.0,0.0,0.0,0.0,5.0,166.0,0.0,3,0.0,254.0,0.0,0.0,83.0,0.0,0.0,108.635519647625,0.0,288 +134806,0.0,0.0,155316.238812448,0.0,100.0,77500.60198372122,0.0,0.0,18.96,0.0,0.0,18.96,0.0,1.4100000000000006,0.0,0.0,0.0,0.002,0.6550000000000002,0.0,0.0,2.0669999999999984,86246,False,False,460,1.0,0,0,1,0,0.0,25.0,0.0,0.0,0.0,2.0,50.0,0.0,3,0.0,77.0,0.0,0.0,25.0,0.0,0.0,33.1941865589965,0.0,88 +134807,0.0,0.0,698923.074656017,0.0,160.0,162395.4464437787,0.0,0.0,51.875,0.0,0.0,51.875,0.0,0.0,1.3010000000000008,0.0,0.0,0.6780000000000004,0.7080000000000004,0.0,0.0,2.686999999999987,86246,False,False,460,1.0,0,0,1,0,0.0,0.0,115.0,0.0,0.0,118.0,118.0,0.0,4,0.0,351.0,0.0,0.0,115.0,0.0,0.0,149.373839515484,0.0,396 +134808,0.0,0.0,370641.024438797,0.0,100.0,134101.2546385836,0.0,0.0,73.67,0.0,0.0,73.67,0.22999999999999998,0.5880000000000002,0.0,0.6600000000000003,0.0,0.006,1.0419999999999996,0.184,0.0,2.709999999999995,86246,False,False,460,1.0,0,0,1,0,10.0,28.0,0.0,33.0,0.0,6.0,104.0,8.0,2,0.0,189.0,0.0,0.0,61.0,0.0,0.0,79.2133997430597,0.0,210 +134809,0.0,0.0,520662.391473548,0.0,160.0,150503.83645234298,0.0,0.0,19.48,0.0,0.0,19.48,0.0,2.2799999999999967,0.0,0.0,0.0,0.002,2.031999999999992,0.0,0.0,4.313999999999996,86246,False,False,460,1.0,0,0,2,0,0.0,85.0,0.0,0.0,0.0,2.0,170.0,0.0,6,0.0,257.0,0.0,0.0,85.0,0.0,0.0,111.275966305727,0.0,295 +134810,0.0,0.0,510072.647918154,0.0,160.0,127328.6706913695,0.0,17.1,62.52,0.0,0.0,79.62,0.15300000000000002,0.8980000000000002,0.0,0.7380000000000003,0.0,0.006,1.6779999999999935,0.169,0.0,3.6419999999999897,86246,False,False,460,1.0,0,0,2,0,7.0,43.0,0.0,41.0,0.0,6.0,154.0,7.0,4,0.0,258.0,0.0,0.0,84.0,0.0,0.0,109.012726313068,0.0,289 +134886,0.0,0.0,365346.1526611,0.0,100.0,99579.144843252,0.0,0.0,40.51,0.0,0.0,40.51,0.0,1.9559999999999977,0.0,0.0,0.0,0.005,1.4399999999999968,0.0,0.0,3.4009999999999945,86279,False,False,460,1.0,0,0,1,0,0.0,60.0,0.0,0.0,0.0,5.0,120.0,0.0,5,0.0,185.0,0.0,0.0,60.0,0.0,0.0,78.0817797467303,0.0,207 +134887,0.0,0.0,333576.921994918,0.0,100.0,105225.3105781025,0.0,0.0,32.47,0.0,0.0,32.47,0.0,1.9059999999999977,0.0,0.0,0.0,0.006,1.3119999999999978,0.0,0.0,3.223999999999995,86279,False,False,460,1.0,0,0,1,0,0.0,55.0,0.0,0.0,0.0,6.0,110.0,0.0,6,0.0,171.0,0.0,0.0,55.0,0.0,0.0,71.2920597687538,0.0,189 +134950,0.0,0.0,478303.417251972,0.0,160.0,114867.3217168931,0.0,0.0,77.94999999999999,0.0,0.0,77.94999999999999,0.25999999999999995,1.326,0.0,0.6600000000000003,0.0,0.006,1.4579999999999946,0.154,0.0,3.863999999999999,86324,False,False,460,1.0,0,0,1,0,12.0,46.0,0.0,33.0,0.0,6.0,140.0,6.0,5,0.0,243.0,0.0,0.0,79.0,0.0,0.0,102.223006335091,0.0,271 +134951,0.0,0.0,525957.263251245,0.0,160.0,167386.94705180946,0.0,0.0,143.64,0.0,0.0,143.64,0.0,0.0,1.1180000000000003,0.5500000000000003,0.0,0.48000000000000026,0.5410000000000003,0.033,0.0,2.7219999999999915,86324,False,False,460,1.0,0,0,1,0,0.0,0.0,32.0,55.0,0.0,90.0,91.0,3.0,7,0.0,271.0,0.0,0.0,87.0,0.0,0.0,112.407586302056,0.0,298 +135132,0.0,344297.954783665,397115.383327283,0.0,160.0,123927.07899942805,0.0,0.0,27.205000000000002,0.0,0.0,27.205000000000002,0.0,1.7740000000000005,0.0,0.0,0.05714285714285715,0.034,1.551999999999996,0.0,0.0,3.41714285714285,86431,False,False,460,1.0,0,1,1,0,0.0,65.0,0.0,0.0,1.0,5.0,130.0,0.0,6,0.0,201.0,0.0,1.0,65.0,0.0,45.4473300314438,84.8714997247069,0.0,225 +135133,0.0,0.0,128841.879923963,0.0,100.0,65618.68343628972,0.0,0.0,21.84,0.0,0.0,21.84,0.0,1.0700000000000005,0.0,0.0,0.0,0.002,0.5490000000000002,0.0,0.0,1.6209999999999996,86431,False,False,460,1.0,0,0,1,0,0.0,21.0,0.0,0.0,0.0,2.0,42.0,0.0,2,0.0,65.0,0.0,0.0,21.0,0.0,0.0,27.5360865773493,0.0,73 +135154,0.0,0.0,151786.324293984,0.0,100.0,86775.00194253748,0.0,0.0,42.02,0.0,0.0,42.02,0.0,0.8700000000000003,0.52,0.0,0.0,0.002,0.6220000000000002,0.033,0.0,2.046999999999999,86448,False,False,460,1.0,0,0,2,0,0.0,15.0,10.0,0.0,0.0,2.0,49.0,1.0,3,0.0,77.0,0.0,0.0,25.0,0.0,0.0,32.4397732281102,0.0,86 +135155,0.0,440050.004868608,81188.0339246889,426526.33540539,250.0,73197.93817985451,0.0,0.0,24.03,0.0,0.0,24.03,0.0,0.903,0.0,0.2,0.0,0.065,0.3370000000000001,0.0,0.0,1.5049999999999994,86450,False,False,460,1.0,0,1,2,1,0.0,13.0,0.0,2.0,0.0,7.0,26.0,0.0,4,0.0,48.0,0.0,2.0,13.0,0.0,58.0866006426562,17.3515066103845,102.536931031456,46 +135232,0.0,0.0,128841.879923963,0.0,100.0,113694.52722846819,0.0,0.0,38.01500000000001,0.0,0.0,38.01500000000001,0.0,1.0700000000000005,0.0,0.0,0.0,0.006,0.5490000000000002,0.0,0.0,1.6249999999999996,86493,False,True,460,1.0,0,0,1,0,0.0,21.0,0.0,0.0,0.0,6.0,42.0,0.0,2,0.0,69.0,0.0,0.0,21.0,0.0,0.0,27.5360865773493,0.0,73 +135369,0.0,0.0,248858.973551764,0.0,100.0,97172.80358182218,0.0,0.0,3.52,0.0,0.0,3.52,0.0,1.1020000000000005,0.0,0.0,0.0,0.001,0.9760000000000006,0.0,0.0,2.0789999999999966,86591,False,True,460,1.0,0,0,1,0,0.0,41.0,0.0,0.0,0.0,1.0,82.0,0.0,3,0.0,124.0,0.0,0.0,41.0,0.0,0.0,53.186139827483,0.0,141 +135370,0.0,0.0,142961.537997822,0.0,100.0,74383.98213626901,0.0,0.0,38.74999999999999,0.0,0.0,38.74999999999999,0.0,1.1860000000000004,0.0,0.0,0.0,0.004,0.6020000000000002,0.0,0.0,1.7919999999999985,86591,False,True,460,1.0,0,0,3,0,0.0,23.0,0.0,0.0,0.0,4.0,46.0,0.0,2,0.0,73.0,0.0,0.0,23.0,0.0,0.0,30.5537399008945,0.0,81 +135381,0.0,0.0,17649.5725923237,0.0,100.0,38592.18270223594,0.0,0.0,7.215,0.0,0.0,7.215,0.0,0.485,0.0,0.0,0.0,0.001,0.07200000000000001,0.0,0.0,0.5579999999999999,86600,False,True,460,1.0,0,0,2,0,0.0,3.0,0.0,0.0,0.0,1.0,6.0,0.0,2,0.0,10.0,0.0,0.0,3.0,0.0,0.0,3.77206665443142,0.0,10 +135382,0.0,1547494.60642155,35299.1451846474,0.0,250.0,90582.70396105302,0.0,0.0,31.020000000000003,0.0,0.0,31.020000000000003,0.0,0.49200000000000005,0.0,0.0,0.26666666666666666,0.13,0.159,0.0,0.0,1.0476666666666667,86602,False,False,460,1.0,0,4,3,0,0.0,6.0,0.0,0.0,4.0,14.0,12.0,0.0,2,0.0,36.0,0.0,4.0,6.0,0.0,204.269288047645,7.54413330886283,0.0,20 +135383,0.0,1560726.70574043,97072.6492577802,0.0,250.0,99384.8187239005,0.0,0.0,24.21,0.0,0.0,24.21,0.0,1.0579999999999996,0.0,0.0,0.26666666666666666,0.127,0.40900000000000003,0.0,0.0,1.8606666666666651,86602,False,False,460,1.0,0,4,3,0,0.0,16.0,0.0,0.0,4.0,11.0,32.0,0.0,4,0.0,63.0,0.0,4.0,16.0,0.0,206.015925157737,20.7463665993728,0.0,55 +135384,0.0,611596.741265468,268273.50340332,0.0,160.0,130983.09645023289,0.0,0.0,117.96,0.0,0.0,117.96,0.0,0.4640000000000002,0.5880000000000002,0.1142857142857143,0.0,0.07,0.7490000000000004,0.30700000000000005,0.0,2.292285714285708,86602,False,False,460,1.0,0,2,4,0,0.0,16.0,28.0,2.0,0.0,12.0,75.0,13.0,3,0.0,146.0,0.0,2.0,44.0,0.0,80.7307698470418,57.3354131473575,0.0,152 +135385,0.0,0.0,319457.263921059,0.0,100.0,98375.0309178841,0.0,0.0,20.185000000000002,0.0,0.0,20.185000000000002,0.0,1.3800000000000008,0.0,0.0,0.0,0.002,1.2639999999999985,0.0,0.0,2.6459999999999972,86602,False,False,460,1.0,0,0,1,0,0.0,53.0,0.0,0.0,0.0,2.0,106.0,0.0,3,0.0,161.0,0.0,0.0,53.0,0.0,0.0,68.2744064452086,0.0,181 +135386,0.0,0.0,914247.860282366,0.0,250.0,129600.00004065223,0.0,0.0,45.64,0.0,0.0,45.64,0.0,0.0,1.0920000000000007,0.0,0.0,0.7730000000000005,0.8040000000000005,0.0,0.0,2.6689999999999845,86602,False,False,460,1.0,0,0,2,0,0.0,0.0,131.0,0.0,0.0,133.0,134.0,0.0,3,0.0,398.0,0.0,0.0,131.0,0.0,0.0,195.393052699547,0.0,518 +135387,0.0,330685.962273241,577141.023768984,0.0,250.0,150081.46798035208,0.0,0.0,38.745,0.0,0.0,38.745,0.0,0.0,1.381999999999999,0.0,0.05714285714285715,0.6020000000000003,0.5760000000000003,0.0,0.0,2.617142857142848,86602,False,False,460,1.0,0,1,1,0,0.0,0.0,95.0,0.0,1.0,103.0,96.0,0.0,5,0.0,295.0,0.0,1.0,95.0,0.0,43.6505470200678,123.346579599907,0.0,327 +135388,0.0,0.0,935427.347393155,0.0,250.0,181280.1814249687,0.0,0.0,107.717,0.0,0.0,107.717,0.0,0.0,1.0920000000000007,0.0,0.0,0.7800000000000005,0.8040000000000005,0.0,0.0,2.675999999999984,86602,False,False,460,1.0,0,0,2,0,0.0,0.0,131.0,0.0,0.0,140.0,134.0,0.0,3,0.0,405.0,0.0,0.0,131.0,0.0,0.0,199.919532684865,0.0,530 +135389,0.0,0.0,291217.947773341,0.0,100.0,75230.79151201922,0.0,0.0,98.02000000000001,0.0,0.0,98.02000000000001,0.0,0.6900000000000003,0.5130000000000002,0.0,0.0,0.005,1.0899999999999999,0.046,0.0,2.3439999999999936,86602,False,False,460,1.0,0,0,2,0,0.0,29.0,19.0,0.0,0.0,5.0,94.0,2.0,4,0.0,149.0,0.0,0.0,48.0,0.0,0.0,62.2390997981184,0.0,165 +135390,0.0,0.0,370641.024438797,0.0,100.0,134202.53676691296,0.0,0.0,76.8,0.0,0.0,76.8,0.0,1.2480000000000007,0.0,0.0,0.0,0.003,1.4559999999999969,0.0,0.0,2.7069999999999954,86602,False,False,460,1.0,0,0,1,0,0.0,61.0,0.0,0.0,0.0,3.0,122.0,0.0,3,0.0,186.0,0.0,0.0,61.0,0.0,0.0,79.2133997430597,0.0,210 +135391,0.0,0.0,247094.016292531,0.0,100.0,71848.24131073947,0.0,0.0,97.29,0.0,0.0,97.29,0.0,1.1020000000000005,0.0,0.0,0.0,0.001,0.9770000000000006,0.0,0.0,2.0799999999999965,86602,False,False,460,1.0,0,0,3,0,0.0,41.0,0.0,0.0,0.0,1.0,83.0,0.0,4,0.0,125.0,0.0,0.0,41.0,0.0,0.0,52.8089331620398,0.0,140 +135392,0.0,0.0,300042.734069502,0.0,100.0,64856.162433318095,12.0,0.0,20.56,0.0,0.0,32.56,0.0,1.7969999999999986,0.0,0.0,0.0,0.003,1.1519999999999992,0.0,0.0,2.952,86602,False,False,460,1.0,0,0,1,0,0.0,49.0,0.0,0.0,0.0,3.0,98.0,0.0,5,0.0,150.0,0.0,0.0,49.0,0.0,0.0,64.1251331253341,0.0,170 +135393,0.0,0.0,338871.793772615,180347.276303735,160.0,96872.0118786563,0.0,0.0,23.22,0.0,0.0,23.22,0.0,1.9679999999999978,0.0,0.0,0.05714285714285715,0.035,1.311999999999998,0.0,0.0,3.372142857142857,86602,False,False,460,1.0,0,0,1,1,0.0,55.0,0.0,0.0,1.0,6.0,110.0,0.0,7,0.0,172.0,0.0,1.0,55.0,0.0,0.0,72.4236797650832,43.355485223418,192 +135394,0.0,0.0,52948.717776971,1470905.85860253,400.0,59214.22633868709,0.0,0.0,78.57,0.0,0.0,78.57,0.0,0.9570000000000003,0.0,0.0,0.0,0.003,0.23099999999999998,0.0,0.0,1.1909999999999998,86602,False,False,460,1.0,0,0,0,2,0.0,15.0,0.0,0.0,0.0,3.0,18.0,0.0,3,0.0,36.0,0.0,2.0,9.0,0.0,0.0,11.3161999632942,353.605768408049,30 +135395,0.0,0.0,473008.545474274,0.0,160.0,84563.20968371906,0.0,0.0,17.955,0.0,0.0,17.955,0.0,1.654000000000001,0.0,0.0,0.0,0.003,1.8559999999999934,0.0,0.0,3.512999999999995,86602,False,False,460,1.0,0,0,2,0,0.0,78.0,0.0,0.0,0.0,3.0,156.0,0.0,3,0.0,237.0,0.0,0.0,78.0,0.0,0.0,101.091386338762,0.0,268 +135396,0.0,0.0,204735.042070955,616515.990304296,250.0,134565.32273489094,0.0,0.0,64.14999999999999,0.0,0.0,64.14999999999999,0.001,1.1760000000000002,0.0,0.0,0.0,0.006,0.7840000000000005,0.0,0.0,1.966999999999996,86602,False,False,460,1.0,0,0,2,1,1.0,35.0,0.0,0.0,0.0,6.0,66.0,0.0,4,0.0,108.0,0.0,1.0,33.0,0.0,0.0,43.7559731914044,148.210444069153,116 +135397,0.0,0.0,704217.946433715,0.0,400.0,100640.0025149167,0.0,0.0,317.61,0.0,290.82,26.79,0.0,0.0,1.949999999999998,0.0,0.20218485932842753,0.6870000000000004,0.6960000000000004,0.0,0.0,3.5351848593284165,86602,False,False,460,1.0,0,0,1,0,0.0,0.0,115.0,0.0,1.0,117.0,116.0,0.0,7,0.0,349.0,0.0,0.0,115.0,0.0,0.0,150.505459511813,0.0,399 +135398,0.0,0.0,538311.964065872,0.0,160.0,100919.63306372926,0.0,0.0,42.84,0.0,0.0,42.84,0.0,0.0,1.772999999999999,0.0,0.0,0.5310000000000002,0.5400000000000003,0.0,0.0,2.8439999999999923,86602,False,False,460,1.0,0,0,1,0,0.0,0.0,89.0,0.0,0.0,91.0,90.0,0.0,5,0.0,270.0,0.0,0.0,89.0,0.0,0.0,115.048032960158,0.0,305 +135399,0.0,0.0,409470.084141909,0.0,100.0,132713.93133652495,0.0,0.0,33.169999999999995,0.0,0.0,33.169999999999995,0.0,1.5300000000000002,0.0,0.0,0.0,0.005,1.5999999999999954,0.0,0.0,3.1349999999999953,86602,False,False,460,1.0,0,0,2,0,0.0,67.0,0.0,0.0,0.0,5.0,134.0,0.0,3,0.0,206.0,0.0,0.0,67.0,0.0,0.0,87.5119463828088,0.0,232 +135400,0.0,0.0,443004.272067324,0.0,100.0,145124.55067326676,0.0,0.0,60.805,0.0,0.0,60.805,0.0,1.1780000000000004,0.6600000000000003,0.0,0.0,0.008,1.589999999999995,0.138,0.0,3.5739999999999976,86602,False,False,460,1.0,0,0,2,0,0.0,40.0,33.0,0.0,0.0,8.0,140.0,6.0,5,0.0,227.0,0.0,0.0,73.0,0.0,0.0,94.6788730262285,0.0,251 +135401,0.0,0.0,748341.877914524,0.0,250.0,110407.276436025,0.0,0.0,65.48,0.0,0.0,65.48,0.0,0.0,2.2420000000000004,0.0,0.0,0.7120000000000004,0.7680000000000005,0.0,0.0,3.7219999999999898,86602,False,False,460,1.0,0,0,1,0,0.0,0.0,123.0,0.0,0.0,122.0,128.0,0.0,9,0.0,373.0,0.0,0.0,123.0,0.0,0.0,159.935626147892,0.0,424 +135402,0.0,0.0,506542.733399689,0.0,160.0,143607.56653401468,0.0,0.0,50.085,0.0,0.0,50.085,0.0,1.578000000000001,0.0,0.0,0.0,0.006,1.9679999999999922,0.0,0.0,3.551999999999989,86602,False,False,460,1.0,0,0,1,0,0.0,83.0,0.0,0.0,0.0,6.0,166.0,0.0,3,0.0,255.0,0.0,0.0,83.0,0.0,0.0,108.258312982182,0.0,287 +135403,0.0,0.0,284158.118736411,0.0,250.0,87465.61755833068,0.0,0.0,189.35,0.0,132.88,56.47,0.0,1.2620000000000005,0.0,0.0,0.0,0.007,1.1039999999999996,0.2947781147451135,0.0,2.6677781147451105,86602,False,False,460,1.0,0,0,2,0,0.0,47.0,0.0,0.0,0.0,7.0,94.0,1.0,4,0.0,149.0,0.0,0.0,47.0,0.0,0.0,60.7302731363458,0.0,161 +135404,0.0,0.0,135901.708960892,0.0,100.0,82661.86966018772,0.0,0.0,58.895,0.0,0.0,58.895,0.0,0.5499999999999999,0.5499999999999999,0.0,0.0,0.008,0.4660000000000002,0.10200000000000001,0.0,1.6759999999999993,86602,False,False,460,1.0,0,0,2,0,0.0,11.0,11.0,0.0,0.0,8.0,40.0,4.0,2,0.0,74.0,0.0,0.0,22.0,0.0,0.0,29.0449132391219,0.0,77 +135405,0.0,649218.585339106,52948.717776971,0.0,160.0,39286.39382355898,0.0,0.0,54.330000000000005,0.0,0.0,54.330000000000005,0.0,0.495,0.0,0.0,0.1,0.005,0.262,0.0,0.0,0.8620000000000002,86602,False,False,460,1.0,0,1,1,0,0.0,9.0,0.0,0.0,1.0,5.0,20.0,0.0,2,0.0,35.0,0.0,1.0,9.0,0.0,85.696853264762,11.3161999632942,0.0,30 +135900,0.0,0.0,26474.3588884855,0.0,100.0,60783.98179764145,0.0,0.0,31.835,0.0,0.0,31.835,0.0,0.4139999999999999,0.0,0.0,0.0,0.003,0.125,0.0,0.0,0.5419999999999999,86704,False,True,460,1.0,0,0,1,0,0.0,5.0,0.0,0.0,0.0,3.0,10.0,0.0,2,0.0,18.0,0.0,0.0,5.0,0.0,0.0,5.65809998164712,0.0,15 +135929,0.0,0.0,224149.571922511,0.0,100.0,108588.82814015605,0.0,0.0,13.07,0.0,0.0,13.07,0.0,1.2540000000000007,0.0,0.0,0.0,0.002,0.8800000000000006,0.0,0.0,2.1359999999999975,86723,False,True,460,1.0,0,0,1,0,0.0,37.0,0.0,0.0,0.0,2.0,74.0,0.0,4,0.0,113.0,0.0,0.0,37.0,0.0,0.0,47.905246511279,0.0,127 +135930,0.0,0.0,180025.640441701,0.0,100.0,67684.28152368766,0.0,0.0,42.77,0.0,0.0,42.77,0.0,0.9340000000000004,0.0,0.0,0.0,0.003,0.7610000000000005,0.0,0.0,1.6979999999999988,86723,False,True,460,1.0,0,0,1,0,0.0,29.0,0.0,0.0,0.0,3.0,58.0,0.0,2,0.0,90.0,0.0,0.0,29.0,0.0,0.0,38.4750798752004,0.0,102 +135931,0.0,275223.99362897,0.0,0.0,100.0,3610.8965218216154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.031,0.0,0.0,0.0,0.081,86724,False,True,460,1.0,0,1,0,0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1,0.0,3.0,0.0,1.0,0.0,0.0,36.3295671590241,0.0,0.0,0 +136166,0.0,0.0,93542.7347393155,0.0,100.0,79640.46406159183,0.0,0.0,33.46,0.0,0.0,33.46,0.0,0.934,0.0,0.0,0.0,0.004,0.39,0.0,0.0,1.328,86963,False,False,460,1.0,0,0,1,0,0.0,15.0,0.0,0.0,0.0,4.0,30.0,0.0,3,0.0,49.0,0.0,0.0,15.0,0.0,0.0,19.9919532684865,0.0,53 +136167,206670.585249303,0.0,651269.228656744,0.0,250.0,187115.77428710586,0.0,0.0,70.04,0.0,0.0,70.04,0.0,0.0,1.1680000000000006,0.0,0.13333333333333333,0.6660000000000004,0.6600000000000004,0.0,0.0,2.6273333333333224,86963,False,False,460,1.0,1,0,1,0,0.0,0.0,107.0,0.0,1.0,117.0,110.0,0.0,5,0.0,335.0,1.0,0.0,107.0,49.6753418705225,0.0,139.189259548519,0.0,369 +136168,0.0,0.0,195910.255774793,0.0,100.0,91708.38960408658,0.0,0.0,61.02,0.0,0.0,61.02,0.0,1.3010000000000004,0.0,0.0,0.0,0.004,0.7520000000000004,0.0,0.0,2.0569999999999977,86963,False,False,460,1.0,0,0,1,0,0.0,32.0,0.0,0.0,0.0,4.0,64.0,0.0,5,0.0,100.0,0.0,0.0,32.0,0.0,0.0,41.8699398641887,0.0,111 +136208,0.0,0.0,150021.367034751,0.0,100.0,90777.36381960809,0.0,0.0,39.35,0.0,0.0,39.35,0.0,1.3900000000000008,0.0,0.0,0.0,0.002,0.6550000000000002,0.0,0.0,2.046999999999999,87035,False,False,460,1.0,0,0,1,0,0.0,25.0,0.0,0.0,0.0,2.0,50.0,0.0,3,0.0,77.0,0.0,0.0,25.0,0.0,0.0,32.062566562667,0.0,85 +136209,0.0,0.0,134136.75170166,0.0,100.0,70894.98561465039,0.0,0.0,29.89,0.0,0.0,29.89,0.0,1.1000000000000003,0.0,0.0,0.0,0.001,0.5680000000000002,0.0,0.0,1.6689999999999994,87035,False,False,460,1.0,0,0,1,0,0.0,22.0,0.0,0.0,0.0,1.0,44.0,0.0,2,0.0,67.0,0.0,0.0,22.0,0.0,0.0,28.6677065736788,0.0,76 +136210,177550.997881221,0.0,104132.47829471,0.0,100.0,48861.2570124154,0.0,0.0,58.32,0.0,0.0,58.32,0.0,0.9860000000000002,0.0,0.0,0.1142857142857143,0.034,0.44300000000000017,0.0,0.0,1.5772857142857135,87035,False,False,460,1.0,1,0,1,0,0.0,17.0,0.0,0.0,1.0,5.0,34.0,0.0,3,0.0,57.0,1.0,0.0,17.0,42.6761578507304,0.0,22.2551932611454,0.0,59 +136615,0.0,0.0,112957.264590872,231252.902768065,100.0,58695.41523737344,0.0,0.0,15.030000000000001,0.0,0.0,15.030000000000001,0.0,1.2460000000000004,0.0,0.0,0.06666666666666667,0.033,0.4960000000000002,0.0,0.0,1.8416666666666663,87192,False,False,460,1.0,0,0,1,1,0.0,19.0,0.0,0.0,1.0,4.0,38.0,0.0,4,0.0,62.0,0.0,1.0,19.0,0.0,0.0,24.1412265883611,55.5931978254428,64 +136616,0.0,0.0,58243.5895546681,0.0,100.0,45888.015582693726,0.0,0.0,21.52,0.0,0.0,21.52,0.0,0.495,0.0,0.0,0.0,0.002,0.23099999999999998,0.0,0.0,0.7280000000000002,87192,False,False,460,1.0,0,0,2,0,0.0,9.0,0.0,0.0,0.0,2.0,18.0,0.0,1,0.0,29.0,0.0,0.0,9.0,0.0,0.0,12.4478199596237,0.0,33 +136617,185706.906853307,0.0,176495.725923237,0.0,400.0,89036.2357708798,0.0,0.0,266.06800000000004,0.0,182.64,83.428,0.135,0.7322776924721334,0.0,0.0,0.7902857142857147,0.037,0.30200000000000005,0.069,0.0,2.0655634067578457,87192,False,False,460,1.0,1,0,1,0,5.0,14.0,0.0,0.0,27.0,8.0,40.0,3.0,4,0.0,97.0,1.0,0.0,29.0,44.6365121312608,0.0,37.7206665443142,0.0,100 +136618,0.0,0.0,93542.7347393155,0.0,100.0,59522.871740660696,0.0,0.0,18.0,0.0,0.0,18.0,0.0,0.934,0.0,0.0,0.0,0.001,0.39,0.0,0.0,1.325,87193,False,False,460,1.0,0,0,1,0,0.0,15.0,0.0,0.0,0.0,1.0,30.0,0.0,3,0.0,46.0,0.0,0.0,15.0,0.0,0.0,19.9919532684865,0.0,53 +136619,0.0,0.0,349461.537328009,0.0,100.0,131651.8191288378,0.0,0.0,73.96000000000001,0.0,0.0,73.96000000000001,0.031,0.16499999999999998,0.6510000000000002,0.46200000000000013,0.0,0.006,1.1149999999999993,0.214,0.0,2.643999999999993,87193,False,False,460,1.0,0,0,1,0,1.0,4.0,31.0,22.0,0.0,6.0,103.0,10.0,3,0.0,177.0,0.0,0.0,57.0,0.0,0.0,74.686919757742,0.0,198 +136620,0.0,0.0,183555.554960166,0.0,100.0,94466.15803101215,0.0,0.0,80.86999999999999,0.0,0.0,80.86999999999999,0.033,0.33599999999999997,0.104,0.5720000000000003,0.0,0.007,0.42300000000000004,0.32400000000000007,0.0,1.7989999999999988,87193,False,False,460,1.0,0,0,1,0,1.0,4.0,4.0,22.0,0.0,7.0,46.0,13.0,3,0.0,97.0,0.0,0.0,30.0,0.0,0.0,39.2294932060867,0.0,104 +179885,0.0,0.0,183555.554960166,0.0,100.0,88484.24109529443,0.0,0.0,77.95500000000001,0.0,0.0,77.95500000000001,0.10200000000000001,0.43799999999999994,0.20400000000000001,0.0,0.6760000000000004,0.006,0.28800000000000003,0.084,0.0,1.797999999999999,104648,False,True,460,1.0,0,0,1,0,4.0,8.0,8.0,0.0,26.0,6.0,41.0,3.0,3,0.0,96.0,0.0,0.0,30.0,0.0,0.0,39.2294932060867,0.0,104 +179886,0.0,0.0,22944.4443700208,0.0,100.0,53560.78302435094,0.0,0.0,5.18,0.0,0.0,5.18,0.0,0.312,0.0,0.0,0.0,0.001,0.10600000000000001,0.0,0.0,0.41900000000000004,104648,False,True,460,1.0,0,0,2,0,0.0,4.0,0.0,0.0,0.0,1.0,8.0,0.0,2,0.0,13.0,0.0,0.0,4.0,0.0,0.0,4.90368665076084,0.0,13 +399140,0.0,0.0,7059.82903692947,0.0,100.0,6435.043932533064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.0,0.0,0.019,0.0,0.0,0.154,86144,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.50882666177257,0.0,4 +399236,0.0,335509.405223213,0.0,0.0,100.0,4203.993789595473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05714285714285715,0.031,0.0,0.0,0.0,0.08814285714285715,86745,False,True,460,1.0,0,1,0,0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1,0.0,3.0,0.0,1.0,0.0,0.0,44.2872414894641,0.0,0.0,0 +399421,0.0,0.0,8824.78629616184,0.0,100.0,9533.233119693634,0.0,0.0,19.2,0.0,0.0,19.2,0.0,0.135,0.0,0.0,0.0,0.001,0.019,0.0,0.0,0.155,86610,False,True,460,1.0,0,0,1,0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1,0.0,4.0,0.0,0.0,1.0,0.0,0.0,1.88603332721571,0.0,5 +399442,0.0,0.0,7059.82903692947,0.0,100.0,10391.528289871152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.0,0.0,0.019,0.0,0.0,0.154,86540,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.50882666177257,0.0,4 +399742,0.0,0.0,7059.82903692947,0.0,100.0,10391.528289753518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.0,0.0,0.019,0.0,0.0,0.154,84575,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.50882666177257,0.0,4 +399941,662249.135744723,0.0,0.0,0.0,250.0,8447.074452732839,0.0,0.0,13.23,0.0,0.0,13.23,0.001,0.43000000000000005,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.43200000000000005,84427,False,False,460,1.0,1,0,0,0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,2,0.0,4.0,1.0,0.0,0.0,159.178202267602,0.0,0.0,0.0,0 +400196,0.0,0.0,35299.1451846474,0.0,100.0,28687.768616956786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49200000000000005,0.0,0.0,0.0,0.0,0.159,0.0,0.0,0.651,84649,False,True,460,1.0,0,0,1,0,0.0,6.0,0.0,0.0,0.0,0.0,12.0,0.0,1,0.0,18.0,0.0,0.0,6.0,0.0,0.0,7.54413330886283,0.0,20 +400214,0.0,0.0,5294.8717776971,0.0,100.0,10391.52829060533,0.0,0.0,28.03,0.0,0.0,28.03,0.0,0.135,0.0,0.0,0.0,0.002,0.019,0.0,0.0,0.156,86667,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1,0.0,5.0,0.0,0.0,1.0,0.0,0.0,1.13161999632942,0.0,3 +400542,0.0,0.0,10589.7435553942,0.0,100.0,28948.954587352575,0.0,0.0,13.649999999999999,0.0,0.0,13.649999999999999,0.0,0.35,0.0,0.0,0.0,0.002,0.053000000000000005,0.0,0.0,0.405,85854,False,True,460,1.0,0,0,0,0,0.0,2.0,0.0,0.0,0.0,2.0,4.0,0.0,1,0.0,8.0,0.0,0.0,2.0,0.0,0.0,2.26323999265885,0.0,6 +401632,1766139.63203054,0.0,0.0,0.0,630.0,22163.08049000492,0.0,0.0,20.93,0.0,0.0,20.93,0.0,0.0,0.0,0.002,0.8600000000000001,0.002,0.0,0.0,0.0,0.8640000000000001,85925,False,False,460,1.0,1,0,0,0,0.0,0.0,0.0,2.0,4.0,2.0,0.0,0.0,4,0.0,8.0,2.0,0.0,0.0,424.509321954861,0.0,0.0,0.0,0 +401639,127789.83462324,0.0,14119.6580738589,0.0,100.0,11415.164471525324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35,0.0,0.0,0.08,0.031,0.053000000000000005,0.0,0.0,0.514,85335,False,True,460,1.0,1,0,0,0,0.0,2.0,0.0,0.0,1.0,2.0,4.0,0.0,2,0.0,9.0,1.0,0.0,2.0,30.715564650042,0.0,3.01765332354513,0.0,8 +402115,0.0,0.0,5294.8717776971,0.0,100.0,10391.528290099375,0.0,0.0,7.68,0.0,0.0,7.68,0.0,0.135,0.0,0.0,0.0,0.001,0.019,0.0,0.0,0.155,84661,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1,0.0,4.0,0.0,0.0,1.0,0.0,0.0,1.13161999632942,0.0,3 +402231,0.0,0.0,37064.1024438797,0.0,100.0,23077.063862376734,0.0,0.0,24.525,0.0,0.0,24.525,0.0,0.49200000000000005,0.0,0.0,0.0,0.002,0.159,0.0,0.0,0.653,83135,False,True,460,1.0,0,0,1,0,0.0,6.0,0.0,0.0,0.0,2.0,12.0,0.0,1,0.0,20.0,0.0,0.0,6.0,0.0,0.0,7.92133997430597,0.0,21 +402676,0.0,0.0,5294.8717776971,0.0,100.0,10391.528289992912,0.0,0.0,11.025,0.0,0.0,11.025,0.0,0.135,0.0,0.0,0.0,0.001,0.019,0.0,0.0,0.155,87056,False,True,460,1.0,0,0,0,0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1,0.0,4.0,0.0,0.0,1.0,0.0,0.0,1.13161999632942,0.0,3 +402684,131244.149748434,0.0,5294.8717776971,0.0,100.0,15104.228982867917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.08888888888888889,0.031,0.019,0.0,0.0,0.2738888888888889,86117,False,True,460,1.0,1,0,1,0,0.0,1.0,0.0,0.0,1.0,2.0,2.0,0.0,2,0.0,6.0,1.0,0.0,1.0,31.5458438335335,0.0,1.13161999632942,0.0,3 +402809,264247.570888634,0.0,15884.6153330913,0.0,100.0,20812.650563261966,11.0,0.0,13.879999999999999,0.0,0.0,24.88,0.0,0.485,0.0,0.0,0.17777777777777778,0.066,0.07200000000000001,0.0,0.0,0.8007777777777779,85290,False,True,460,1.0,2,0,0,0,0.0,3.0,0.0,0.0,2.0,8.0,6.0,0.0,3,0.0,19.0,2.0,0.0,3.0,63.5145461387921,0.0,3.39485998898827,0.0,9 +402819,74809.0732093916,0.0,5294.8717776971,0.0,100.0,10391.52828989876,0.0,0.0,22.26,0.0,0.0,22.26,0.0,0.135,0.0,0.0,0.05,0.032,0.019,0.0,0.0,0.23600000000000002,83207,False,True,460,1.0,1,0,0,0,0.0,1.0,0.0,0.0,1.0,3.0,2.0,0.0,2,0.0,7.0,1.0,0.0,1.0,17.9811088366094,0.0,1.13161999632942,0.0,3 +402945,528681.574751516,0.0,15884.6153330913,0.0,160.0,7407.831674945896,0.0,0.0,8.16,0.0,0.0,8.16,0.0,0.485,0.0,0.0,0.26666666666666666,0.001,0.07200000000000001,0.031,0.0,0.8556666666666667,84667,False,False,460,1.0,1,0,0,0,0.0,3.0,0.0,0.0,1.0,1.0,6.0,2.0,3,0.0,13.0,1.0,0.0,3.0,127.073903307274,0.0,3.39485998898827,0.0,9 +403015,552904.919023606,0.0,8824.78629616184,0.0,160.0,16703.474974880246,0.0,0.0,4.26,0.0,0.0,4.26,0.0,0.135,0.0,0.0,0.26666666666666666,0.001,0.019,0.031,0.0,0.45266666666666666,85395,False,False,460,1.0,1,0,0,0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,2.0,2,0.0,7.0,1.0,0.0,1.0,132.896226336514,0.0,1.88603332721571,0.0,5 +403047,1116199.93092826,0.0,5294.8717776971,0.0,400.0,23200.057948445065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.43100000000000005,0.0,0.019,0.0,0.0,0.5850000000000001,85396,False,False,460,1.0,1,0,0,0,0.0,1.0,0.0,0.0,3.0,0.0,2.0,0.0,2,0.0,6.0,1.0,0.0,1.0,268.289815397918,0.0,1.13161999632942,0.0,3 +403085,0.0,0.0,7059.82903692947,0.0,100.0,3976.2499377643658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,0.0,0.0,0.019,0.0,0.0,0.154,86880,False,True,460,1.0,0,0,1,0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.50882666177257,0.0,4 +403155,0.0,719882.954158144,0.0,0.0,100.0,8791.302509059244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13333333333333333,0.0,0.0,0.0,0.031,0.0,0.0,0.16433333333333333,85138,False,True,460,1.0,0,1,0,0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1,0.0,3.0,0.0,1.0,0.0,0.0,95.024549948875,0.0,0.0,0 +403167,1010492.07151882,0.0,5294.8717776971,0.0,400.0,22516.30375807953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.001,0.43000000000000005,0.0,0.019,0.0,0.0,0.5850000000000001,86446,False,False,460,1.0,1,0,0,0,0.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,2,0.0,6.0,1.0,0.0,1.0,242.881874310265,0.0,1.13161999632942,0.0,3 +403347,0.0,512767.855000731,19414.529851556,0.0,100.0,23515.47990165418,0.0,0.0,34.93,0.0,0.0,34.93,0.0,0.485,0.0,0.0,0.08,0.035,0.07200000000000001,0.0,0.0,0.672,86449,False,True,460,1.0,0,1,1,0,0.0,3.0,0.0,0.0,1.0,6.0,6.0,0.0,3,0.0,16.0,0.0,1.0,3.0,0.0,67.6853568600965,4.14927331987456,0.0,11 +490063,0.0,1558596.96844454,12354.7008146266,0.0,250.0,32953.61401935989,0.0,0.0,6.925,0.0,0.0,6.925,0.0,0.35,0.231,0.0,0.0,0.002,0.053000000000000005,0.0,0.0,0.636,86448,False,False,460,1.0,0,1,1,0,0.0,2.0,3.0,0.0,0.0,2.0,4.0,0.0,2,0.0,11.0,0.0,1.0,2.0,0.0,205.734799834679,2.64044665810199,0.0,7 +490064,287064.256395367,0.0,128841.879923963,0.0,100.0,68064.22526870885,0.0,0.0,34.08,0.0,0.0,34.08,0.0,1.0700000000000005,0.0,0.0,0.16,0.035,0.5490000000000003,0.0,0.0,1.8139999999999992,86448,False,False,460,1.0,1,0,3,0,0.0,21.0,0.0,0.0,1.0,6.0,42.0,0.0,3,0.0,70.0,1.0,0.0,21.0,68.9987646671904,0.0,27.5360865773493,0.0,73 +496358,265380.601252406,0.0,65303.4185915976,0.0,0.0,46396.82782936955,0.0,0.0,41.2,0.0,0.0,41.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,1,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,63.7868813170284,0.0,13.9566466213962,0.0,37 +496362,0.0,0.0,190615.383997096,0.0,0.0,107356.24963253096,0.0,0.0,16.955,0.0,0.0,16.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85334,True,False,460,0.0,0,0,2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.7383198678593,0.0,108 +513211,0.0,0.0,58243.5895546681,0.0,100.0,63826.56349734115,0.0,0.0,5.28,0.0,0.0,5.28,0.0,0.495,0.0,0.0,0.0,0.001,0.23099999999999998,0.0,0.0,0.7270000000000002,85156,False,False,460,1.0,0,0,1,0,0.0,9.0,0.0,0.0,0.0,1.0,18.0,0.0,1,0.0,28.0,0.0,0.0,9.0,0.0,0.0,12.4478199596237,0.0,33 +513239,816672.451729228,0.0,45888.8887400416,0.0,250.0,25977.731490449758,0.0,0.0,6.0,0.0,0.0,6.0,0.0,0.627,0.001,0.43000000000000005,0.0,0.001,0.178,0.0,0.0,1.2369999999999999,85655,False,False,460,1.0,1,0,1,0,0.0,7.0,1.0,2.0,0.0,1.0,14.0,0.0,3,0.0,25.0,1.0,0.0,7.0,196.295390497637,0.0,9.80737330152168,0.0,26 +515408,609130.440812889,0.0,15884.6153330913,0.0,160.0,27508.421955080616,0.0,0.0,17.42,0.0,0.0,17.42,0.001,0.915,0.0,0.0,0.0,0.002,0.07200000000000001,0.0,0.0,0.9900000000000001,86431,False,False,460,1.0,1,0,1,0,1.0,5.0,0.0,0.0,0.0,2.0,6.0,0.0,3,0.0,14.0,1.0,0.0,3.0,146.410592753786,0.0,3.39485998898827,0.0,9 diff --git a/tests/test_data/lvgd_stats_current_460.csv b/tests/test_data/lvgd_stats_current_460.csv new file mode 100644 index 00000000..ee48ec81 --- /dev/null +++ b/tests/test_data/lvgd_stats_current_460.csv @@ -0,0 +1,2 @@ +branch id,LA_id,LV_grid_id,MV_grid_id,s_max_0,s_max_1 +Branch_Generator_mvgd_460_lvgd_135397_solar_roof_mounted_872577_LVStation_mvgd_460_lvgd_135397,86602,135397,460,0.0,290.82 diff --git a/tests/test_data/lvgd_stats_voltage_460.csv b/tests/test_data/lvgd_stats_voltage_460.csv new file mode 100644 index 00000000..c6d4b1d0 --- /dev/null +++ b/tests/test_data/lvgd_stats_voltage_460.csv @@ -0,0 +1,112 @@ +node id,LA_id,LV_grid_id,MV_grid_id,V nominal,s_max_0,s_max_1,v_diff_0,v_diff_1 +LVCableDist_mvgd_460_lvgd_131525_10,84876,131525,460,400.0,NA,NA,0.07709018608515004,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131525_5,84876,131525,460,400.0,NA,NA,0.07152256697148966,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131525_6,84876,131525,460,400.0,NA,NA,0.07709018608515004,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131525_7,84876,131525,460,400.0,NA,NA,0.07152256697148966,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131525_8,84876,131525,460,400.0,NA,NA,0.07709018608515004,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131525_9,84876,131525,460,400.0,NA,NA,0.07152256697148966,0.0027025264151680764 +LVCableDist_mvgd_460_lvgd_131542_100,84889,131542,460,400.0,NA,NA,0.013244785439306258,0.036873128471112966 +LVCableDist_mvgd_460_lvgd_131542_101,84889,131542,460,400.0,NA,NA,0.013364639555023664,0.03691640347111297 +LVCableDist_mvgd_460_lvgd_131542_102,84889,131542,460,400.0,NA,NA,0.013401002947301583,0.03691640347111297 +LVCableDist_mvgd_460_lvgd_131542_103,84889,131542,460,400.0,NA,NA,0.013490634751758856,0.03708267847111297 +LVCableDist_mvgd_460_lvgd_131542_104,84889,131542,460,400.0,NA,NA,0.013508229941570752,0.03708267847111297 +LVCableDist_mvgd_460_lvgd_131542_105,84889,131542,460,400.0,NA,NA,0.01360517583969994,0.03724895347111297 +LVCableDist_mvgd_460_lvgd_131542_106,84889,131542,460,400.0,NA,NA,0.01364153923197786,0.03762326297111297 +LVCableDist_mvgd_460_lvgd_131542_107,84889,131542,460,400.0,NA,NA,0.013708262818846916,0.03728270347111297 +LVCableDist_mvgd_460_lvgd_131542_108,84889,131542,460,400.0,NA,NA,0.013725858008658812,0.03728270347111297 +LVCableDist_mvgd_460_lvgd_131542_109,84889,131542,460,400.0,NA,NA,0.013799895689199784,0.03731645347111297 +LVCableDist_mvgd_460_lvgd_131542_110,84889,131542,460,400.0,NA,NA,0.013836259081477703,0.03731645347111297 +LVCableDist_mvgd_460_lvgd_131542_111,84889,131542,460,400.0,NA,NA,0.013880074450758543,0.03735020347111297 +LVCableDist_mvgd_460_lvgd_131542_112,84889,131542,460,400.0,NA,NA,0.013897669640570438,0.03735020347111297 +LVCableDist_mvgd_460_lvgd_131542_113,84889,131542,460,400.0,NA,NA,0.013948799103523193,0.037383953471112966 +LVCableDist_mvgd_460_lvgd_131542_114,84889,131542,460,400.0,NA,NA,0.013985162495801113,0.037383953471112966 +LVCableDist_mvgd_460_lvgd_131542_115,84889,131542,460,400.0,NA,NA,0.014006069647493735,0.037417703471112965 +LVCableDist_mvgd_460_lvgd_131542_116,84889,131542,460,400.0,NA,NA,0.014023664837305631,0.037417703471112965 +LVCableDist_mvgd_460_lvgd_131542_117,84889,131542,460,400.0,NA,NA,0.014051886082670169,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_118,84889,131542,460,400.0,NA,NA,0.014088249474948088,0.037546778471112964 +LVCableDist_mvgd_460_lvgd_131542_119,84889,131542,460,400.0,NA,NA,0.014086248409052494,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_120,84889,131542,460,400.0,NA,NA,0.01410384359886439,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_121,84889,131542,460,400.0,NA,NA,0.014109156626640711,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_122,84889,131542,460,400.0,NA,NA,0.01414552001891863,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_123,84889,131542,460,400.0,NA,NA,0.01412061073543482,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_124,84889,131542,460,400.0,NA,NA,0.014138205925246715,0.037451453471112964 +LVCableDist_mvgd_460_lvgd_131542_69,84889,131542,460,400.0,NA,NA,0.009790957611261836,0.030756465971112944 +LVCableDist_mvgd_460_lvgd_131542_70,84889,131542,460,400.0,NA,NA,0.009827321003539755,0.03161883947111294 +LVCableDist_mvgd_460_lvgd_131542_71,84889,131542,460,400.0,NA,NA,0.010100218548702763,0.03142482847111294 +LVCableDist_mvgd_460_lvgd_131542_72,84889,131542,460,400.0,NA,NA,0.010117813738514659,0.03142482847111294 +LVCableDist_mvgd_460_lvgd_131542_73,84889,131542,460,400.0,NA,NA,0.010398025377349582,0.03209319097111294 +LVCableDist_mvgd_460_lvgd_131542_74,84889,131542,460,400.0,NA,NA,0.010434388769627502,0.03291679897111294 +LVCableDist_mvgd_460_lvgd_131542_75,84889,131542,460,400.0,NA,NA,0.010684378097202293,0.03246995347111294 +LVCableDist_mvgd_460_lvgd_131542_76,84889,131542,460,400.0,NA,NA,0.010701973287014188,0.03246995347111294 +LVCableDist_mvgd_460_lvgd_131542_77,84889,131542,460,400.0,NA,NA,0.010959276708260895,0.032846715971112946 +LVCableDist_mvgd_460_lvgd_131542_78,84889,131542,460,400.0,NA,NA,0.010995640100538814,0.032846715971112946 +LVCableDist_mvgd_460_lvgd_131542_79,84889,131542,460,400.0,NA,NA,0.011222721210525389,0.03322347847111295 +LVCableDist_mvgd_460_lvgd_131542_80,84889,131542,460,400.0,NA,NA,0.011240316400337284,0.03322347847111295 +LVCableDist_mvgd_460_lvgd_131542_81,84889,131542,460,400.0,NA,NA,0.011474711603995774,0.03360024097111295 +LVCableDist_mvgd_460_lvgd_131542_82,84889,131542,460,400.0,NA,NA,0.011511074996273693,0.03360024097111295 +LVCableDist_mvgd_460_lvgd_131542_83,84889,131542,460,400.0,NA,NA,0.01171524788867205,0.03397700347111295 +LVCableDist_mvgd_460_lvgd_131542_84,84889,131542,460,400.0,NA,NA,0.011732843078483947,0.03397700347111295 +LVCableDist_mvgd_460_lvgd_131542_85,84889,131542,460,400.0,NA,NA,0.01194433006455422,0.034353765971112955 +LVCableDist_mvgd_460_lvgd_131542_86,84889,131542,460,400.0,NA,NA,0.011980693456832139,0.034353765971112955 +LVCableDist_mvgd_460_lvgd_131542_87,84889,131542,460,400.0,NA,NA,0.01216195813164228,0.03473052847111296 +LVCableDist_mvgd_460_lvgd_131542_88,84889,131542,460,400.0,NA,NA,0.012179553321454175,0.03473052847111296 +LVCableDist_mvgd_460_lvgd_131542_89,84889,131542,460,400.0,NA,NA,0.01236813208993623,0.03510729097111296 +LVCableDist_mvgd_460_lvgd_131542_90,84889,131542,460,400.0,NA,NA,0.01240449548221415,0.03510729097111296 +LVCableDist_mvgd_460_lvgd_131542_91,84889,131542,460,400.0,NA,NA,0.012562851939436074,0.03548405347111296 +LVCableDist_mvgd_460_lvgd_131542_92,84889,131542,460,400.0,NA,NA,0.01258044712924797,0.03548405347111296 +LVCableDist_mvgd_460_lvgd_131542_93,84889,131542,460,400.0,NA,NA,0.012746117680141809,0.035860815971112965 +LVCableDist_mvgd_460_lvgd_131542_94,84889,131542,460,400.0,NA,NA,0.012782481072419728,0.035860815971112965 +LVCableDist_mvgd_460_lvgd_131542_95,84889,131542,460,400.0,NA,NA,0.012917929312053435,0.03623757847111297 +LVCableDist_mvgd_460_lvgd_131542_96,84889,131542,460,400.0,NA,NA,0.012935524501865331,0.03640224472111297 +LVCableDist_mvgd_460_lvgd_131542_97,84889,131542,460,400.0,NA,NA,0.013078286835170953,0.03649385347111297 +LVCableDist_mvgd_460_lvgd_131542_98,84889,131542,460,400.0,NA,NA,0.013114650227448873,0.03649385347111297 +LVCableDist_mvgd_460_lvgd_131542_99,84889,131542,460,400.0,NA,NA,0.013227190249494362,0.03675012847111297 +LVCableDist_mvgd_460_lvgd_131572_27,84924,131572,460,400.0,NA,NA,0.008596567604763159,0.030533219624267006 +LVCableDist_mvgd_460_lvgd_131572_28,84924,131572,460,400.0,NA,NA,0.008617423325009393,0.030533219624267006 +LVCableDist_mvgd_460_lvgd_131572_29,84924,131572,460,400.0,NA,NA,0.008859300874627106,0.03143441337426701 +LVCableDist_mvgd_460_lvgd_131572_30,84924,131572,460,400.0,NA,NA,0.0088975363617452,0.03143441337426701 +LVCableDist_mvgd_460_lvgd_131572_31,84924,131572,460,400.0,NA,NA,0.009098149301776147,0.03233560712426701 +LVCableDist_mvgd_460_lvgd_131572_32,84924,131572,460,400.0,NA,NA,0.009119005022022382,0.03250903712426701 +LVCableDist_mvgd_460_lvgd_131572_33,84924,131572,460,400.0,NA,NA,0.009313112886210286,0.03301355087426701 +LVCableDist_mvgd_460_lvgd_131572_34,84924,131572,460,400.0,NA,NA,0.009351348373328381,0.03301355087426701 +LVCableDist_mvgd_460_lvgd_131572_35,84924,131572,460,400.0,NA,NA,0.00950419162792952,0.03369149462426701 +LVCableDist_mvgd_460_lvgd_131572_36,84924,131572,460,400.0,NA,NA,0.009525047348175754,0.03400809662426701 +LVCableDist_mvgd_460_lvgd_131572_37,84924,131572,460,400.0,NA,NA,0.009671385526933848,0.03396188837426701 +LVCableDist_mvgd_460_lvgd_131572_38,84924,131572,460,400.0,NA,NA,0.009709621014051944,0.03396188837426701 +LVCableDist_mvgd_460_lvgd_131572_39,84924,131572,460,400.0,NA,NA,0.009814694583223274,0.03423228212426701 +LVCableDist_mvgd_460_lvgd_131572_40,84924,131572,460,400.0,NA,NA,0.009835550303469508,0.03423228212426701 +LVCableDist_mvgd_460_lvgd_131572_41,84924,131572,460,400.0,NA,NA,0.009934118796797795,0.03450267587426701 +LVCableDist_mvgd_460_lvgd_131572_42,84924,131572,460,400.0,NA,NA,0.00997235428391589,0.03450267587426701 +LVCableDist_mvgd_460_lvgd_131572_43,84924,131572,460,400.0,NA,NA,0.010029658167657413,0.03477306962426701 +LVCableDist_mvgd_460_lvgd_131572_44,84924,131572,460,400.0,NA,NA,0.010050513887903647,0.03477306962426701 +LVCableDist_mvgd_460_lvgd_131572_45,84924,131572,460,400.0,NA,NA,0.010101312695802125,0.03504346337426701 +LVCableDist_mvgd_460_lvgd_131572_46,84924,131572,460,400.0,NA,NA,0.01013954818292022,0.03522205937426701 +LVCableDist_mvgd_460_lvgd_131572_47,84924,131572,460,400.0,NA,NA,0.010149082381231933,0.03518845712426701 +LVCableDist_mvgd_460_lvgd_131572_48,84924,131572,460,400.0,NA,NA,0.010169938101478168,0.03518845712426701 +LVCableDist_mvgd_460_lvgd_131572_49,84924,131572,460,400.0,NA,NA,0.010172967223946838,0.035333450874267015 +LVCableDist_mvgd_460_lvgd_131572_50,84924,131572,460,400.0,NA,NA,0.010211202711064933,0.035539952499267016 +LVCableDist_mvgd_460_lvgd_179885_45,104648,179885,460,400.0,NA,NA,0.008732662202760621,0.030048996327442155 +LVCableDist_mvgd_460_lvgd_179885_46,104648,179885,460,400.0,NA,NA,0.008753823128668995,0.030291429327442155 +LVCableDist_mvgd_460_lvgd_179885_47,104648,179885,460,400.0,NA,NA,0.008848732113648351,0.030514883827442156 +LVCableDist_mvgd_460_lvgd_179885_48,104648,179885,460,400.0,NA,NA,0.00888752714448037,0.030514883827442156 +LVCableDist_mvgd_460_lvgd_179885_49,104648,179885,460,400.0,NA,NA,0.008948220608694976,0.030980771327442157 +LVCableDist_mvgd_460_lvgd_179885_50,104648,179885,460,400.0,NA,NA,0.00896938153460335,0.030980771327442157 +LVCableDist_mvgd_460_lvgd_179885_51,104648,179885,460,400.0,NA,NA,0.009031127687900497,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_52,104648,179885,460,400.0,NA,NA,0.009069922718732516,0.03241642157744216 +LVCableDist_mvgd_460_lvgd_179885_53,104648,179885,460,400.0,NA,NA,0.009097453351264913,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_54,104648,179885,460,400.0,NA,NA,0.009118614277173287,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_55,104648,179885,460,400.0,NA,NA,0.009147197598788227,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_56,104648,179885,460,400.0,NA,NA,0.009185992629620245,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_57,104648,179885,460,400.0,NA,NA,0.009180360430470436,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_58,104648,179885,460,400.0,NA,NA,0.009201521356378809,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_59,104648,179885,460,400.0,NA,NA,0.00919694184631154,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_179885_60,104648,179885,460,400.0,NA,NA,0.009235736877143559,0.03144665882744216 +LVCableDist_mvgd_460_lvgd_399941_1,84427,399941,460,400.0,NA,NA,0.07645132800879818,0.0007211050397081896 +LVCableDist_mvgd_460_lvgd_399941_2,84427,399941,460,400.0,NA,NA,0.08199800146917928,0.0007211050397081896 +LVCableDist_mvgd_460_lvgd_403047_1,85396,403047,460,400.0,NA,NA,0.055654173385981665,0.0 +LVCableDist_mvgd_460_lvgd_403047_2,85396,403047,460,400.0,NA,NA,0.059579558412093524,0.0 +LVCableDist_mvgd_460_lvgd_403167_2,86446,403167,460,400.0,NA,NA,0.05333677123846703,0.0 +LVCableDist_mvgd_460_lvgd_513239_1,85655,513239,460,400.0,NA,NA,0.05526962958212893,0.0003438201033320376 +LVCableDist_mvgd_460_lvgd_513239_2,85655,513239,460,400.0,NA,NA,0.05913423643848276,0.0003438201033320376 +LVCableDist_mvgd_460_lvgd_515408_1,86431,515408,460,400.0,NA,NA,0.07345111852998079,0.0016560326009541879 +LVCableDist_mvgd_460_lvgd_515408_2,86431,515408,460,400.0,NA,NA,0.07855289589382389,0.0016560326009541879 diff --git a/tests/test_data/mvgd_stats_460.csv b/tests/test_data/mvgd_stats_460.csv new file mode 100644 index 00000000..1cd5dbd2 --- /dev/null +++ b/tests/test_data/mvgd_stats_460.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 122-AL1/20-ST1A,Length of MV type 48-AL1/8-ST1A,Length of MV type NA2XS(FL)2Y 3x1x300 RM/25,Length of MV type NA2XS(FL)2Y 3x1x400 RM/35,Length of MV type NA2XS(FL)2Y 3x1x500 RM/35,Length of MV type NA2XS2Y 3x1x150 RE/25,Length of MV type NA2XS2Y 3x1x240,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +460,196853001.55914873,0,726.59,9528.300999999998,15830.0,580.0,15250.0,297.8042907856151,434.23065063213073,2216.0441619026255,2635.3959999999993,10876.779609074158,108,10254.891,5230.241110192337,5977.268176787099,11139.667243866856,3461.496644894747,25808.67317574104,3734,0.0,2.2319999999999958,121.5772776924719,29.80533333333355,9.059952380952323,10.946724126390897,11.962999999999692,102.4190000000084,3.7422405410450437,291.7455280741852,70.0,36.76671359497017,29.518067844713762,26.31856964687941,118.07227137885505,19.26948901500127,147.58160723451607,3.6878385618433898,41.05782278316463,10.504608031057963,3.956955671205086,42.044694847649495,59.886286234043965,26.943767512471847,40.5003664069203,19.445063228522134,10.986660171285168,70,4,2,189,18209,60,1,28,4,226,104,146,6,499,9,126000,24210.0 diff --git a/tests/test_data/mvgd_stats_current_460.csv b/tests/test_data/mvgd_stats_current_460.csv new file mode 100644 index 00000000..aa7a41e3 --- /dev/null +++ b/tests/test_data/mvgd_stats_current_460.csv @@ -0,0 +1,227 @@ +branch id,MV_grid_id,s_res_0,s_res_1 +Branch_Generator_mvgd_460_biogas_from_grid_874048_LVStation_mvgd_460_lvgd_135405,460,0.0,0.58 +Branch_Generator_mvgd_460_wind_onshore_1562360_MVCableDist_mvgd_460_69,460,0.0,3.05 +Branch_Generator_mvgd_460_wind_onshore_1562518_LVStation_mvgd_460_lvgd_136620,460,0.0,3.050003 +Branch_Generator_mvgd_460_wind_onshore_1562529_MVCableDist_mvgd_460_70,460,0.0,3.05 +Branch_Generator_mvgd_460_wind_onshore_1562543_LVStation_mvgd_460_lvgd_179885,460,0.0,3.050001 +Branch_Generator_mvgd_460_wind_onshore_1562544_LVStation_mvgd_460_lvgd_131525,460,0.0,3.050002 +Branch_LVLoadAreaCentre_mvgd_460_85334_MVStation_mvgd_460,460,0.0,0.0 +Branch_LVStation_mvgd_460_lvgd_127329_MVCableDist_mvgd_460_26,460,0.095378,0.016823 +Branch_LVStation_mvgd_460_lvgd_127330_MVCableDist_mvgd_460_27,460,0.068123,0.053621 +Branch_LVStation_mvgd_460_lvgd_127331_MVCableDist_mvgd_460_26,460,1.070326,0.5022 +Branch_LVStation_mvgd_460_lvgd_127331_MVCableDist_mvgd_460_28,460,1.008336,0.422537 +Branch_LVStation_mvgd_460_lvgd_127332_MVCableDist_mvgd_460_27,460,0.079117,0.206972 +Branch_LVStation_mvgd_460_lvgd_127333_MVCableDist_mvgd_460_28,460,0.861393,0.164654 +Branch_LVStation_mvgd_460_lvgd_127333_MVCableDist_mvgd_460_3,460,0.815354,0.110715 +Branch_LVStation_mvgd_460_lvgd_131197_MVCableDist_mvgd_460_29,460,0.134197,0.056079 +Branch_LVStation_mvgd_460_lvgd_131198_LVStation_mvgd_460_lvgd_402945,460,0.452585,2.275361 +Branch_LVStation_mvgd_460_lvgd_131198_MVCableDist_mvgd_460_29,460,0.376335,2.232379 +Branch_LVStation_mvgd_460_lvgd_131199_MVCableDist_mvgd_460_29,460,0.249919,2.177826 +Branch_LVStation_mvgd_460_lvgd_131199_MVCableDist_mvgd_460_9,460,0.115564,2.120148 +Branch_LVStation_mvgd_460_lvgd_131205_MVCableDist_mvgd_460_30,460,0.07538,0.0144 +Branch_LVStation_mvgd_460_lvgd_131206_LVStation_mvgd_460_lvgd_131524,460,2.005824,2.503918 +Branch_LVStation_mvgd_460_lvgd_131206_MVCableDist_mvgd_460_7,460,2.032584,2.559317 +Branch_LVStation_mvgd_460_lvgd_131444_MVCableDist_mvgd_460_8,460,0.054841,0.057701 +Branch_LVStation_mvgd_460_lvgd_131520_MVCableDist_mvgd_460_31,460,0.095346,0.072292 +Branch_LVStation_mvgd_460_lvgd_131521_MVCableDist_mvgd_460_31,460,0.832678,0.979296 +Branch_LVStation_mvgd_460_lvgd_131521_MVCableDist_mvgd_460_5,460,0.732764,1.037019 +Branch_LVStation_mvgd_460_lvgd_131522_MVCableDist_mvgd_460_31,460,0.927765,0.907205 +Branch_LVStation_mvgd_460_lvgd_131522_MVCableDist_mvgd_460_32,460,1.009893,0.863023 +Branch_LVStation_mvgd_460_lvgd_131523_LVStation_mvgd_460_lvgd_131525,460,0.670537,3.225145 +Branch_LVStation_mvgd_460_lvgd_131523_MVCableDist_mvgd_460_32,460,0.863228,3.259309 +Branch_LVStation_mvgd_460_lvgd_131524_MVCableDist_mvgd_460_32,460,1.871922,2.401454 +Branch_LVStation_mvgd_460_lvgd_131542_MVCableDist_mvgd_460_33,460,0.131658,0.137259 +Branch_LVStation_mvgd_460_lvgd_131543_MVCableDist_mvgd_460_33,460,1.122854,1.845804 +Branch_LVStation_mvgd_460_lvgd_131543_MVCableDist_mvgd_460_69,460,1.159487,1.84762 +Branch_LVStation_mvgd_460_lvgd_131544_LVStation_mvgd_460_lvgd_131572,460,0.81379,1.568342 +Branch_LVStation_mvgd_460_lvgd_131544_MVCableDist_mvgd_460_34,460,0.991698,1.714359 +Branch_LVStation_mvgd_460_lvgd_131551_MVCableDist_mvgd_460_35,460,0.447951,1.424495 +Branch_LVStation_mvgd_460_lvgd_131551_MVCableDist_mvgd_460_36,460,0.548692,1.472998 +Branch_LVStation_mvgd_460_lvgd_131552_MVCableDist_mvgd_460_35,460,0.105017,0.155268 +Branch_LVStation_mvgd_460_lvgd_131553_MVCableDist_mvgd_460_1,460,0.311553,1.259814 +Branch_LVStation_mvgd_460_lvgd_131553_MVCableDist_mvgd_460_35,460,0.346512,1.280677 +Branch_LVStation_mvgd_460_lvgd_131572_MVCableDist_mvgd_460_36,460,0.763585,1.488374 +Branch_LVStation_mvgd_460_lvgd_131573_MVCableDist_mvgd_460_36,460,0.217415,0.017125 +Branch_LVStation_mvgd_460_lvgd_131997_LVStation_mvgd_460_lvgd_403155,460,0.100634,0.0 +Branch_LVStation_mvgd_460_lvgd_131997_MVCableDist_mvgd_460_9,460,0.121352,0.036311 +Branch_LVStation_mvgd_460_lvgd_131998_MVCableDist_mvgd_460_37,460,0.098612,0.043716 +Branch_LVStation_mvgd_460_lvgd_132686_LVStation_mvgd_460_lvgd_403047,460,0.374197,0.086654 +Branch_LVStation_mvgd_460_lvgd_132686_MVCableDist_mvgd_460_38,460,0.293434,0.048218 +Branch_LVStation_mvgd_460_lvgd_132687_LVStation_mvgd_460_lvgd_135155,460,0.226418,0.081143 +Branch_LVStation_mvgd_460_lvgd_132687_MVCableDist_mvgd_460_38,460,0.293426,0.048218 +Branch_LVStation_mvgd_460_lvgd_133183_MVCableDist_mvgd_460_39,460,0.379706,0.15858 +Branch_LVStation_mvgd_460_lvgd_133184_MVCableDist_mvgd_460_11,460,1.717059,0.853214 +Branch_LVStation_mvgd_460_lvgd_133184_MVCableDist_mvgd_460_40,460,1.652293,0.727645 +Branch_LVStation_mvgd_460_lvgd_133192_MVCableDist_mvgd_460_18,460,0.016471,0.0 +Branch_LVStation_mvgd_460_lvgd_133447_MVCableDist_mvgd_460_20,460,2.119378,0.776354 +Branch_LVStation_mvgd_460_lvgd_133447_MVStation_mvgd_460,460,2.356065,0.837589 +Branch_LVStation_mvgd_460_lvgd_133448_LVStation_mvgd_460_lvgd_133451,460,1.814475,0.653734 +Branch_LVStation_mvgd_460_lvgd_133448_MVCableDist_mvgd_460_20,460,2.112429,0.744803 +Branch_LVStation_mvgd_460_lvgd_133449_MVCableDist_mvgd_460_41,460,0.157468,0.036912 +Branch_LVStation_mvgd_460_lvgd_133450_MVCableDist_mvgd_460_41,460,1.326314,0.507087 +Branch_LVStation_mvgd_460_lvgd_133450_MVCableDist_mvgd_460_43,460,1.491894,0.563606 +Branch_LVStation_mvgd_460_lvgd_133451_MVCableDist_mvgd_460_42,460,1.673411,0.639579 +Branch_LVStation_mvgd_460_lvgd_133452_LVStation_mvgd_460_lvgd_133454,460,0.125681,0.039792 +Branch_LVStation_mvgd_460_lvgd_133452_MVCableDist_mvgd_460_41,460,0.266261,0.243248 +Branch_LVStation_mvgd_460_lvgd_133453_LVStation_mvgd_460_lvgd_133455,460,0.103913,0.020975 +Branch_LVStation_mvgd_460_lvgd_133453_MVCableDist_mvgd_460_42,460,0.143611,0.076175 +Branch_LVStation_mvgd_460_lvgd_133650_LVStation_mvgd_460_lvgd_133651,460,0.825936,0.167498 +Branch_LVStation_mvgd_460_lvgd_133650_MVCableDist_mvgd_460_16,460,0.670068,0.08839 +Branch_LVStation_mvgd_460_lvgd_133651_MVCableDist_mvgd_460_44,460,0.926329,0.314698 +Branch_LVStation_mvgd_460_lvgd_133652_MVCableDist_mvgd_460_19,460,1.265114,0.528297 +Branch_LVStation_mvgd_460_lvgd_133652_MVCableDist_mvgd_460_44,460,1.242201,0.51995 +Branch_LVStation_mvgd_460_lvgd_133653_LVStation_mvgd_460_lvgd_133654,460,0.218444,0.075968 +Branch_LVStation_mvgd_460_lvgd_133653_MVCableDist_mvgd_460_44,460,0.269383,0.205269 +Branch_LVStation_mvgd_460_lvgd_134176_MVCableDist_mvgd_460_45,460,1.526423,0.483264 +Branch_LVStation_mvgd_460_lvgd_134176_MVCableDist_mvgd_460_51,460,1.470835,0.452447 +Branch_LVStation_mvgd_460_lvgd_134177_MVCableDist_mvgd_460_45,460,0.056453,0.022671 +Branch_LVStation_mvgd_460_lvgd_134178_LVStation_mvgd_460_lvgd_135369,460,1.652079,0.63979 +Branch_LVStation_mvgd_460_lvgd_134178_MVCableDist_mvgd_460_45,460,1.583177,0.505907 +Branch_LVStation_mvgd_460_lvgd_134200_MVCableDist_mvgd_460_46,460,0.055253,0.017736 +Branch_LVStation_mvgd_460_lvgd_134201_MVCableDist_mvgd_460_2,460,1.17448,0.54323 +Branch_LVStation_mvgd_460_lvgd_134201_MVCableDist_mvgd_460_46,460,1.195249,0.579689 +Branch_LVStation_mvgd_460_lvgd_134202_LVStation_mvgd_460_lvgd_134203,460,1.357504,0.631699 +Branch_LVStation_mvgd_460_lvgd_134202_MVCableDist_mvgd_460_47,460,1.250653,0.597324 +Branch_LVStation_mvgd_460_lvgd_134203_MVCableDist_mvgd_460_13,460,1.389341,0.631644 +Branch_LVStation_mvgd_460_lvgd_134676_MVCableDist_mvgd_460_48,460,1.105902,0.089375 +Branch_LVStation_mvgd_460_lvgd_134677_LVStation_mvgd_460_lvgd_134810,460,0.158686,0.153466 +Branch_LVStation_mvgd_460_lvgd_134677_MVCableDist_mvgd_460_48,460,0.015299,0.208024 +Branch_LVStation_mvgd_460_lvgd_134678_LVStation_mvgd_460_lvgd_134886,460,1.310377,0.380092 +Branch_LVStation_mvgd_460_lvgd_134678_MVCableDist_mvgd_460_49,460,1.206672,0.332522 +Branch_LVStation_mvgd_460_lvgd_134679_MVCableDist_mvgd_460_49,460,0.113973,0.035139 +Branch_LVStation_mvgd_460_lvgd_134806_LVStation_mvgd_460_lvgd_399140,460,0.001556,0.0 +Branch_LVStation_mvgd_460_lvgd_134806_MVCableDist_mvgd_460_50,460,0.036094,0.018899 +Branch_LVStation_mvgd_460_lvgd_134807_LVStation_mvgd_460_lvgd_134809,460,0.38982,0.054984 +Branch_LVStation_mvgd_460_lvgd_134807_MVCableDist_mvgd_460_50,460,0.547624,0.003811 +Branch_LVStation_mvgd_460_lvgd_134808_MVCableDist_mvgd_460_16,460,0.667708,0.088396 +Branch_LVStation_mvgd_460_lvgd_134808_MVCableDist_mvgd_460_50,460,0.583792,0.015683 +Branch_LVStation_mvgd_460_lvgd_134809_LVStation_mvgd_460_lvgd_134810,460,0.273,0.074424 +Branch_LVStation_mvgd_460_lvgd_134886_MVCableDist_mvgd_460_51,460,1.392866,0.420168 +Branch_LVStation_mvgd_460_lvgd_134887_MVCableDist_mvgd_460_51,460,0.075,0.032291 +Branch_LVStation_mvgd_460_lvgd_134950_MVCableDist_mvgd_460_13,460,1.424624,0.631565 +Branch_LVStation_mvgd_460_lvgd_134950_MVCableDist_mvgd_460_52,460,1.531876,0.708601 +Branch_LVStation_mvgd_460_lvgd_134951_MVCableDist_mvgd_460_52,460,0.117981,0.141881 +Branch_LVStation_mvgd_460_lvgd_135132_MVCableDist_mvgd_460_52,460,1.652278,0.850333 +Branch_LVStation_mvgd_460_lvgd_135132_MVCableDist_mvgd_460_54,460,1.789548,0.876819 +Branch_LVStation_mvgd_460_lvgd_135133_MVCableDist_mvgd_460_53,460,1.819195,0.89842 +Branch_LVStation_mvgd_460_lvgd_135133_MVCableDist_mvgd_460_54,460,1.789915,0.876769 +Branch_LVStation_mvgd_460_lvgd_135154_LVStation_mvgd_460_lvgd_513239,460,0.686978,0.223189 +Branch_LVStation_mvgd_460_lvgd_135154_MVCableDist_mvgd_460_56,460,0.653117,0.182276 +Branch_LVStation_mvgd_460_lvgd_135155_MVCableDist_mvgd_460_14,460,0.084572,0.102952 +Branch_LVStation_mvgd_460_lvgd_135232_LVStation_mvgd_460_lvgd_135370,460,0.028603,0.03777 +Branch_LVStation_mvgd_460_lvgd_135369_MVCableDist_mvgd_460_15,460,1.708459,0.642511 +Branch_LVStation_mvgd_460_lvgd_135370_MVCableDist_mvgd_460_17,460,0.060367,0.076263 +Branch_LVStation_mvgd_460_lvgd_135381_MVCableDist_mvgd_460_18,460,0.003893,0.007206 +Branch_LVStation_mvgd_460_lvgd_135382_LVStation_mvgd_460_lvgd_135383,460,0.222875,0.030971 +Branch_LVStation_mvgd_460_lvgd_135383_MVCableDist_mvgd_460_59,460,0.461843,0.055151 +Branch_LVStation_mvgd_460_lvgd_135384_MVCableDist_mvgd_460_59,460,0.145536,0.116764 +Branch_LVStation_mvgd_460_lvgd_135385_MVCableDist_mvgd_460_59,460,0.607414,0.171904 +Branch_LVStation_mvgd_460_lvgd_135385_MVCableDist_mvgd_460_60,460,0.679178,0.192016 +Branch_LVStation_mvgd_460_lvgd_135386_LVStation_mvgd_460_lvgd_135387,460,0.32374,0.210951 +Branch_LVStation_mvgd_460_lvgd_135386_MVCableDist_mvgd_460_60,460,0.529014,0.256475 +Branch_LVStation_mvgd_460_lvgd_135387_LVStation_mvgd_460_lvgd_135389,460,0.148808,0.172296 +Branch_LVStation_mvgd_460_lvgd_135388_LVStation_mvgd_460_lvgd_135391,460,1.418666,0.555608 +Branch_LVStation_mvgd_460_lvgd_135388_MVCableDist_mvgd_460_60,460,1.208362,0.448485 +Branch_LVStation_mvgd_460_lvgd_135389_LVStation_mvgd_460_lvgd_135390,460,0.083514,0.075832 +Branch_LVStation_mvgd_460_lvgd_135391_MVCableDist_mvgd_460_61,460,1.473928,0.651336 +Branch_LVStation_mvgd_460_lvgd_135392_MVCableDist_mvgd_460_61,460,0.067306,0.032381 +Branch_LVStation_mvgd_460_lvgd_135393_MVCableDist_mvgd_460_58,460,1.663218,0.706853 +Branch_LVStation_mvgd_460_lvgd_135393_MVCableDist_mvgd_460_61,460,1.541457,0.683714 +Branch_LVStation_mvgd_460_lvgd_135394_LVStation_mvgd_460_lvgd_136166,460,2.753933,3.376238 +Branch_LVStation_mvgd_460_lvgd_135394_MVCableDist_mvgd_460_62,460,2.367467,3.297888 +Branch_LVStation_mvgd_460_lvgd_135395_LVStation_mvgd_460_lvgd_135396,460,0.931111,1.420181 +Branch_LVStation_mvgd_460_lvgd_135395_LVStation_mvgd_460_lvgd_135397,460,0.825103,1.40243 +Branch_LVStation_mvgd_460_lvgd_135396_LVStation_mvgd_460_lvgd_135398,460,0.120802,0.042677 +Branch_LVStation_mvgd_460_lvgd_135396_MVCableDist_mvgd_460_62,460,1.253837,1.526623 +Branch_LVStation_mvgd_460_lvgd_135397_LVStation_mvgd_460_lvgd_135399,460,0.668577,1.087651 +Branch_LVStation_mvgd_460_lvgd_135399_LVStation_mvgd_460_lvgd_135400,460,0.576033,1.054807 +Branch_LVStation_mvgd_460_lvgd_135400_LVStation_mvgd_460_lvgd_135401,460,0.475697,0.994707 +Branch_LVStation_mvgd_460_lvgd_135401_LVStation_mvgd_460_lvgd_135402,460,0.308261,0.92952 +Branch_LVStation_mvgd_460_lvgd_135402_LVStation_mvgd_460_lvgd_135403,460,0.062963,0.187615 +Branch_LVStation_mvgd_460_lvgd_135402_LVStation_mvgd_460_lvgd_135404,460,0.131747,0.69217 +Branch_LVStation_mvgd_460_lvgd_135404_LVStation_mvgd_460_lvgd_135405,460,0.101563,0.633907 +Branch_LVStation_mvgd_460_lvgd_135900_MVCableDist_mvgd_460_20,460,0.005842,0.031663 +Branch_LVStation_mvgd_460_lvgd_135929_MVCableDist_mvgd_460_64,460,0.05004,0.013041 +Branch_LVStation_mvgd_460_lvgd_135930_MVCableDist_mvgd_460_64,460,0.040084,0.042462 +Branch_LVStation_mvgd_460_lvgd_135931_MVCableDist_mvgd_460_43,460,0.037838,0.0 +Branch_LVStation_mvgd_460_lvgd_136166_MVCableDist_mvgd_460_65,460,2.775274,3.4071 +Branch_LVStation_mvgd_460_lvgd_136167_MVCableDist_mvgd_460_65,460,0.19825,0.069793 +Branch_LVStation_mvgd_460_lvgd_136168_LVStation_mvgd_460_lvgd_401632,460,3.02905,3.536705 +Branch_LVStation_mvgd_460_lvgd_136168_MVCableDist_mvgd_460_65,460,2.974288,3.476275 +Branch_LVStation_mvgd_460_lvgd_136208_MVCableDist_mvgd_460_22,460,0.990188,2.752181 +Branch_LVStation_mvgd_460_lvgd_136208_MVCableDist_mvgd_460_66,460,0.956609,2.713737 +Branch_LVStation_mvgd_460_lvgd_136209_MVCableDist_mvgd_460_66,460,0.029785,0.029738 +Branch_LVStation_mvgd_460_lvgd_136210_LVStation_mvgd_460_lvgd_136615,460,0.857511,2.630242 +Branch_LVStation_mvgd_460_lvgd_136210_MVCableDist_mvgd_460_21,460,0.925296,2.685029 +Branch_LVStation_mvgd_460_lvgd_136615_MVCableDist_mvgd_460_24,460,0.77388,2.615263 +Branch_LVStation_mvgd_460_lvgd_136616_LVStation_mvgd_460_lvgd_402945,460,0.587287,2.282616 +Branch_LVStation_mvgd_460_lvgd_136616_MVCableDist_mvgd_460_67,460,0.600057,2.301486 +Branch_LVStation_mvgd_460_lvgd_136617_MVCableDist_mvgd_460_67,460,0.085281,0.264162 +Branch_LVStation_mvgd_460_lvgd_136618_LVStation_mvgd_460_lvgd_136620,460,2.186151,2.64677 +Branch_LVStation_mvgd_460_lvgd_136618_MVCableDist_mvgd_460_8,460,2.164954,2.62962 +Branch_LVStation_mvgd_460_lvgd_136619_MVCableDist_mvgd_460_68,460,2.227557,5.767713 +Branch_LVStation_mvgd_460_lvgd_136619_MVStation_mvgd_460,460,2.312009,5.839473 +Branch_LVStation_mvgd_460_lvgd_136620_MVCableDist_mvgd_460_68,460,2.227295,5.768988 +Branch_LVStation_mvgd_460_lvgd_179885_MVCableDist_mvgd_460_10,460,0.04594,3.129195 +Branch_LVStation_mvgd_460_lvgd_179885_MVCableDist_mvgd_460_25,460,0.005062,0.005175 +Branch_LVStation_mvgd_460_lvgd_179886_MVCableDist_mvgd_460_25,460,0.005062,0.005175 +Branch_LVStation_mvgd_460_lvgd_399236_MVCableDist_mvgd_460_44,460,0.046231,0.0 +Branch_LVStation_mvgd_460_lvgd_399421_MVCableDist_mvgd_460_23,460,0.001945,0.019137 +Branch_LVStation_mvgd_460_lvgd_399442_MVCableDist_mvgd_460_16,460,0.001556,0.0 +Branch_LVStation_mvgd_460_lvgd_399742_MVCableDist_mvgd_460_4,460,0.001556,0.0 +Branch_LVStation_mvgd_460_lvgd_399941_MVCableDist_mvgd_460_4,460,0.558385,1.048791 +Branch_LVStation_mvgd_460_lvgd_399941_MVCableDist_mvgd_460_5,460,0.724248,1.035797 +Branch_LVStation_mvgd_460_lvgd_400196_MVCableDist_mvgd_460_5,460,0.007793,0.0 +Branch_LVStation_mvgd_460_lvgd_400214_MVCableDist_mvgd_460_19,460,0.001167,0.027896 +Branch_LVStation_mvgd_460_lvgd_400542_MVCableDist_mvgd_460_12,460,0.002335,0.013618 +Branch_LVStation_mvgd_460_lvgd_401632_MVStation_mvgd_460,460,3.479295,3.547854 +Branch_LVStation_mvgd_460_lvgd_401639_MVCableDist_mvgd_460_11,460,0.035098,0.0 +Branch_LVStation_mvgd_460_lvgd_402115_MVCableDist_mvgd_460_6,460,0.001167,0.00767 +Branch_LVStation_mvgd_460_lvgd_402231_MVCableDist_mvgd_460_2,460,0.008184,0.024422 +Branch_LVStation_mvgd_460_lvgd_402676_MVCableDist_mvgd_460_22,460,0.001167,0.011004 +Branch_LVStation_mvgd_460_lvgd_402684_MVCableDist_mvgd_460_13,460,0.033994,0.0 +Branch_LVStation_mvgd_460_lvgd_402809_MVCableDist_mvgd_460_10,460,0.070272,0.024775 +Branch_LVStation_mvgd_460_lvgd_402819_MVCableDist_mvgd_460_3,460,0.019808,0.022175 +Branch_LVStation_mvgd_460_lvgd_403015_LVStation_mvgd_460_lvgd_403047,460,0.652577,0.086653 +Branch_LVStation_mvgd_460_lvgd_403015_MVCableDist_mvgd_460_3,460,0.794895,0.090433 +Branch_LVStation_mvgd_460_lvgd_403085_MVCableDist_mvgd_460_21,460,0.001556,0.0 +Branch_LVStation_mvgd_460_lvgd_403167_MVCableDist_mvgd_460_14,460,0.09544,0.135743 +Branch_LVStation_mvgd_460_lvgd_403167_MVCableDist_mvgd_460_55,460,0.316273,0.135728 +Branch_LVStation_mvgd_460_lvgd_403347_MVCableDist_mvgd_460_14,460,0.075596,0.034724 +Branch_LVStation_mvgd_460_lvgd_490063_MVCableDist_mvgd_460_18,460,0.020364,0.007206 +Branch_LVStation_mvgd_460_lvgd_490063_MVCableDist_mvgd_460_56,460,0.239613,0.014128 +Branch_LVStation_mvgd_460_lvgd_490064_MVCableDist_mvgd_460_55,460,0.10235,0.033883 +Branch_LVStation_mvgd_460_lvgd_513211_MVCableDist_mvgd_460_1,460,0.205557,2.037307 +Branch_LVStation_mvgd_460_lvgd_513211_MVCableDist_mvgd_460_37,460,0.194636,2.042246 +Branch_LVStation_mvgd_460_lvgd_513239_MVCableDist_mvgd_460_41,460,0.903312,0.229071 +Branch_LVStation_mvgd_460_lvgd_515408_MVCableDist_mvgd_460_53,460,0.158229,0.017393 +Branch_MVCableDist_mvgd_460_11_MVStation_mvgd_460,460,1.756016,0.851347 +Branch_MVCableDist_mvgd_460_12_MVCableDist_mvgd_460_19,460,1.268215,0.5561 +Branch_MVCableDist_mvgd_460_12_MVCableDist_mvgd_460_39,460,1.272166,0.569398 +Branch_MVCableDist_mvgd_460_15_MVCableDist_mvgd_460_17,460,0.060368,0.076261 +Branch_MVCableDist_mvgd_460_15_MVStation_mvgd_460,460,1.777971,0.718691 +Branch_MVCableDist_mvgd_460_17_MVCableDist_mvgd_460_57,460,0.0,0.0 +Branch_MVCableDist_mvgd_460_1_MVCableDist_mvgd_460_10,460,0.116215,3.153429 +Branch_MVCableDist_mvgd_460_21_MVCableDist_mvgd_460_66,460,0.926886,2.684635 +Branch_MVCableDist_mvgd_460_22_MVStation_mvgd_460,460,0.992463,2.761685 +Branch_MVCableDist_mvgd_460_23_MVCableDist_mvgd_460_4,460,0.5568,1.048736 +Branch_MVCableDist_mvgd_460_23_MVCableDist_mvgd_460_58,460,0.554642,1.067145 +Branch_MVCableDist_mvgd_460_24_MVCableDist_mvgd_460_64,460,0.09015,0.055502 +Branch_MVCableDist_mvgd_460_24_MVCableDist_mvgd_460_67,460,0.6845,2.56097 +Branch_MVCableDist_mvgd_460_27_MVCableDist_mvgd_460_28,460,0.147239,0.260581 +Branch_MVCableDist_mvgd_460_2_MVCableDist_mvgd_460_26,460,1.165608,0.518933 +Branch_MVCableDist_mvgd_460_30_MVCableDist_mvgd_460_7,460,0.07538,0.0144 +Branch_MVCableDist_mvgd_460_33_MVCableDist_mvgd_460_34,460,0.991739,1.714227 +Branch_MVCableDist_mvgd_460_37_MVCableDist_mvgd_460_9,460,0.121973,2.084027 +Branch_MVCableDist_mvgd_460_39_MVCableDist_mvgd_460_40,460,1.652073,0.727678 +Branch_MVCableDist_mvgd_460_42_MVCableDist_mvgd_460_43,460,1.529705,0.56356 +Branch_MVCableDist_mvgd_460_46_MVCableDist_mvgd_460_47,460,1.250552,0.59735 +Branch_MVCableDist_mvgd_460_48_MVCableDist_mvgd_460_49,460,1.092371,0.297395 +Branch_MVCableDist_mvgd_460_53_MVStation_mvgd_460,460,1.989143,0.915722 +Branch_MVCableDist_mvgd_460_55_MVCableDist_mvgd_460_56,460,0.416238,0.168468 +Branch_MVCableDist_mvgd_460_58_MVCableDist_mvgd_460_63,460,1.114707,1.772721 +Branch_MVCableDist_mvgd_460_62_MVCableDist_mvgd_460_63,460,1.114724,1.772649 +Branch_MVCableDist_mvgd_460_69_MVCableDist_mvgd_460_70,460,1.159604,4.861012 +Branch_MVCableDist_mvgd_460_6_MVCableDist_mvgd_460_70,460,1.159842,7.899643 +Branch_MVCableDist_mvgd_460_6_MVStation_mvgd_460,460,1.162028,7.899632 +Branch_MVCableDist_mvgd_460_7_MVCableDist_mvgd_460_8,460,2.109389,2.573555 diff --git a/tests/test_data/mvgd_stats_testgrid_after_connect_generators_expected.csv b/tests/test_data/mvgd_stats_testgrid_after_connect_generators_expected.csv new file mode 100644 index 00000000..a97de44b --- /dev/null +++ b/tests/test_data/mvgd_stats_testgrid_after_connect_generators_expected.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 48-AL1/8-ST1A,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +0,1756440729.2674575,0,0,0,2400.0,400.0,2000.0,303.85109599395315,210.0,11464.457163158828,0.0,0.0,0.0,0,490.0,558.0,2383.695583005363,403.0,3834.695583005363,4775,0.0,0.462,11.454999999999988,13.065333333333227,0.76,1.001111111111111,5.854000000000053,14.476999999999615,0.124,47.19844444444481,26.0,89.15024399472986,60.375992813183395,27.558939066332336,362.2559568791004,44.574621997364936,388.2552813354739,388.2552813354739,0.0,45.14362199736493,22.05373740472448,5,6,6,19,3969,19,0.0,5,6,34,9,19,4,83,12,302000.0,4870.0 diff --git a/tests/test_data/mvgd_stats_testgrid_after_control_circuit_breakers-close_expected.csv b/tests/test_data/mvgd_stats_testgrid_after_control_circuit_breakers-close_expected.csv new file mode 100644 index 00000000..66493cbc --- /dev/null +++ b/tests/test_data/mvgd_stats_testgrid_after_control_circuit_breakers-close_expected.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 48-AL1/8-ST1A,Length of MV type NA2XS2Y 3x1x150 RE/25,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +0,1756440729.2674575,0,0,0,2400.0,400.0,2000.0,314.3121693121693,223.9638281838734,11257.34533461855,0.0,0.0,0.0,0,490.0,558.0,2383.695583005363,403.0,3834.695583005363,4775,0.0,0.156,11.914999999999985,12.04133333333324,1.1320000000000003,1.653111111111112,5.480000000000038,14.30099999999964,0.5200000000000002,47.19844444444481,26.0,89.15024399472986,60.375992813183395,27.558939066332336,362.2559568791004,44.574621997364936,388.2552813354739,377.22449585756635,11.030785477907525,0.0,45.14362199736493,22.05373740472448,5,6,6,19,3969,19,0.0,5,6,34,9,19,4,83,12,302000.0,4870.0 diff --git a/tests/test_data/mvgd_stats_testgrid_after_reinforce_grid_expected.csv b/tests/test_data/mvgd_stats_testgrid_after_reinforce_grid_expected.csv new file mode 100644 index 00000000..66493cbc --- /dev/null +++ b/tests/test_data/mvgd_stats_testgrid_after_reinforce_grid_expected.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 48-AL1/8-ST1A,Length of MV type NA2XS2Y 3x1x150 RE/25,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +0,1756440729.2674575,0,0,0,2400.0,400.0,2000.0,314.3121693121693,223.9638281838734,11257.34533461855,0.0,0.0,0.0,0,490.0,558.0,2383.695583005363,403.0,3834.695583005363,4775,0.0,0.156,11.914999999999985,12.04133333333324,1.1320000000000003,1.653111111111112,5.480000000000038,14.30099999999964,0.5200000000000002,47.19844444444481,26.0,89.15024399472986,60.375992813183395,27.558939066332336,362.2559568791004,44.574621997364936,388.2552813354739,377.22449585756635,11.030785477907525,0.0,45.14362199736493,22.05373740472448,5,6,6,19,3969,19,0.0,5,6,34,9,19,4,83,12,302000.0,4870.0 diff --git a/tests/test_data/mvgd_stats_testgrid_after_run_powerflow_expected.csv b/tests/test_data/mvgd_stats_testgrid_after_run_powerflow_expected.csv new file mode 100644 index 00000000..a97de44b --- /dev/null +++ b/tests/test_data/mvgd_stats_testgrid_after_run_powerflow_expected.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 48-AL1/8-ST1A,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +0,1756440729.2674575,0,0,0,2400.0,400.0,2000.0,303.85109599395315,210.0,11464.457163158828,0.0,0.0,0.0,0,490.0,558.0,2383.695583005363,403.0,3834.695583005363,4775,0.0,0.462,11.454999999999988,13.065333333333227,0.76,1.001111111111111,5.854000000000053,14.476999999999615,0.124,47.19844444444481,26.0,89.15024399472986,60.375992813183395,27.558939066332336,362.2559568791004,44.574621997364936,388.2552813354739,388.2552813354739,0.0,45.14362199736493,22.05373740472448,5,6,6,19,3969,19,0.0,5,6,34,9,19,4,83,12,302000.0,4870.0 diff --git a/tests/test_data/mvgd_stats_testgrid_after_set_circuit_breakers_expected.csv b/tests/test_data/mvgd_stats_testgrid_after_set_circuit_breakers_expected.csv new file mode 100644 index 00000000..a97de44b --- /dev/null +++ b/tests/test_data/mvgd_stats_testgrid_after_set_circuit_breakers_expected.csv @@ -0,0 +1,2 @@ +grid_id,District Area,Gen. Cap. Connected to MV Rings,Gen. Cap. of LV at v_level 6,Gen. Cap. of LV at v_level 7,Gen. Cap. of MV at v_level 5,Gen. Cap. of MV biomass/biogas_from_grid,Gen. Cap. of MV wind/wind_onshore,I_max of first segment of path from LV station to terminal node (mean value),I_max of first segment of path from MV station to terminal node (mean value),Impedance Z of path to terminal node (mean value),LA Aggregated LV Gen. Cap.,LA Aggregated LV Peak Load total,LA Aggregated Population,LA Total LV Gen. Cap.,LA Total LV Peak Load Agricultural,LA Total LV Peak Load Industrial,LA Total LV Peak Load Residential,LA Total LV Peak Load Retail,LA Total LV Peak Load total,LA Total Population,Length of LV overhead lines,Length of LV type NAYY 4x1x120,Length of LV type NAYY 4x1x150,Length of LV type NAYY 4x1x185,Length of LV type NAYY 4x1x240,Length of LV type NAYY 4x1x300,Length of LV type NAYY 4x1x35,Length of LV type NAYY 4x1x50,Length of LV type NAYY 4x1x95,Length of LV underground cables,Length of MV Non-Rings total,Length of MV Ring max,Length of MV Ring mean,Length of MV Ring min,Length of MV Rings total,Length of MV max path,Length of MV overhead lines,Length of MV type 48-AL1/8-ST1A,Length of MV underground cables,Length of MVLV max path,Length of path from MV station to terminal node (mean value),Number of Cable Distr,Number of Circuit Breakers,Number of HV/MV Trafos,Number of LV Stations,Number of LV branches,Number of Load Areas,Number of Load Areas - Aggregated,Number of Load Areas - Satellite,Number of MV Rings,Number of MV branches,Number of MV branches not in a ring,Number of MV/LV Trafos,Number of isolated MV Generators,Number of lines and cables going out from LV stations,Number of lines and cables going out from MV stations,Trafos HV/MV Acc s_max_a,Trafos MV/LV Acc s_max_a +0,1756440729.2674575,0,0,0,2400.0,400.0,2000.0,303.85109599395315,210.0,11464.457163158828,0.0,0.0,0.0,0,490.0,558.0,2383.695583005363,403.0,3834.695583005363,4775,0.0,0.462,11.454999999999988,13.065333333333227,0.76,1.001111111111111,5.854000000000053,14.476999999999615,0.124,47.19844444444481,26.0,89.15024399472986,60.375992813183395,27.558939066332336,362.2559568791004,44.574621997364936,388.2552813354739,388.2552813354739,0.0,45.14362199736493,22.05373740472448,5,6,6,19,3969,19,0.0,5,6,34,9,19,4,83,12,302000.0,4870.0 diff --git a/tests/test_data/mvgd_stats_voltage_460.csv b/tests/test_data/mvgd_stats_voltage_460.csv new file mode 100644 index 00000000..f44616b4 --- /dev/null +++ b/tests/test_data/mvgd_stats_voltage_460.csv @@ -0,0 +1,272 @@ +node id,MV_grid_id,V nominal,V_res_0,V_res_1 +Generator_mvgd_460_biogas_from_grid_874048,460,20,0.9921868058113474,1.0063158296423307 +Generator_mvgd_460_wind_onshore_1562360,460,20,0.9988110345651889,1.0060844553387946 +Generator_mvgd_460_wind_onshore_1562518,460,20,0.997233447552044,1.0071337244339762 +Generator_mvgd_460_wind_onshore_1562529,460,20,0.9989117364953576,1.0058262188438174 +Generator_mvgd_460_wind_onshore_1562543,460,20,0.997477076553949,1.010108933975857 +Generator_mvgd_460_wind_onshore_1562544,460,20,0.9945476401355089,1.0092869268625453 +LVLoadAreaCentre_mvgd_460_85334,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_127329,460,20,0.9637349796507095,1.0072809985943623 +LVStation_mvgd_460_lvgd_127330,460,20,0.9708316387607225,1.0136173106421813 +LVStation_mvgd_460_lvgd_127331,460,20,0.9726077285861713,1.017911699428739 +LVStation_mvgd_460_lvgd_127332,460,20,0.9817301758235151,1.014724088992849 +LVStation_mvgd_460_lvgd_127333,460,20,0.9765431786839133,1.0140804938096812 +LVStation_mvgd_460_lvgd_131197,460,20,0.9774717944570109,1.010737362578769 +LVStation_mvgd_460_lvgd_131198,460,20,0.9769073019484733,1.013134873396674 +LVStation_mvgd_460_lvgd_131199,460,20,0.9819924038483209,1.0090709154513908 +LVStation_mvgd_460_lvgd_131205,460,20,0.9762524483648862,1.0085852766813466 +LVStation_mvgd_460_lvgd_131206,460,20,0.9890248044679981,1.0159809868386296 +LVStation_mvgd_460_lvgd_131444,460,20,0.9823621147294882,1.0153283748497552 +LVStation_mvgd_460_lvgd_131520,460,20,0.9696432128254913,1.0194169787289737 +LVStation_mvgd_460_lvgd_131521,460,20,0.9682816296850568,1.016977535741909 +LVStation_mvgd_460_lvgd_131522,460,20,0.9731719288868673,1.0147829382680384 +LVStation_mvgd_460_lvgd_131523,460,20,0.9774604930396014,1.0093478574121966 +LVStation_mvgd_460_lvgd_131524,460,20,0.9752805353136256,1.0161667910321588 +LVStation_mvgd_460_lvgd_131525,460,20,0.9727933155779765,1.0102842753508314 +LVStation_mvgd_460_lvgd_131542,460,20,0.9789250949975349,1.017942255520205 +LVStation_mvgd_460_lvgd_131543,460,20,0.9890707096419694,1.0061891820541973 +LVStation_mvgd_460_lvgd_131544,460,20,0.9824688528051307,1.013728066400806 +LVStation_mvgd_460_lvgd_131551,460,20,0.9708815253188868,1.0160229874528068 +LVStation_mvgd_460_lvgd_131552,460,20,0.982221092104635,1.0208721833856902 +LVStation_mvgd_460_lvgd_131553,460,20,0.9881785513009289,1.0114895076513641 +LVStation_mvgd_460_lvgd_131572,460,20,0.9850175084185387,1.0207775191360418 +LVStation_mvgd_460_lvgd_131573,460,20,0.9786471546223617,1.007481898117487 +LVStation_mvgd_460_lvgd_131997,460,20,0.9920556584967537,1.0138268902068546 +LVStation_mvgd_460_lvgd_131998,460,20,0.9715460303052049,1.0151778604675838 +LVStation_mvgd_460_lvgd_132188,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132189,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132190,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132191,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132192,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132193,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132194,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132195,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132196,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132197,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132198,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132199,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132200,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132201,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132202,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132203,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132204,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132205,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132206,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132207,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132208,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132209,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132210,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132211,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132212,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132213,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132214,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132215,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132216,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132217,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132218,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132219,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132220,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132221,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132222,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132223,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132224,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132225,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132226,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132227,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132228,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132229,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_132686,460,20,0.9732649597746965,1.0139677518217918 +LVStation_mvgd_460_lvgd_132687,460,20,0.9669710676890404,1.011916917048953 +LVStation_mvgd_460_lvgd_133183,460,20,0.9721715611370059,1.0076906908419831 +LVStation_mvgd_460_lvgd_133184,460,20,0.9844510167389577,1.0141731104884097 +LVStation_mvgd_460_lvgd_133192,460,20,0.981154458627811,1.004214118098336 +LVStation_mvgd_460_lvgd_133447,460,20,0.9701106226126038,1.0062839944715944 +LVStation_mvgd_460_lvgd_133448,460,20,0.97256102295236,1.005991723292635 +LVStation_mvgd_460_lvgd_133449,460,20,0.9631746184533586,1.00719922056451 +LVStation_mvgd_460_lvgd_133450,460,20,0.9724438410962127,1.0066349207760683 +LVStation_mvgd_460_lvgd_133451,460,20,0.9667055850334125,1.0048697174142849 +LVStation_mvgd_460_lvgd_133452,460,20,0.974354121543395,1.013936896429125 +LVStation_mvgd_460_lvgd_133453,460,20,0.9771527038202958,1.0130878154978713 +LVStation_mvgd_460_lvgd_133454,460,20,0.9680512179733592,1.0074719979527431 +LVStation_mvgd_460_lvgd_133455,460,20,0.9719896323895079,1.0055694561908797 +LVStation_mvgd_460_lvgd_133650,460,20,0.9652879171429948,1.0116201216180971 +LVStation_mvgd_460_lvgd_133651,460,20,0.9739105772043809,1.017404973380018 +LVStation_mvgd_460_lvgd_133652,460,20,0.9834052406857954,1.0058830476974332 +LVStation_mvgd_460_lvgd_133653,460,20,0.9814380613282733,1.015880123346463 +LVStation_mvgd_460_lvgd_133654,460,20,0.9692220619080447,1.0083945995213424 +LVStation_mvgd_460_lvgd_134176,460,20,0.9758459744177477,1.008668059188255 +LVStation_mvgd_460_lvgd_134177,460,20,0.9757419981127492,1.0071801033382057 +LVStation_mvgd_460_lvgd_134178,460,20,0.9814397559332465,1.014980045303015 +LVStation_mvgd_460_lvgd_134200,460,20,0.9753053278690227,1.0071265114570318 +LVStation_mvgd_460_lvgd_134201,460,20,0.9843584106828341,1.0103859568239852 +LVStation_mvgd_460_lvgd_134202,460,20,0.9740870233915774,1.0071001540072562 +LVStation_mvgd_460_lvgd_134203,460,20,0.9820675212570599,1.003889390899327 +LVStation_mvgd_460_lvgd_134676,460,20,0.9681314692313224,1.0051357391593274 +LVStation_mvgd_460_lvgd_134677,460,20,0.9643395429433627,1.0093146024988109 +LVStation_mvgd_460_lvgd_134678,460,20,0.9596113774199918,1.0124382329218586 +LVStation_mvgd_460_lvgd_134679,460,20,0.9692065912337354,1.007535772372272 +LVStation_mvgd_460_lvgd_134806,460,20,0.9777510057025971,1.0080309396395506 +LVStation_mvgd_460_lvgd_134807,460,20,0.9629934393951419,1.0094022181557951 +LVStation_mvgd_460_lvgd_134808,460,20,0.9648668987795537,1.0170903761404189 +LVStation_mvgd_460_lvgd_134809,460,20,0.9691299988010963,1.0065033512911408 +LVStation_mvgd_460_lvgd_134810,460,20,0.9694217912720279,1.0117759091177732 +LVStation_mvgd_460_lvgd_134886,460,20,0.9664633881897395,1.010789661184304 +LVStation_mvgd_460_lvgd_134887,460,20,0.9685413083987308,1.0094147034141405 +LVStation_mvgd_460_lvgd_134950,460,20,0.9755704487624755,1.0103308583084443 +LVStation_mvgd_460_lvgd_134951,460,20,0.9741027696797179,1.0157949478888366 +LVStation_mvgd_460_lvgd_135132,460,20,0.9727770074859158,1.0051251849622604 +LVStation_mvgd_460_lvgd_135133,460,20,0.9861877535443742,1.0062911428343067 +LVStation_mvgd_460_lvgd_135154,460,20,0.9768352842256097,1.011331301627689 +LVStation_mvgd_460_lvgd_135155,460,20,0.9684176986622901,1.0056607778257658 +LVStation_mvgd_460_lvgd_135232,460,20,0.9873243053374273,1.0084284609159275 +LVStation_mvgd_460_lvgd_135369,460,20,0.979882865905916,1.00258017833728 +LVStation_mvgd_460_lvgd_135370,460,20,0.9865498788189156,1.008497392292291 +LVStation_mvgd_460_lvgd_135381,460,20,0.9844585003759652,1.0054670804280923 +LVStation_mvgd_460_lvgd_135382,460,20,0.9722150915784161,1.0067537078006252 +LVStation_mvgd_460_lvgd_135383,460,20,0.9707663174731082,1.0064030353893065 +LVStation_mvgd_460_lvgd_135384,460,20,0.9704982605225402,1.0154674831444024 +LVStation_mvgd_460_lvgd_135385,460,20,0.9735303499941066,1.0086219173592743 +LVStation_mvgd_460_lvgd_135386,460,20,0.9739176769115837,1.0074890837176653 +LVStation_mvgd_460_lvgd_135387,460,20,0.976655951767273,1.0071544231664653 +LVStation_mvgd_460_lvgd_135388,460,20,0.9736710051699153,1.0105191008869356 +LVStation_mvgd_460_lvgd_135389,460,20,0.9751645930100062,1.0213883585632566 +LVStation_mvgd_460_lvgd_135390,460,20,0.9703025886880723,1.0180276412732356 +LVStation_mvgd_460_lvgd_135391,460,20,0.97822538181148,1.0211567594424826 +LVStation_mvgd_460_lvgd_135392,460,20,0.9750328230743903,1.0106394221833377 +LVStation_mvgd_460_lvgd_135393,460,20,0.9747037488743712,1.0071245681975165 +LVStation_mvgd_460_lvgd_135394,460,20,0.9727194511676214,1.0071041047679532 +LVStation_mvgd_460_lvgd_135395,460,20,0.9768450083937121,1.0069538236726703 +LVStation_mvgd_460_lvgd_135396,460,20,0.9746432321051361,1.0084611009435573 +LVStation_mvgd_460_lvgd_135397,460,20,0.9843523093874995,1.0140076219506713 +LVStation_mvgd_460_lvgd_135398,460,20,0.9746875804689954,1.009053097886403 +LVStation_mvgd_460_lvgd_135399,460,20,0.9680476976457351,1.0112185416787018 +LVStation_mvgd_460_lvgd_135400,460,20,0.9658524982932712,1.0159245031541013 +LVStation_mvgd_460_lvgd_135401,460,20,0.9772938734631954,1.0090962973055622 +LVStation_mvgd_460_lvgd_135402,460,20,0.9752988078918221,1.0103377766779296 +LVStation_mvgd_460_lvgd_135403,460,20,0.9866490912052865,1.015177306186518 +LVStation_mvgd_460_lvgd_135404,460,20,0.9843345510643534,1.0158958776136153 +LVStation_mvgd_460_lvgd_135405,460,20,0.9770676140405352,1.010896212403568 +LVStation_mvgd_460_lvgd_135900,460,20,0.9870978513574389,1.0088262987503718 +LVStation_mvgd_460_lvgd_135929,460,20,0.9846566890735872,1.0065532033818043 +LVStation_mvgd_460_lvgd_135930,460,20,0.9872636898379674,1.011581170926989 +LVStation_mvgd_460_lvgd_135931,460,20,0.9775132466809002,1.0036539203184927 +LVStation_mvgd_460_lvgd_136166,460,20,0.9885697958007422,1.009942156868898 +LVStation_mvgd_460_lvgd_136167,460,20,0.9764084612462166,1.00760570657874 +LVStation_mvgd_460_lvgd_136168,460,20,0.9830716367595759,1.0141377383644956 +LVStation_mvgd_460_lvgd_136208,460,20,0.9898550646034232,1.0097619032771576 +LVStation_mvgd_460_lvgd_136209,460,20,0.9907013457734175,1.0083150724641965 +LVStation_mvgd_460_lvgd_136210,460,20,0.980529050946271,1.0132537662734615 +LVStation_mvgd_460_lvgd_136615,460,20,0.9759909209089958,1.0067073772418846 +LVStation_mvgd_460_lvgd_136616,460,20,0.9945343760076764,1.0081226065543645 +LVStation_mvgd_460_lvgd_136617,460,20,0.9935145778159871,1.0115304864609915 +LVStation_mvgd_460_lvgd_136618,460,20,0.9916508503443557,1.008281436659201 +LVStation_mvgd_460_lvgd_136619,460,20,0.9769072486788888,1.0169312225884244 +LVStation_mvgd_460_lvgd_136620,460,20,0.9866116769333604,1.0184742754705776 +LVStation_mvgd_460_lvgd_179885,460,20,0.9868579961615377,1.0221154563674708 +LVStation_mvgd_460_lvgd_179886,460,20,0.9961699246472057,1.0100378497176201 +LVStation_mvgd_460_lvgd_399140,460,20,0.9864041667773914,1.0047621507130229 +LVStation_mvgd_460_lvgd_399236,460,20,0.9767173439395542,1.0044991327086459 +LVStation_mvgd_460_lvgd_399421,460,20,0.9925753303024066,1.008521028382716 +LVStation_mvgd_460_lvgd_399442,460,20,0.9871427537803648,1.0046884512419072 +LVStation_mvgd_460_lvgd_399742,460,20,0.9930713729714651,1.0057953885746915 +LVStation_mvgd_460_lvgd_399941,460,20,0.978657889095964,1.0065727803468014 +LVStation_mvgd_460_lvgd_400196,460,20,0.9916583678229649,1.006054005085386 +LVStation_mvgd_460_lvgd_400214,460,20,0.9894079236504542,1.0091018640782294 +LVStation_mvgd_460_lvgd_400542,460,20,0.9906166362549741,1.0060600968755637 +LVStation_mvgd_460_lvgd_401632,460,20,0.9841200836716774,1.001527723112755 +LVStation_mvgd_460_lvgd_401639,460,20,0.9886554878378505,1.0009281202052147 +LVStation_mvgd_460_lvgd_402115,460,20,0.9988157947017299,1.0055049178249325 +LVStation_mvgd_460_lvgd_402231,460,20,0.987031048388898,1.008553778271271 +LVStation_mvgd_460_lvgd_402676,460,20,0.9985778958969418,1.0041860766389563 +LVStation_mvgd_460_lvgd_402684,460,20,0.981714376408945,1.0037531176481185 +LVStation_mvgd_460_lvgd_402809,460,20,0.9791198636889888,1.013224965384691 +LVStation_mvgd_460_lvgd_402819,460,20,0.9825779000870213,1.0083554220251771 +LVStation_mvgd_460_lvgd_402945,460,20,0.9771474014786078,1.0059589264148694 +LVStation_mvgd_460_lvgd_403015,460,20,0.9647900038400645,1.0049733632955773 +LVStation_mvgd_460_lvgd_403047,460,20,0.970922467233683,1.0045998428217588 +LVStation_mvgd_460_lvgd_403085,460,20,0.9979728880923737,1.0032621438565772 +LVStation_mvgd_460_lvgd_403155,460,20,0.9709502269527618,1.007603839107758 +LVStation_mvgd_460_lvgd_403167,460,20,0.9718544886096487,1.0042875100505537 +LVStation_mvgd_460_lvgd_403347,460,20,0.9652072143189095,1.0103892428967605 +LVStation_mvgd_460_lvgd_490063,460,20,0.9656394844211134,1.0045662597804499 +LVStation_mvgd_460_lvgd_490064,460,20,0.9583043555349958,1.0100493256273897 +LVStation_mvgd_460_lvgd_496358,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_496362,460,20,0.0,0.0 +LVStation_mvgd_460_lvgd_513211,460,20,0.9941683606844488,1.0090302600272025 +LVStation_mvgd_460_lvgd_513239,460,20,0.9666980371169643,1.0043091556492865 +LVStation_mvgd_460_lvgd_515408,460,20,0.9701970539834998,1.003958939208739 +MVCableDist_mvgd_460_1,460,20,0.9975191341734854,1.0082480402934229 +MVCableDist_mvgd_460_10,460,20,0.9974808247711751,1.008964190444765 +MVCableDist_mvgd_460_11,460,20,0.9977971509479947,1.000928120205215 +MVCableDist_mvgd_460_12,460,20,0.9912258788076597,1.0036824614160669 +MVCableDist_mvgd_460_13,460,20,0.990618011971702,1.0037531176481185 +MVCableDist_mvgd_460_14,460,20,0.9852710348113655,1.0043981922122411 +MVCableDist_mvgd_460_15,460,20,0.9948522648132877,1.0018253795679062 +MVCableDist_mvgd_460_16,460,20,0.9875487719931825,1.0046884512419072 +MVCableDist_mvgd_460_17,460,20,0.9948299356732997,1.0018480146030293 +MVCableDist_mvgd_460_18,460,20,0.9854755021226563,1.004214118098336 +MVCableDist_mvgd_460_19,460,20,0.9897132563905072,1.00425193905422 +MVCableDist_mvgd_460_2,460,20,0.9891767492516969,1.0043015297213451 +MVCableDist_mvgd_460_20,460,20,0.988632277717869,1.0033119067408007 +MVCableDist_mvgd_460_21,460,20,0.9983765833588975,1.003262143856577 +MVCableDist_mvgd_460_22,460,20,0.9988793245960359,1.0022656410532098 +MVCableDist_mvgd_460_23,460,20,0.9930812884382977,1.0051967035164997 +MVCableDist_mvgd_460_24,460,20,0.9979682160508575,1.0041482845883507 +MVCableDist_mvgd_460_25,460,20,0.9974768075288204,1.00914165961809 +MVCableDist_mvgd_460_26,460,20,0.9890115936667602,1.0043628770513535 +MVCableDist_mvgd_460_27,460,20,0.9887861251336577,1.0044521630063596 +MVCableDist_mvgd_460_28,460,20,0.9887945829118455,1.0044392891311131 +MVCableDist_mvgd_460_29,460,20,0.9974541776584509,1.00569471228157 +MVCableDist_mvgd_460_3,460,20,0.9877605924588446,1.0045181445938576 +MVCableDist_mvgd_460_30,460,20,0.995990932868061,1.00609313664573 +MVCableDist_mvgd_460_31,460,20,0.9947385490464556,1.0071821574310762 +MVCableDist_mvgd_460_32,460,20,0.9947952214206092,1.0072133703145587 +MVCableDist_mvgd_460_33,460,20,0.9984915291484258,1.0059089754917603 +MVCableDist_mvgd_460_34,460,20,0.9984500822585756,1.0059733885197881 +MVCableDist_mvgd_460_35,460,20,0.9977783132208674,1.0073552286925178 +MVCableDist_mvgd_460_36,460,20,0.9980876407632263,1.006599779995606 +MVCableDist_mvgd_460_37,460,20,0.9974420536018199,1.007703909080138 +MVCableDist_mvgd_460_38,460,20,0.985654700245678,1.0046112985070257 +MVCableDist_mvgd_460_39,460,20,0.9924875369245355,1.0031967031378284 +MVCableDist_mvgd_460_4,460,20,0.9934751631861418,1.0057953885746915 +MVCableDist_mvgd_460_40,460,20,0.9926083916392909,1.0031508099161663 +MVCableDist_mvgd_460_41,460,20,0.9869832359978518,1.0038500475692662 +MVCableDist_mvgd_460_42,460,20,0.987602956639895,1.0036413324053803 +MVCableDist_mvgd_460_43,460,20,0.9875644179104921,1.0036539203184927 +MVCableDist_mvgd_460_44,460,20,0.9890082647256909,1.0044991327086459 +MVCableDist_mvgd_460_45,460,20,0.9905625445910744,1.0032552784721267 +MVCableDist_mvgd_460_46,460,20,0.989823482131735,1.0040515253204174 +MVCableDist_mvgd_460_47,460,20,0.9899402758930534,1.004007804883977 +MVCableDist_mvgd_460_48,460,20,0.9861578528716517,1.00439218090219 +MVCableDist_mvgd_460_49,460,20,0.9863201558185503,1.0043537909892744 +MVCableDist_mvgd_460_5,460,20,0.9936818298231441,1.006054005085386 +MVCableDist_mvgd_460_50,460,20,0.986824756419548,1.0047558032276949 +MVCableDist_mvgd_460_51,460,20,0.9883428566205799,1.0038479044897697 +MVCableDist_mvgd_460_52,460,20,0.9917291491070221,1.0033393879874393 +MVCableDist_mvgd_460_53,460,20,0.9940073120979027,1.0023645450254255 +MVCableDist_mvgd_460_54,460,20,0.9934268116789828,1.0026026672091901 +MVCableDist_mvgd_460_55,460,20,0.9855522416070422,1.0042109454254897 +MVCableDist_mvgd_460_56,460,20,0.9855691105269019,1.0042045822048673 +MVCableDist_mvgd_460_57,460,20,0.9948299356732997,1.0018480146030293 +MVCableDist_mvgd_460_58,460,20,0.9929498952890694,1.004992343356698 +MVCableDist_mvgd_460_59,460,20,0.9923140193719051,1.0051571909846067 +MVCableDist_mvgd_460_6,460,20,0.9991170700358025,1.0041673027979139 +MVCableDist_mvgd_460_60,460,20,0.9923978311549143,1.0051404335422096 +MVCableDist_mvgd_460_61,460,20,0.9926981090466102,1.0050645077508127 +MVCableDist_mvgd_460_62,460,20,0.9930071368198639,1.0049401939442935 +MVCableDist_mvgd_460_63,460,20,0.992991227211613,1.0049546868485768 +MVCableDist_mvgd_460_64,460,20,0.9976800022443252,1.0042905191182983 +MVCableDist_mvgd_460_65,460,20,0.9941813807502151,1.0040406025344917 +MVCableDist_mvgd_460_66,460,20,0.9984200144776862,1.0031802817397153 +MVCableDist_mvgd_460_67,460,20,0.9979279603522002,1.0042482759711415 +MVCableDist_mvgd_460_68,460,20,0.997353050315126,1.0047625248252388 +MVCableDist_mvgd_460_69,460,20,0.9988110345651889,1.0054540150723854 +MVCableDist_mvgd_460_7,460,20,0.9959999437350484,1.006091805787132 +MVCableDist_mvgd_460_70,460,20,0.9989117364953576,1.0051430726762125 +MVCableDist_mvgd_460_8,460,20,0.9966810409729182,1.0054779860662189 +MVCableDist_mvgd_460_9,460,20,0.9974299476031631,1.0076013821696672 +MVStation_mvgd_460,460,20,1.0,1.0 +circuit_breaker_1,460,20,0.0,0.0 +circuit_breaker_2,460,20,0.0,0.0 +circuit_breaker_3,460,20,0.0,0.0 +circuit_breaker_4,460,20,0.0,0.0 diff --git a/tests/tools/help_functions.py b/tests/tools/help_functions.py new file mode 100644 index 00000000..4a33f5c4 --- /dev/null +++ b/tests/tools/help_functions.py @@ -0,0 +1,41 @@ +import numpy as np +import pandas as pd + + +def compare_data_frames_by_tolerance(df_orig, df_comp, absolute_tolerance = 1e-5, relative_tolerance = 1e-2): + ''' + Function that compares pandas.DataFrames by absolute and relative tolerance. Returns True if inserted dataframes + fulfill defined either absolute or relative tolerances. + Parameters + ---------- + df_orig: :pandas:`pandas.DataFrame` + Dataframe which counts as original to compare to + df_comp: :pandas:`pandas.DataFrame` + Dataframe being compared to original + absolute_tolerance: float + absolute tolerance with which values count as same, by default 1e-5 + relative_tolerance: float + relative tolerance with which values count as same, by default 0.1% + Returns + ------- + is_equal: bool + Boolean that indicates whether dataframes are seen as equal given the selected tolerances + count_of_unequal entries: int + ''' + + # check which entries are exactly the same + is_same = (df_orig == df_comp)._values + # separately check for nan + is_nan = (pd.isnull(df_orig)._values*pd.isnull(df_comp)._values) + if(sum(sum(pd.isnull(df_orig)._values != pd.isnull(df_comp)._values))): + return False + # check which entries fulfill absolute tolerance + is_almost_equal = (abs(np.subtract(df_comp,df_orig)) < absolute_tolerance)._values + # check which entries fulfill relative tolerance + correction_factor = (df_orig == 0) * 1e-5 + is_relatively_equal = (abs(np.subtract(df_comp,df_orig))/(df_orig+correction_factor) < relative_tolerance)._values + # if either relative or absolute tolerance are fulfilled or values are the same, the entry counts as equal; + count_of_unequal_entries = sum(sum(~is_same*~is_nan*~is_almost_equal*~is_relatively_equal)) + # check weather all entries are equal + is_equal = count_of_unequal_entries == 0 + return is_equal, count_of_unequal_entries \ No newline at end of file diff --git a/tests/tools/test_results.py b/tests/tools/test_results.py new file mode 100644 index 00000000..b709eb65 --- /dev/null +++ b/tests/tools/test_results.py @@ -0,0 +1,143 @@ +import pytest +from tests.core.network.test_grids import TestMVGridDing0 +from ding0.tools.results import calculate_mvgd_stats +import pandas as pd +from pandas.testing import assert_frame_equal +import os + + +TEST_DATA_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "test_data")) + + +class TestCalculateStats(object): + + @pytest.fixture + def connect_generators(self): + network, _, _ = TestMVGridDing0().minimal_unrouted_testgrid() + network.mv_routing() + network.connect_generators() + return network + + @pytest.fixture + def set_circuit_breakers(self, connect_generators): + connect_generators.set_circuit_breakers(debug=False) + return connect_generators + + @pytest.fixture + def run_powerflow(self, set_circuit_breakers): + set_circuit_breakers.run_powerflow( + "session", method='onthefly', export_pypsa=False, debug=False) + return set_circuit_breakers + + @pytest.fixture + def reinforce_grid(self, run_powerflow): + run_powerflow.reinforce_grid() + return run_powerflow + + @pytest.fixture + def control_circuit_breakers(self, reinforce_grid): + reinforce_grid.control_circuit_breakers(mode='close') + return reinforce_grid + + @pytest.mark.dependency() + def test_calculate_stats_connect_generators(self, connect_generators): + mvgd_stats = calculate_mvgd_stats(connect_generators) + mvgd_stats_expected = pd.read_csv(os.path.join( + TEST_DATA_PATH, + "mvgd_stats_testgrid_after_connect_generators_expected.csv"), + index_col=0) + assert_frame_equal( + mvgd_stats, mvgd_stats_expected, + check_dtype=False, + check_index_type=False) + + @pytest.mark.dependency(depends=[ + "TestCalculateStats::test_calculate_stats_connect_generators"]) + def test_calculate_stats_set_circuit_breakers(self, connect_generators): + mvgd_stats = calculate_mvgd_stats(connect_generators) + mvgd_stats_expected = pd.read_csv(os.path.join( + TEST_DATA_PATH, + "mvgd_stats_testgrid_after_set_circuit_breakers_expected.csv"), + index_col=0) + assert_frame_equal( + mvgd_stats, mvgd_stats_expected, + check_dtype=False, + check_index_type=False) + + @pytest.mark.dependency(depends=[ + "TestCalculateStats::test_calculate_stats_set_circuit_breakers"]) + def test_calculate_stats_run_powerflow(self, run_powerflow): + mvgd_stats = calculate_mvgd_stats(run_powerflow) + mvgd_stats_expected = pd.read_csv(os.path.join( + TEST_DATA_PATH, + "mvgd_stats_testgrid_after_run_powerflow_expected.csv"), + index_col=0) + assert_frame_equal( + mvgd_stats, mvgd_stats_expected, + check_dtype=False, + check_index_type=False) + + @pytest.mark.dependency(depends=[ + "TestCalculateStats::test_calculate_stats_run_powerflow"]) + def test_calculate_stats_reinforce_grid(self, reinforce_grid): + mvgd_stats = calculate_mvgd_stats(reinforce_grid) + mvgd_stats_expected = pd.read_csv(os.path.join( + TEST_DATA_PATH, + "mvgd_stats_testgrid_after_reinforce_grid_expected.csv"), + index_col=0) + assert_frame_equal( + mvgd_stats, mvgd_stats_expected, + check_dtype=False, + check_index_type=False) + + @pytest.mark.dependency(depends=[ + "TestCalculateStats::test_calculate_stats_reinforce_grid"]) + def test_calculate_stats_control_circuit_breakers(self, control_circuit_breakers): + mvgd_stats = calculate_mvgd_stats(control_circuit_breakers) + mvgd_stats_expected = pd.read_csv(os.path.join( + TEST_DATA_PATH, + "mvgd_stats_testgrid_after_control_circuit_breakers-close_expected.csv"), + index_col=0) + assert_frame_equal( + mvgd_stats, mvgd_stats_expected, + check_dtype=False, + check_index_type=False) + + +def create_test_expected_files(savepath=None): + nd, mv_grid, lv_stations = \ + TestMVGridDing0().minimal_unrouted_testgrid() + nd.mv_routing() + nd.connect_generators() + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats.to_csv(os.path.join( + savepath, + "mvgd_stats_testgrid_after_connect_generators_expected.csv")) + + nd.set_circuit_breakers(debug=False) + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats.to_csv(os.path.join( + savepath, + "mvgd_stats_testgrid_after_set_circuit_breakers_expected.csv")) + + nd.run_powerflow("session", method='onthefly', export_pypsa=False, debug=False) + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats.to_csv(os.path.join( + savepath, + "mvgd_stats_testgrid_after_run_powerflow_expected.csv")) + + nd.reinforce_grid() + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats.to_csv(os.path.join( + savepath, + "mvgd_stats_testgrid_after_reinforce_grid_expected.csv")) + + nd.control_circuit_breakers(mode='close') + mvgd_stats = calculate_mvgd_stats(nd) + mvgd_stats.to_csv(os.path.join( + savepath, + "mvgd_stats_testgrid_after_control_circuit_breakers-close_expected.csv")) + + +if __name__ == "__main__": + create_test_expected_files(savepath=TEST_DATA_PATH) \ No newline at end of file